{"id":22381466,"url":"https://github.com/miguelo981/infinite-streaming","last_synced_at":"2026-04-27T23:39:16.747Z","repository":{"id":245691080,"uuid":"818711804","full_name":"Miguelo981/infinite-streaming","owner":"Miguelo981","description":"This repository provides a Docker-based solution for creating infinite streams on Twitch, YouTube or Kick, inspired by EsteveSegura's work.","archived":false,"fork":false,"pushed_at":"2024-06-24T16:27:11.000Z","size":8,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T19:27:45.950Z","etag":null,"topics":["kick","kick-bot","livestream","twitch","twitch-bot","youtube","youtube-bot"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/Miguelo981.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}},"created_at":"2024-06-22T16:28:52.000Z","updated_at":"2024-10-23T14:34:40.000Z","dependencies_parsed_at":"2024-06-24T18:23:37.706Z","dependency_job_id":"a3df9f53-550b-4727-8b75-c9ac1fd70f4e","html_url":"https://github.com/Miguelo981/infinite-streaming","commit_stats":null,"previous_names":["miguelo981/twitch-infinite-streaming","miguelo981/infinite-streaming"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Miguelo981/infinite-streaming","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miguelo981%2Finfinite-streaming","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miguelo981%2Finfinite-streaming/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miguelo981%2Finfinite-streaming/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miguelo981%2Finfinite-streaming/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Miguelo981","download_url":"https://codeload.github.com/Miguelo981/infinite-streaming/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Miguelo981%2Finfinite-streaming/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32360116,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"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":["kick","kick-bot","livestream","twitch","twitch-bot","youtube","youtube-bot"],"created_at":"2024-12-05T00:09:10.320Z","updated_at":"2026-04-27T23:39:16.729Z","avatar_url":"https://github.com/Miguelo981.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Infinite Twitch, YouTube or Kick Stream\n\nThis repository provides a solution to create infinite streams on Twitch, YouTube or Kick using a Docker script. Special thanks to [EsteveSegura](https://github.com/EsteveSegura) for the inspiration from their [publication](https://x.com/girlazote/status/1803181481059340443).\n\n## Table of Contents\n\n- [Requirements](#requirements)\n- [Setup](#setup)\n  - [Docker](#docker)\n  - [Docker Compose](#docker-compose)\n- [Environment Variables](#environment-variables)\n- [Credits](#credits)\n\n## Requirements\n\n- [Docker](https://docs.docker.com/get-docker/)\n- [Docker Compose](https://docs.docker.com/compose/install/)\n\n## Setup\n\n### Docker\n\n1. **Clone the Repository**\n\n    ```bash\n    git clone https://github.com/your-username/infinite-streaming.git\n    cd infinite-streaming\n    ```\n\n2. **Create the `.env` File**\n\n    Create a `.env` file in the root of the project and add your environment variables:\n\n    ```env\n    TWITCH_API_KEY=your_twitch_api_key\n    YOUTUBE_API_KEY=your_youtube_api_key\n    KICK_STREAM_URL=your_kick_stream_url\n    KICK_STREAM_KEY=your_kick_stream_key\n    YOUR_WEBSITE_URL=your_website_url\n    ```\n\n3. **Build the Docker Image**\n\n    ```bash\n    docker build -t infinite-stream .\n    ```\n\n4. **Run the Docker Container**\n\n    ```bash\n    docker run --env-file .env -v $(pwd)/start_stream.sh:/home/start_stream.sh infinite-stream\n    ```\n\n### Docker Compose\n\n1. **Clone the Repository**\n\n    ```bash\n    git clone https://github.com/your-username/infinite-twitch-stream.git\n    cd infinite-twitch-stream\n    ```\n\n2. **Create the `.env` File**\n\n    Create a `.env` file in the root of the project and add your environment variables:\n\n    ```env\n    TWITCH_API_KEY=your_twitch_api_key\n    YOUTUBE_API_KEY=your_youtube_api_key\n    KICK_STREAM_URL=your_kick_stream_url\n    KICK_STREAM_KEY=your_kick_stream_key\n    YOUR_WEBSITE_URL=your_website_url\n    ```\n\n3. **Start the Docker Compose Services**\n\n    ```bash\n    docker-compose up --build\n    ```\n\n## Environment Variables\n\nCreate a `.env` file in the root directory of the project with the following variables:\n\n```env\nTWITCH_API_KEY=your_twitch_api_key\nYOUTUBE_API_KEY=your_youtube_api_key\nKICK_STREAM_URL=your_kick_stream_url\nKICK_STREAM_KEY=your_kick_stream_key\nYOUR_WEBSITE_URL=your_website_url\n```\n\n## Credits\n\nThis project is inspired by the work of [EsteveSegura](https://github.com/EsteveSegura) and their [publication](https://x.com/girlazote/status/1803181481059340443). Special thanks for the idea and initial implementation guidance.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiguelo981%2Finfinite-streaming","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiguelo981%2Finfinite-streaming","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiguelo981%2Finfinite-streaming/lists"}