A modern web interface for managing Twitch stream recordings with Streamlink. This fork adds a comprehensive web GUI to the original streamlink project, allowing you to manage multiple streamers, view recording history, and configure all settings through a beautiful web interface.
- Web GUI: Modern, responsive web interface accessible on port 8080
- Multi-Streamer Management: Add, edit, and delete streamers through the web interface
- Real-time Status: See live status of all streamers and their current streams
- Recording History: View complete history of all recordings with details
- Configuration Management: Configure all streamlink options through the web interface
- Database Persistence: SQLite database to store streamers and recording history
- RESTful API: Full API for programmatic access to all features
-
Clone the repository:
git clone https://github.com/your-username/streamlink-with-GUI.git cd streamlink-with-GUI -
Copy and configure environment variables:
cp env.example .env # Edit .env with your Twitch API credentials -
Start the web GUI:
docker-compose -f docker-compose.web.yml up -d
-
Access the web interface: Open your browser and go to
http://localhost:8080
docker run -d \
--name=streamlink-web-gui \
-p 8080:8080 \
-v /path/to/downloads:/app/download \
-v /path/to/data:/app/data \
-e TWITCH_CLIENT_ID=your_client_id \
-e TWITCH_CLIENT_SECRET=your_client_secret \
-e TWITCH_OAUTH_TOKEN=your_oauth_token \
your-username/streamlink-with-gui:latest| Variable | Description | Required | Default |
|---|---|---|---|
TWITCH_CLIENT_ID |
Your Twitch app client ID | Yes | - |
TWITCH_CLIENT_SECRET |
Your Twitch app client secret | Yes | - |
TWITCH_OAUTH_TOKEN |
Your Twitch OAuth token | Yes | - |
PORT |
Web GUI port | No | 8080 |
SECRET_KEY |
Flask secret key | No | auto-generated |
DOWNLOAD_PATH |
Path for downloaded files | No | /app/download |
SLACK_ID |
Slack webhook URL | No | - |
TELEGRAM_BOT_TOKEN |
Telegram bot token | No | - |
TELEGRAM_CHAT_ID |
Telegram chat ID | No | - |
GAME_LIST |
Comma-separated game IDs | No | - |
- Dashboard: Overview of active streamers, total recordings, and system status
- Streamer Management: Add, edit, delete, and toggle streamers
- Quality Settings: Configure recording quality (best, worst, 1080p60, 720p, etc.)
- Timer Configuration: Set check intervals for each streamer
- Recording History: View all recordings with status, duration, and file size
- Real-time Status: Live updates of streamer status and current streams
The web GUI provides a RESTful API for programmatic access:
GET /api/streamers- List all streamersPOST /api/streamers- Add a new streamerPUT /api/streamers/{id}- Update a streamerDELETE /api/streamers/{id}- Delete a streamerGET /api/recordings- List recordings with paginationGET /api/status- Get system statusGET /api/streamers/{id}/check- Check specific streamer status
streamlink-with-GUI/
├── app.py # Main Flask web application
├── streamlink-recorder.py # Original streamlink recorder
├── streamlink_manager.py # Streamlink management
├── twitch_manager.py # Twitch API integration
├── notification_manager.py # Notification system
├── templates/
│ └── index.html # Web GUI template
├── Dockerfile.web # Dockerfile for web GUI
├── docker-compose.web.yml # Docker Compose for web GUI
├── env.example # Environment variables template
└── requirements.txt # Python dependencies
If you're currently using the original streamlink project, you can easily migrate:
- Backup your current configuration
- Update your docker-compose file to use
docker-compose.web.yml - Set up environment variables in
.envfile - Start the web GUI and add your streamers through the interface
The web GUI maintains full compatibility with the original functionality while adding the new web interface.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE.MD file for details.
We have renamed the master branch to main for clarity and to follow best practices. Please reconfigure your branch origin with the following commands:
I was in the search for a twitch stream ripper that would monitor and save streams to my twitch synology folder to watch on plex while I'm unable to watch online.
I could not find an existing image that would respond exactly to my needs so I combined what I could find from few existing projects (see credits here below)
I decided to build it automatically on docker hub to access from my swarm nodes, when I saw many downloads, I decided to document a bit more the project, for my personnal experience and to encourage reusability
Questions, suggestions, requests, reach me out on
I'm also interested with new projects for automation of daily popular tasks, don't hesitate, I'm waiting for new ideas
git branch -m master main
git fetch origin
git branch -u origin/main main
git remote set-head origin -aUpdate dependency streamlink to v7.1.3
Update dependency streamlink to v7.1.2 Fix filename sanitization to handle reserved characters
Refactor filename generation and add support for dynamic stream extensions in StreamlinkManager, in reference to improvement suggestion by thematuu in PR20
Add sidecar container for ffmpeg converstion to mp4 of .ts files.
Bump up versions dependencies.
- requests==2.32.3
- streamlink==7.1.1
- twitchAPI==4.4.0
And activate renovate for automatic dependencies upgrade, be aware of that setup and use automatic trigger of "latest" dockerimage replacement.
Added support for optional OAuth token parameter to authenticate Twitch API requests.
Automatic build and deployment pipeline to both ghcr and docker hub. With tag versioning and latest tagging. Remove broken support for oauth twitch token, will soon migrate to new model
Introduced Twitch API integration for improved stream monitoring.
Added support for notification via Telegram, as requested in issue #1.
Refactored the notification system to support multiple platforms, including Slack and Telegram.
Major code refactor for better modularity and readability, including the use of classes for Twitch, Streamlink, and notification management.
Migration to ghcr.io, please adapt your links!
github actions automatic build with kaniko
Adapt for helm deployment
solved bug of env args being ignored #10 thanks to too-many-bees for raising it up.
solved bug of missing loop issue #6 thanks to too-many-bees for raising it up.
major refactoring and improvements to the code, respect standards and best practices
parse title stream and add to filename
added contribution from zerobell-lee to disable ads by authenticating as a twitch user
Move to python 3.11 Various improvements to project, cleanup and dependencies management
Full rework with support of OAuth2 token management Review of helix twitch operation and simplification of the flow
Upgrade python python:3.9.1-alpine3.12
Originally inspired from the work of the people here below. Thanks to those people.
https://github.com/Neolysion/Twitch-Recorder/blob/master/check.py
https://www.junian.net/2017/01/how-to-record-twitch-streams.html
I cleaned up and adapted following my requirements and added a slack integration
All rights are reserved to the original script owners, it has been now mostly reworked from scratch nevertheless will remove code if requested.
Quality is specified within the stream, any twitch quality specified existing for the stream can be defined
Keywords can always be used
- best
- worst
Environment variables are primarily used for Docker deployments. For Kubernetes/Helm deployments, configuration is managed via the values.yaml file and Kubernetes Secrets.
Specifies the interval (in seconds) to check for stream status.
timer=360
The Twitch username to monitor.
user=heromarine
The desired stream quality (e.g., best, worst, 1080p60).
quality=best
These variables are used for Docker deployments to provide necessary credentials. For Kubernetes/Helm, these are managed via a Kubernetes Secret.
clientid=xxxxxxxx
clientsecret=xxxxxxxx
oauthtoken=xxxxxxxx
slackid=xxxxxxxxx
telegrambottoken=xxxxxxxxx
telegramchatid=xxxxxxxxx
docker run -d --rm \
-v twitch:/app/download \
-e timer=360 \
-e user=heromarine \
-e quality=best \
-e clientid=XxX \
-e clientsecret=XxX \
-e oauthtoken=XxX \
-e slackid=XxX \
-e telegrambottoken=XxX \
-e telegramchatid=XxX \
ghcr.io/liofal/streamlink:latest # Note: Image path updated to ghcr.io
-e timer=360 \
-e user=heromarine \
-e quality=best \
-e clientid=XxX \
-e clientsecret=XxX \
-e slackid=XxX \
liofal/streamlink:latest
To run a test service
./docker-compose -f dockerimages/streamlink/docker-compose.yml up -d test
Specify the clientid.env file using the clientid.env.example delivered
you can specify the default for compose here
/app/download
Warning: The folder does not exist in the container and need te be created as a volume in order to be accessed from outside your container, you should map it if you want to access it
The web GUI now includes integrated FFmpeg conversion that automatically converts TS container files to MP4. This is handled directly within the web GUI container, eliminating the need for a separate FFmpeg service.
- Web-based conversion: Use the "Conversion" tab in the web GUI
- Progress tracking: Real-time conversion progress monitoring
- Batch processing: Convert multiple recordings at once
- Custom naming schemes: Configure output filename patterns
- Database integration: Conversion status stored in the database
Conversion settings can be configured through the web GUI's "Conversion" tab, including:
- Output volume path
- File naming scheme
- Conversion progress monitoring
To deploy this project on Kubernetes using Helm, follow these steps:
-
Create the Namespace:
kubectl create namespace streamlink
-
Add the Helm Repository:
helm repo add streamlink https://github.com/liofal/streamlink/kube/charts helm repo update
-
Prepare the Shared Secret: Before installing the chart, you must create a single, shared Kubernetes Secret containing the necessary API tokens and IDs for all your streamlink instances. The chart includes an example manifest at
kube/charts/templates/secret.example.yaml.- Copy
secret.example.yamlto a new file (e.g.,streamlink-secrets.yaml). - Edit the new file:
- Ensure the
metadata.nameis set to the desired shared secret name (the default and recommended name isstreamlink-secrets). - Replace the placeholder values in the
datasection with your base64 encoded secrets (Twitch client ID/secret/token, Slack ID, Telegram bot token/chat ID). You can encode a value usingecho -n 'your-secret-value' | base64.
- Ensure the
- Apply the secret manifest to your cluster once:
kubectl apply -f streamlink-secrets.yaml -n streamlink
- Copy
-
Customize Your
values.yaml: Create avalues.yamlfile (or use an existing one) for each streamlink instance you want to deploy. Ensure thesecretNamefield is set to the name of the shared Secret you created in the previous step (e.g.,streamlink-secrets). Here is an example configuration for one instance:image: streamlink: repository: ghcr.io/liofal name: streamlink tag: 3.3.4 pullPolicy: Always ffmpeg: repository: ghcr.io/liofal name: ffmpeg6 tag: 1.0.0 pullPolicy: Always streamer: name: "<name_here>" twitchName: "<twitch_name_here>" quality: "best" timer: 120 # Name of the Kubernetes Secret containing sensitive tokens. # This should point to the single, shared Secret created in Step 3. secretName: "streamlink-secrets" # Default name for the shared secret ffmpeg: sleeptime: "<sleeptime_value>" workdir: "<workdir_value>" nfs: server: <server_ip_here> path: /<volume>/<folder>
-
Install the Helm Chart:
helm install my-streamlink streamlink/streamlink -n streamlink -f /path/to/your/values.yaml
Replace
/path/to/your/values.yamlwith the path to your customizedvalues.yamlfile. -
Upgrade the Helm Release: If you need to apply changes to your deployment, ensure your Secret is up-to-date, update your
values.yamlfile if necessary, and run:helm upgrade my-streamlink streamlink/streamlink -n streamlink -f /path/to/your/values.yaml
-
Uninstall the Helm Release: To remove the deployment (this does not remove the Secret):
helm uninstall my-streamlink -n streamlink
