{"id":18925243,"url":"https://github.com/newca12/tmdb-shelf","last_synced_at":"2026-04-10T10:31:17.221Z","repository":{"id":14158082,"uuid":"16863940","full_name":"newca12/TMDb-shelf","owner":"newca12","description":"Movie collection manager using TMDb API, built with Rust \u0026 Iced.","archived":false,"fork":false,"pushed_at":"2026-03-08T18:52:23.000Z","size":4531,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-08T22:30:31.558Z","etag":null,"topics":["gui","iced","movie-database","rust","tmdb"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/newca12.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2014-02-15T14:08:08.000Z","updated_at":"2026-03-08T14:54:13.000Z","dependencies_parsed_at":"2024-06-25T22:25:02.617Z","dependency_job_id":"dfa38917-7d26-4594-84e7-a9be4420d993","html_url":"https://github.com/newca12/TMDb-shelf","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/newca12/TMDb-shelf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newca12%2FTMDb-shelf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newca12%2FTMDb-shelf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newca12%2FTMDb-shelf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newca12%2FTMDb-shelf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/newca12","download_url":"https://codeload.github.com/newca12/TMDb-shelf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/newca12%2FTMDb-shelf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31638368,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["gui","iced","movie-database","rust","tmdb"],"created_at":"2024-11-08T11:10:20.547Z","updated_at":"2026-04-10T10:31:17.214Z","avatar_url":"https://github.com/newca12.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TMDb-shelf\n\n![Image](./screenshot.png?raw=true)\n\n### About\ntmdb-shelf is a desktop application written in Rust for managing a personal movie collection using [The Movie Database][1] (TMDb).\nIt is built heavily on:\n* [Iced][2] - A cross-platform GUI library\n* [libsql][3] - Async SQLite database\n* [Tokio][4] - Async runtime\n\ntmdb-shelf is an EDLA project.\n\nThe purpose of [edla.org](http://www.edla.org) is to promote the state of the art in various domains.\n\nThis is a Rust rewrite of the original [Scala/JavaFX TMDb-shelf][5].\n\n### Requirements\n1. Rust 2024 edition\n2. Optional: [mediainfo](https://mediainfo.sourceforge.net/) or [ffprobe](https://ffmpeg.org/) for video file runtime detection\n\n### API Key\nYou will need an API key to The Movie Database to access the API. To obtain a key, follow these steps:\n\n1. Register for and verify an [account](https://www.themoviedb.org/account/signup).\n2. [Log](https://www.themoviedb.org/login) into your account.\n3. Select the API section on left side of your account page.\n4. Click on the link to generate a new API key and follow the instructions.\n\n\n\n### Installation\n\n```\ncargo install --locked tmdb-shelf\n```\n\nOn first launch, a configuration file is created at `~/.tmdb-shelf/config.toml`. Edit it to set your TMDb API key, then relaunch.\n\n### Configuration\n\nThe configuration file (`~/.tmdb-shelf/config.toml`) supports the following options:\n\n```toml\n[api]\nkey = \"your-tmdb-api-key\"\n\n[general]\nlanguage = \"en\"              # ISO 639-1 language code for TMDb queries\n# data_dir = \"/custom/path\"  # Custom data directory (default: ~/.tmdb-shelf)\n\n[tools]\n# mediainfo_path = \"/usr/bin/mediainfo\"\n# ffprobe_path = \"/usr/bin/ffprobe\"\n```\n\n### Features\n\n- Search movies on TMDb and add them to your personal collection\n- Browse your collection with filtering (Not Seen, Seen, All, Not Available, Not Viewable)\n- Search within your collection by director or movie title\n- View movie details: poster, title, director, release dates, runtime, IMDb score\n- Track viewing dates and personal comments\n- Detect video file runtime via mediainfo or ffprobe\n- Scan for IMDb score changes across your collection\n- Color-coded poster drop shadow based on runtime (purple \u003c 75 min, red 75-89, yellow 90-94, black \u003e= 95)\n- Non-theatrical content (TV movies, shorts, etc.) visually dimmed in the grid\n\n### Documentation\n\nSee the [docs/](docs/) folder for detailed documentation:\n- [Architecture](docs/ARCHITECTURE.md) - System design and module structure\n- [Developing](docs/DEVELOPING.md) - Development setup and guidelines\n- [Database](docs/DATABASE.md) - Database schema and migration from H2\n- [API Integration](docs/API.md) - TMDb and IMDb API usage\n- [AI Agents](docs/AGENTS.md) - Guidelines for AI coding agents\n\n### License\n(C) 2025-2026 Olivier ROLAND. Distributed under the GPLv3 License.\n\n[1]: https://www.themoviedb.org/\n[2]: https://iced.rs/\n[3]: https://github.com/tursodatabase/libsql\n[4]: https://tokio.rs/\n[5]: https://github.com/newca12/TMDb-shelf/tree/scala-legacy\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnewca12%2Ftmdb-shelf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnewca12%2Ftmdb-shelf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnewca12%2Ftmdb-shelf/lists"}