{"id":48373779,"url":"https://github.com/nicholasodonnell/gameday","last_synced_at":"2026-04-05T17:43:43.773Z","repository":{"id":250250346,"uuid":"831588574","full_name":"nicholasodonnell/gameday","owner":"nicholasodonnell","description":"Watch live MLB TV games in your preferred player with m3u8 and epg files.","archived":false,"fork":false,"pushed_at":"2026-03-27T02:22:57.000Z","size":455,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-05T17:43:37.425Z","etag":null,"topics":["iptv","m3u8","mlb","mlb-api","mlb-stream","mlbtv","nestjs","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/nicholasodonnell.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":"2024-07-21T02:45:25.000Z","updated_at":"2026-03-27T02:20:57.000Z","dependencies_parsed_at":"2025-03-15T06:00:53.976Z","dependency_job_id":null,"html_url":"https://github.com/nicholasodonnell/gameday","commit_stats":null,"previous_names":["nicholasodonnell/gameday"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/nicholasodonnell/gameday","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicholasodonnell%2Fgameday","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicholasodonnell%2Fgameday/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicholasodonnell%2Fgameday/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicholasodonnell%2Fgameday/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nicholasodonnell","download_url":"https://codeload.github.com/nicholasodonnell/gameday/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nicholasodonnell%2Fgameday/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31444702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T15:22:31.103Z","status":"ssl_error","status_checked_at":"2026-04-05T15:22:00.205Z","response_time":75,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["iptv","m3u8","mlb","mlb-api","mlb-stream","mlbtv","nestjs","typescript"],"created_at":"2026-04-05T17:43:43.034Z","updated_at":"2026-04-05T17:43:43.764Z","avatar_url":"https://github.com/nicholasodonnell.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cpicture\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./images/banner-dark.png\"\u003e\n  \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"./images/banner-light.png\"\u003e\n  \u003cimg src=\"./images/banner-dark.png\"\u003e\n\u003c/picture\u003e\n\nGameday provides `m3u8` and `epg` files from MLB.TV, allowing you to watch live MLB games in your preferred player, ensuring you never miss a moment of the action. *You must have a valid [MLB.TV](https://mlb.tv) subscription to use this package, blackout rules apply.*\n\n[![Publish](https://github.com/nicholasodonnell/gameday/actions/workflows/publish.yml/badge.svg)](https://github.com/nicholasodonnell/gameday/actions/workflows/publish.yml)\n\n## Features\n\n- **MLB.TV Integration:** Integrate with your existing [MLB.TV](https://mlb.tv) subscription (blackout rules apply)\n- **M3U8 Playlist:** A M3U8 file for every MLB team's game (including pre and post game shows)\n- **M3U Playlist:** A M3U file that combines all teams into a single playlist\n- **Electronic Program Guide:** An EPG file with guide data 7 days into the future\n- **Adjustable Bitrate:** Customize the streaming quality to fit your data preference\n- **Timezone Support:** Ensure game times are always accurate for your location\n\n## Getting Started\n\n### Prerequisites\n\n- [Docker](https://docs.docker.com/get-docker/)\n- [MLB.TV](https://mlbtv.com) subscription\n\n### Installation\n\n1. Set your config options including your MLB.TV credentials using the [environment variables](#environment-variables) below.\n2. Start the container using the [Docker](#docker) or [Docker Compose](#docker-compose) examples.\n3. Use the [provided URLs](#urls) to access the M3U8 playlist, EPG file, and team-specific playlists.\n\n### Example\n\n\u003e :exclamation: Be sure to replace `/path/to/config` in the below examples with a valid host directory path.\n\n#### Docker\n\n```console\ndocker run -d \\\n  -e MLB_USERNAME=your-mlb-username \\\n  -e MLB_PASSWORD=your-mlb-password \\\n  -e TZ=America/New_York \\\n  -p 3000:3000 \\\n  -v /path/to/config:/app/config \\\n  --restart unless-stopped \\\n  nicholasodonnell/gameday:latest\n```\n\n#### Docker Compose\n\n```yaml\nservices:\n  gameday:\n    image: nicholasodonnell/gameday:latest\n    container_name: gameday\n    environment:\n      - MLB_USERNAME=your-mlb-username\n      - MLB_PASSWORD=your-mlb-password\n      - TZ=America/New_York\n    ports:\n      - 3000:3000\n    volumes:\n      - /path/to/config:/app/config\n    restart: unless-stopped\n```\n\n## Resources\n\n### URLs\n\n| URL                    | Description                                                                                      |\n| ---------------------- | ------------------------------------------------------------------------------------------------ |\n| `/playlist.m3u`        | M3U playlist for all MLB teams                                                                   |\n| `/playlist/:team.m3u8` | M3U8 playlist for a specific [MLB team](https://mlb10theshow.fandom.com/wiki/Team_Abbreviations) |\n| `/epg.xml`             | Electronic Program Guide                                                                         |\n\n### Environment Variables\n\n| Name           | Description                                                                          | Default                 |\n| -------------- | ------------------------------------------------------------------------------------ | ----------------------- |\n| `MLB_USERNAME` | MLB.TV username                                                                      | **Required**            |\n| `MLB_PASSWORD` | MLB.TV password                                                                      | **Required**            |\n| `APP_URL`      | URL of the application (will be used as the base URL when generating playlist files) | `http://localhost:3000` |\n| `BITRATE`      | Bitrate of the stream (192, 450, 800, 1200, 1800, 2500, 3500, 5600)                  | `5600`                  |\n| `LOG_LEVEL`    | Log level (fatal, error, warn, info, debug, trace)                                   | `info`                  |\n| `TZ`           | [Your timezone name](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)   | `UTC`                   |\n\n## Development\n\n1. Set up the project for local dev by running:\n    ```console\n    ./setup-dev.sh\n    ```\n2. Start the project by running:\n    ```console\n    docker compose up\n    ```\n\n### Commands\n\n| Command                          | Description                                         |\n| -------------------------------- | --------------------------------------------------- |\n| `npm run lint`                   | Lint the project                                    |\n| `npm run db:migrate`             | Run database migrations                             |\n| `npm run db:migrate:make \u003cname\u003e` | Create a new database migration with the given name |\n| `npm run db:rollback`            | Rollback latest database migration                  |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnicholasodonnell%2Fgameday","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnicholasodonnell%2Fgameday","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnicholasodonnell%2Fgameday/lists"}