{"id":50911065,"url":"https://github.com/vegeta897/gb-rss-videomatic","last_synced_at":"2026-06-16T10:02:21.874Z","repository":{"id":362647933,"uuid":"1260087755","full_name":"vegeta897/gb-rss-videomatic","owner":"vegeta897","description":"A basic video download script for Giant Bomb RSS feeds","archived":false,"fork":false,"pushed_at":"2026-06-05T07:02:14.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-05T09:03:23.636Z","etag":null,"topics":["downloader","giantbomb","rss"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vegeta897.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":"2026-06-05T06:30:44.000Z","updated_at":"2026-06-05T07:04:37.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/vegeta897/gb-rss-videomatic","commit_stats":null,"previous_names":["vegeta897/gb-rss-videomatic"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/vegeta897/gb-rss-videomatic","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegeta897%2Fgb-rss-videomatic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegeta897%2Fgb-rss-videomatic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegeta897%2Fgb-rss-videomatic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegeta897%2Fgb-rss-videomatic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vegeta897","download_url":"https://codeload.github.com/vegeta897/gb-rss-videomatic/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vegeta897%2Fgb-rss-videomatic/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34400456,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"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":["downloader","giantbomb","rss"],"created_at":"2026-06-16T10:02:21.379Z","updated_at":"2026-06-16T10:02:21.869Z","avatar_url":"https://github.com/vegeta897.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GB RSS Videomatic\n\nA basic video download script for Giant Bomb RSS feeds.\n\n## Purpose\n\nFor those who prefer to download videos to watch locally or add to their media server, I created this script to run whenever a new video is published. **It does not run automatically**; the intent is that you rely on your RSS reader of choice to be notified when a new video is ready to download. Automatic downloads might be something I consider later.\n\n## Setup\n\nRequires [Bun](https://bun.sh/)\n\nInstall dependencies:\n\n```bash\nbun install\n```\n\nRename `config-init.json` to `config.json` and configure:\n\n```jsonc\n{\n  // Videos will be downloaded here, within folders named after the shows\n  \"downloadRoot\": \"C:/Giant Bomb\",\n\n  // Put at least one feed URL here\n  // I haven't tested the show-specific feeds but they should work\n  // Don't put two different qualities of the same feed\n  \"feedUrls\": [\n    \"https://giantbomb.com/video-xml/premium-videos?api_key=example\u0026quality=1080p\",\n  ],\n\n  // List the shows you want to include\n  // Names must be exact case-sensitive matches\n  \"shows\": [\"Grubbsnax Premium\", \"Endurance Run\", \"Voicemail Dump Truck\"],\n\n  // These are optional, but if you're using Emby it will be refreshed when the script finishes\n  // Leave them empty if you don't want/need this\n  // See: https://dev.emby.media/doc/restapi/API-Key-Authentication.html\n  \"embyApiKey\": \"a1b2c3d4e5f6a7b8c9e0a1b2c3\",\n  // The name of the library in Emby that contains your GB videos\n  \"embyLibraryName\": \"Giant Bomb\",\n  // The hostname of your Emby server (open your dashboard to check)\n  \"embyHost\": \"localhost:8096\",\n}\n```\n\nAfter the first run, a file named `gb-rss-db.json` will be created in your `downloadRoot`. Leave this file alone, as it is used to keep track of what you've already downloaded.\n\n## Usage\n\n### First run\n\nFor your first run, I recommend that you pass in a \"cutoff\" date parameter (formatted `YYYY-MM-DD`). This will tell the script to download any videos on or after the date you specify. Then for future runs, you can use the default \"catch-up\" mode.\n\n```bash\nbun run index.ts --cutoff 2026-06-01\n```\n\n### Default \"catch-up\" mode\n\nThe default mode will download any new videos from shows in your config since your last run. If this is your first run, it will only download the latest video.\n\n```bash\nbun run index.ts\n```\n\n### Show mode\n\nThis downloads all videos of a specific show.\n\n- It will skip videos you've already downloaded (provided you used this script)\n- The show name must be an exact case-sensitive match.\n- I haven't added pagination yet so if it's too old to be in the first page of the feed it won't be downloaded.\n\n```bash\nbun run index.ts --show \"Grubbsnax Premium\"\n```\n\n### Other options\n\n- `--feed \"\u003cfeed-url\u003e\"` Use a specific feed URL instead of the one(s) in your config file\n- `--folder \"\u003cfolder-name\u003e\"` Download everything to this folder instead of the show's name\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvegeta897%2Fgb-rss-videomatic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvegeta897%2Fgb-rss-videomatic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvegeta897%2Fgb-rss-videomatic/lists"}