A local media server that combines the features of TikTok and Pinterest
Project description
TikLocal
TikLocal is a mobile and tablet web application built on Flask. It allows you to browse and manage your local videos and images in a way similar to TikTok and Pinterest.
Introduction
TikLocal's main features include:
- A TikTok-like swipe-up browsing experience with a mixed feed of local videos and images.
- A file manager-like directory browsing feature that allows you to easily find and manage local video files.
- A Pinterest-like grid layout feature that allows you to enjoy local images.
- Search, favorites, collections, and lightweight local recommendations backed by a per-device media index.
- Multiple media sources and URL downloads merged into one local library.
- Support for light and dark modes to suit your personal preferences.
Use cases
TikLocal is suitable for the following use cases:
- You don't trust TikTok's teen mode and want to provide your child with completely controllable video content.
- You want to browse and manage your local videos and images locally, but don't want to use third-party cloud services.
- You want to use a TikTok-style mixed media browsing experience on your phone or tablet.
- You want to use a Pinterest-style image browsing experience on your phone or tablet.
How to use
Installation
TikLocal is a Python application that you can install using the following command:
pip install tiklocal
Usage
Starting TikLocal is very simple, just run the following command:
tiklocal ~/Videos/
You can specify any media folder.
To close, press Ctrl + C.
CLI Commands
TikLocal provides several CLI commands:
Start the server:
tiklocal /path/to/media # Start with media directory
tiklocal --port 9000 # Use custom port
tiklocal --media-source photos=~/Pictures/AI # Add a media source, repeatable
Generate video thumbnails:
tiklocal thumbs /path/to/media # Generate thumbnails
tiklocal thumbs /path --overwrite # Regenerate existing thumbnails
Find and remove duplicate files:
tiklocal dedupe /path/to/media # Find duplicates (dry-run mode)
tiklocal dedupe /path --type video # Check video files only
tiklocal dedupe /path --execute # Execute deletion
tiklocal dedupe /path --keep newest # Keep newest files
Options for dedupe:
--type: File type (video,image,all)--algorithm: Hash algorithm (sha256,md5)--keep: Keep strategy (oldest,newest,shortest_path)--dry-run: Preview mode (default)--execute: Execute actual deletion--auto-confirm: Skip confirmation prompt
Build image vector index:
tiklocal vectorize /path/to/media --dry-run
tiklocal vectorize /path/to/media --limit 200 --order latest
tiklocal vectorize /path/to/media --source photos --limit 200
tiklocal vectorize /path/to/media --cleanup
tiklocal vectorize /path/to/media --max-size 512 --quality 82
tiklocal analyze-similar /path/to/media --limit 500 --yes
tiklocal analyze-similar /path/to/media --profile --dry-run
Recommended workflow:
- Run
--dry-runfirst to inspect total images, already-indexed images, missing vectors, stale vectors, and selected items. - Use
--limit 200 --order latestfor the first low-cost batch. - Use
--source <id>to index one media source frommedia_sources. - Use
--cleanupto remove vectors for files that no longer exist. - Use
--forceonly when intentionally rebuilding existing vectors. - Use
--yesto skip the confirmation prompt in scripts.
vectorize only uploads images that are missing or stale. A vector becomes stale when file size, mtime, model, dimensions, image_max_size, or image_quality changes. Images are EXIF-transposed, resized, re-encoded as JPEG, and sent without original EXIF/ICC/XMP/IPTC metadata.
After vectors are built, run analyze-similar to precompute visual similarity groups into SQLite. The image detail page can query similar images directly from local vectors, while the Library Similar Images mode only reads precomputed groups for fast loading.
URL Download (Web)
TikLocal includes a /download page where you can paste a media URL and enqueue a background download job.
Requirements:
yt-dlp(required)gallery-dl(recommended for image/gallery posts)ffmpeg(recommended for format merge)
Download engine:
yt-dlp: video-oriented sites and linksgallery-dl: image posts/albums (Instagram/X/Pinterest, etc.)- Download form allows manual engine selection per task (default:
yt-dlp)
Cookie for login-only content (optional):
- Put exported cookie files in
~/.tiklocal/cookies - Filename should include domain, e.g.
x.com.txt,youtube.com.cookies - The download page supports
Auto matchor manual file selection per task - The download page also supports cookie file upload/replace, history delete/clear, and retry for failed tasks
Example installs:
# macOS (Homebrew)
brew install yt-dlp gallery-dl ffmpeg
# Ubuntu / Debian
sudo apt install yt-dlp gallery-dl ffmpeg
Home and Flow
The home page (/) is a calm launchpad for choosing a session, revisiting recently indexed media, rediscovering images, and opening personal collections. The immersive mixed feed lives at /flow:
- Videos and images are mixed in one swipe flow (video-first density, randomized order)
- Image cards support in-feed AI caption/tags panel
- Image cards support circular magnifier (2.5x / 5x)
- Image cards do not auto-advance; swipe manually to move next/previous
Configuration
TikLocal provides some configuration options that you can adjust to your needs.
You can configure one or more media directories in ~/.config/tiklocal/config.yaml:
media_sources:
- id: default
name: Main Library
path: ~/Videos/TikLocal
- id: photos
name: Photos
path: ~/Pictures/AI
download_source: default
vision:
enabled: true
base_url: https://openrouter.ai/api/v1
model_name: google/gemini-2.5-flash
temperature: 0.6
tags_limit: 5
system_prompt: |
You are an image analysis assistant. Return JSON only.
user_prompt: |
Analyze this image and return a short Chinese title plus up to {tags_limit} Chinese tags.
Output JSON: {"title":"...","tags":["..."]}
embedding:
enabled: true
base_url: https://openrouter.ai/api/v1
model_name: google/gemini-embedding-2
dimensions: 768
image_max_size: 512
image_quality: 82
The legacy single-directory configuration still works:
media_root: ~/Videos/TikLocal
Multiple media sources are merged into one unified library. Internal media URIs use the @source_id/path format, while old bare-path links and favorites remain compatible through the default source.
Image recognition uses vision; image vectorization uses embedding and stores image vectors in the local SQLite application database (~/.tiklocal/tiklocal.sqlite3 by default). The image detail page only reads the local index for similar-image recommendations. Use the CLI to build or update vectors:
tiklocal vectorize ~/Videos/TikLocal --limit 200 --order latest
tiklocal vectorize ~/Videos/TikLocal --dry-run
tiklocal analyze-similar ~/Videos/TikLocal --limit 500 --yes
API keys are read from environment variables, preferring TIKLOCAL_VISION_API_KEY for vision, TIKLOCAL_EMBEDDING_API_KEY for embedding, then falling back to TIKLOCAL_AI_API_KEY, OPENAI_API_KEY, or OPENROUTER_API_KEY.
- Light and dark modes: You can choose to use light or dark mode.
- Video playback speed: You can adjust the video playback speed.
Documentation
- Docs index:
docs/README.md - Flow interaction unification:
docs/flow-interaction-unification.md - Media index and local recommendation architecture:
docs/media-index-and-recommendation.md - OpenRouter image-to-video research:
docs/openrouter-image-to-video-research.md - Release notes:
docs/release_notes.md
TODO
- Add more management operations, such as moving files and creating folders
- Add basic login control
- Add a Docker image
- Add a tagging feature
Contribution
TikLocal is an open source project that you can contribute to in the following ways:
- Submit code or documentation improvements.
- Report bugs.
- Suggest new features.
Contact us
If you have any questions or suggestions, you can contact us in the following ways:
- GitHub project page: https://github.com/ChanMo/TikLocal/
- Email: [chan.mo@outlook.com]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file tiklocal-0.8.30.tar.gz.
File metadata
- Download URL: tiklocal-0.8.30.tar.gz
- Upload date:
- Size: 219.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef7ae107b62f624d7a7885c1f4a2a15c30769c5f7f9fcea4e10ebdf97c4c2d8e
|
|
| MD5 |
4eb875fd4f82a2afbc83a3dc3122d2e7
|
|
| BLAKE2b-256 |
7ae02bb119a8232071d3655fde656fc5ee31870fe4e1ab397efe7091d0e1390a
|
Provenance
The following attestation bundles were made for tiklocal-0.8.30.tar.gz:
Publisher:
main.yml on ChanMo/TikLocal
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tiklocal-0.8.30.tar.gz -
Subject digest:
ef7ae107b62f624d7a7885c1f4a2a15c30769c5f7f9fcea4e10ebdf97c4c2d8e - Sigstore transparency entry: 2201819332
- Sigstore integration time:
-
Permalink:
ChanMo/TikLocal@169f4214a817f5cb1e7916cadda4493ab78bb2ec -
Branch / Tag:
refs/tags/v0.8.30 - Owner: https://github.com/ChanMo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@169f4214a817f5cb1e7916cadda4493ab78bb2ec -
Trigger Event:
push
-
Statement type:
File details
Details for the file tiklocal-0.8.30-py3-none-any.whl.
File metadata
- Download URL: tiklocal-0.8.30-py3-none-any.whl
- Upload date:
- Size: 238.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58c84222fba077d99ffd391215014ae1b09f9dc03d77d22753b12fe030c61a66
|
|
| MD5 |
ed41475f5bbf7b762f7bba3985ab68da
|
|
| BLAKE2b-256 |
1ecb2b089c50d7d866537c4cf289f9eddc3bd6a2b5fd04faea67b8592296ae3c
|
Provenance
The following attestation bundles were made for tiklocal-0.8.30-py3-none-any.whl:
Publisher:
main.yml on ChanMo/TikLocal
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
tiklocal-0.8.30-py3-none-any.whl -
Subject digest:
58c84222fba077d99ffd391215014ae1b09f9dc03d77d22753b12fe030c61a66 - Sigstore transparency entry: 2201819356
- Sigstore integration time:
-
Permalink:
ChanMo/TikLocal@169f4214a817f5cb1e7916cadda4493ab78bb2ec -
Branch / Tag:
refs/tags/v0.8.30 - Owner: https://github.com/ChanMo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
main.yml@169f4214a817f5cb1e7916cadda4493ab78bb2ec -
Trigger Event:
push
-
Statement type: