{"id":25436812,"url":"https://github.com/sporestudio/stream-server","last_synced_at":"2026-04-16T18:02:47.626Z","repository":{"id":273432887,"uuid":"919706294","full_name":"sporestudio/stream-server","owner":"sporestudio","description":"Implementation of a system to automate the download and preparation of multimedia content from YouTube through a Telegram bot.","archived":false,"fork":false,"pushed_at":"2025-03-09T19:27:23.000Z","size":12731,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-15T04:09:53.375Z","etag":null,"topics":["ffmpeg","icecast","nginx","python","yt-dlp"],"latest_commit_sha":null,"homepage":"","language":"Python","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/sporestudio.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/CONTRIBUTING.md","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}},"created_at":"2025-01-20T21:23:24.000Z","updated_at":"2025-03-09T19:27:26.000Z","dependencies_parsed_at":"2025-01-20T22:47:23.886Z","dependency_job_id":"83b91401-9d86-4e8b-adfd-52042e38b920","html_url":"https://github.com/sporestudio/stream-server","commit_stats":null,"previous_names":["sporestudio/stream-server"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/sporestudio/stream-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporestudio%2Fstream-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporestudio%2Fstream-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporestudio%2Fstream-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporestudio%2Fstream-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sporestudio","download_url":"https://codeload.github.com/sporestudio/stream-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sporestudio%2Fstream-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31897870,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T17:33:00.867Z","status":"ssl_error","status_checked_at":"2026-04-16T17:32:57.401Z","response_time":69,"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":["ffmpeg","icecast","nginx","python","yt-dlp"],"created_at":"2025-02-17T08:29:03.564Z","updated_at":"2026-04-16T18:02:47.621Z","avatar_url":"https://github.com/sporestudio.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n    \u003ch1\u003eStream Server\u003c/h1\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"./docs/.assets/stream-diag.png\" alt=\"Stream server diagram\" width=\"100%\"\u003e\n\u003c/div\u003e\n\nDeployment of a system to automate the download and preparation of multimedia content from YouTube through a Telegram bot using Docker containers and Nginx.\n\n\n## Features\n\n- **Real-time HLS Transcoding** - Automatically converts videos to HLS format for efficient streaming.  \n- **Supports Multiple Input Formats** - Compatible with MP4, MKV, AVI, and more.  \n- **Low-Latency Streaming** - Optimized settings for fast loading times.  \n- **HLS Player Compatibility** - Works with VLC, HTML5 players, and mobile apps.  \n- **HTTPS Support** - SSL certificates for secure streaming.      \n\n\n## Requirements\n\n- **Unix-based system**.\n- **Docker** (20.10 or later recommended).\n- **Docker Compose** (v1.29 or later recommended).\n- **Python 3**.\n\n## Documentation\n\nTo see documentation of the project you can [click here](https://github.com/sporestudio/stream-server/blob/main/docs/README.md) or see the docs/ directory.\n\n## Previous configuration\n\nWe have to do some previous configurations to make the project work. First we have to create a .env file with some necessary variables:\n\n```bash\n## Telegram bot API Token\nTELEGRAM_TOKEN=\n\n# IONOS API Token\nIONOS_TOKEN=\n\n## Apache global vars\nDOMAIN_NAME=\nSERVER_ADMIN=\n```\n\n## Installation\n\n### Clone the repository\n\nClone the repository from GitHub:\n\n```bash\n$ git clone https://github.com/sporestudio/stream-server\n$ cd stream-server\n```\n\n### Deploy the project\n\n#### Using makefile\n\n- **Generating the certs**: We have the option to deploy the projects and generate the SSL certificates in an automated way with certbot.\n\n    ```bash\n    $ make all\n    ```\n\n- **Without generate the certs**: We can deploy the project without generate the SSL certificates.\n\n    ```bash\n    $ make deploy\n    ```\n\n#### Using docker compose\n\n- We can deploy the project using Docker Compose launching the following command:\n\n```bash\n$ docker-compose up --build -d\n```\n\n## License\n\nThis project is licensed under the GNU General Public License - see the [LICENSE](https://github.com/sporestudio/stream-server/blob/main/LICENSE) file for details.\n\n## Contributing\n\nWant to contribute? There are multiple ways you can contribute to this project. Here are some ideas:\n\n* [Translate the web into multiple languages!](/docs/CONTRIBUTING.md#translations)\n* [Reporting Bugs](/docs/CONTRIBUTING.md#reporting-bugs) \n* [Check out some issues](https://github.com/sporestudio/stream-server/issues) (or translate them).\n\n## Author\n\nThis repository was created by [sporestudio](https://github.com/sporestudio).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsporestudio%2Fstream-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsporestudio%2Fstream-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsporestudio%2Fstream-server/lists"}