{"id":43447997,"url":"https://github.com/rabfulton/reelvault","last_synced_at":"2026-02-20T02:01:06.633Z","repository":{"id":336119010,"uuid":"1148276913","full_name":"rabfulton/ReelVault","owner":"rabfulton","description":"A linux GTK3 local movie database/browser application","archived":false,"fork":false,"pushed_at":"2026-02-07T19:54:32.000Z","size":2180,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-09T05:33:52.766Z","etag":null,"topics":["bloat-free","film-database","film-scanner","gtk3","linux-desktop","media-player","native-apps","suckless","tmdb","tmdb-api"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rabfulton.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-02T19:27:53.000Z","updated_at":"2026-02-07T19:54:36.000Z","dependencies_parsed_at":"2026-02-08T01:00:36.012Z","dependency_job_id":null,"html_url":"https://github.com/rabfulton/ReelVault","commit_stats":null,"previous_names":["rabfulton/reelvault"],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/rabfulton/ReelVault","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabfulton%2FReelVault","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabfulton%2FReelVault/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabfulton%2FReelVault/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabfulton%2FReelVault/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rabfulton","download_url":"https://codeload.github.com/rabfulton/ReelVault/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rabfulton%2FReelVault/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29638772,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"online","status_checked_at":"2026-02-20T02:00:07.535Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bloat-free","film-database","film-scanner","gtk3","linux-desktop","media-player","native-apps","suckless","tmdb","tmdb-api"],"created_at":"2026-02-03T01:10:18.452Z","updated_at":"2026-02-20T02:01:06.609Z","avatar_url":"https://github.com/rabfulton.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ReelVault\n\nA native GTK3 application for browsing and launching your local film collection. Requires a TMDB API key to fetch film details.\n\n![ReelVault screenshot](screenshots/screenshot.png)\n\n## Features\n\n- **Poster Grid:** Browse your film collection with cover art scraped from TMDB\n- **Metadata:** View cast, crew, ratings, plot summaries, and more\n- **Filtering:** Filter by genre and year\n- **Sorting:** Sort by title, year, rating, date added\n- **External Player:** Launch films in your preferred video player\n- **Manual Matching:** Fix incorrect matches or identify unrecognized films\n\n## Installation\n\n### Arch Linux (AUR)\n\n- Package: https://aur.archlinux.org/packages/reelvault\n\nUsing an AUR helper:\n```bash\nyay -S reelvault\n```\n\n### Debian/Ubuntu (.deb)\n\nDownload the `.deb` from GitHub Releases, then install it:\n```bash\nsudo apt install ./reelvault_*.deb\n```\n\n### Fedora/RHEL (.rpm)\n\nDownload the `.rpm` from GitHub Releases, then install it:\n```bash\nsudo dnf install ./reelvault-*.rpm\n```\n\n## Running\n\n```bash\nreelvault\n```\n\nOn first run, you'll be prompted to:\n1. Enter your TMDB API key (get one free at https://www.themoviedb.org/settings/api)\n2. Add your film library directories\n\nThe config file is stored here: `~/.config/reelvault/config.ini`\n\nYou can also set the TMDB metadata language in **Settings** using a locale code\nsuch as `en-US`, `es-ES`, or `fr-FR`. If left blank, ReelVault defaults to\n`en-US`.\n\n## Advanced Search\n\nThe search bar supports simple `key:value` tokens:\n\n- `actor: Nick` or `cast:nick` (search cast/actors)\n- `plot: kidnapping` (search plot/overview text)\n- `title: dune` (search title explicitly)\n\nYou can combine tokens and plain text. Plain text searches the title.\n\nExamples:\n```text\nactor:\"Jason Momoa\" dune\nplot:\"time travel\"\ntitle: alien\n```\n\n## Building From Source\n\n### Dependencies\n\n- GTK 3.0\n- SQLite 3\n- libcurl\n- json-c\n- libjpeg-turbo (libturbojpeg)\n\n#### Arch Linux\n```bash\nsudo pacman -S base-devel gtk3 sqlite curl json-c libjpeg-turbo\n```\n\n#### Debian/Ubuntu\n```bash\nsudo apt install build-essential pkg-config libgtk-3-dev libsqlite3-dev libcurl4-openssl-dev libjson-c-dev libturbojpeg0-dev\n```\n\n### Build\n\n```bash\nmake\n```\n\n### Run\n\n```bash\n./reelvault\n```\n\n## License\n\nMIT\n\n## Other Useful Projects\n\n- A lightweight speech to text implementation [Auriscribe](https://github.com/rabfulton/Auriscribe)\n- A full featured AI application [ChatGTK](https://github.com/rabfulton/ChatGTK)\n- A Markdown notes application for your system tray [TrayMD](https://github.com/rabfulton/TrayMD)\n- Try my AI panel plugin for XFCE [XFCE Ask](https://github.com/rabfulton/xfce-ask)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frabfulton%2Freelvault","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frabfulton%2Freelvault","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frabfulton%2Freelvault/lists"}