Until Twitch changes the max quota on Websocket Eventsubs, a public facing HTTPS server is required for this application to function.
A reverse proxy is a good way to get around this:
etc. I have only tested this with Nginx and letsencrypt.
- Automatic VOD recording around when the stream goes live, instead of checking it every minute like many other scripts do.
- Because of notification delays, the stream usually starts capturing after ~2 minutes after the stream goes live.
- Cyclic recording, as in when a specified amount or storage per streamer is reached, the oldest stream gets deleted.
- Tons of metadata, maybe too much. Stores info about games played, stream titles, duration, if the stream got muted from copyrighted music, etc.
- Viewer count logging with graphs.
- Chapters (titles and games) are written to the final video file.
- Video player with chat playback.
- Video cutter with chapter display for easy exporting, also cuts the downloaded chat for synced rendering.
- Notifications with optional speech when the website is open, get stream live notifications far earlier than the mobile app does.
- Writes a losslesscut compatible csv file for the full VOD, so you don't have to find all the games.
- Uses
ts
instead ofmp4
so if the stream or program crashes, the file won't be corrupted. - Audio only support.
- Optionally either dumps chat while capturing or downloads the chat file after it's done.
- Basic tools for downloading any VOD, chat, or clip.
- Can be set to automatically download the whole stream chat to a JSON file, to be used in my twitch-vod-chat webapp or automatically burned in with TwitchDownloader.
- Basic webhook support for external scripting.
- Notifications over the browser, telegram, pushover, and discord.
- Mobile friendly site with PWA.
- Exporting of videos to external file, SFTP, and YouTube.
- Can be enabled for all finished captures
- Can be run for an entire channel at once
One high-profile streamer VOD of 10 hours at 1080p60 is about 30-50GB.
Post issues/help on the issues tab above. I already run an up-to-date version, so starting fresh might break stuff.
Thanks to the contributors that helped expand the project!
Reminder that I don't use docker myself on my capturing setup, so any specific errors to this are hard to test.
- Download the docker-compose.yml file and place it in a directory.
- Run
docker-compose pull
anddocker-compose up -d
to start it. - Visit the webapp at
localhost:8082
- Check stored vods in the
/data/storage
directory. Permissions might be an issue.
Hub: https://hub.docker.com/r/mrbrax/twitchautomator
The dockerhub build is preconfigured to be hosted at the root (/
) and such, does not work when placed in a subdirectory.
Run docker-compose up --build -d
in the app directory. The docker-compose.yml
file is required.
If you want the public webapp to have a custom base folder, you must provide BASE_URL
and VITE_BASE_URL
in the environment variable settings.
- node.js 20+
- npm and yarn 3+
- Python 3.9+
- pip
- FFmpeg
- MediaInfo
- TwitchDownloader (optional for chat downloading and burning)
- Public facing webserver (nginx, apache, etc) for reverse proxy with an HTTP certificate that's valid (Let's Encrypt works fine)
- streamlink (required)
- yt-dlp (not used at the moment)
- vcsi (optional)
- Clone the repository with submodules
git clone --recurse-submodules https://github.com/MrBrax/LiveStreamDVR.git
(zip download doesn't include submodules, Git help- If anyone knows how to make an automatic zip release with all the packages using GitHub Actions, please let me know.
- Place the downloaded files in a folder with good permissions.
- Enter the root folder and run
pip install -r requirements.txt
- Build the packages (yarn pnp is now used, so
yarn install
might not be required)- Enter the
/twitch-vod-chat
folder and runyarn install
andyarn run buildlib
. - Enter the
/client-vue
folder and runyarn install
andyarn run build
. - Enter the
/server
folder and runyarn install
andyarn run build
. - Enter the
/twitch-chat-dumper
folder and runyarn install
andyarn run build
.
- Enter the
- In the
/server
folder, runyarn run start
to start the server in production mode. - Go to the settings page and set up basic stuff, get api key from twitch dev site.
- Check the About page for subscription status.
- Check stored vods in the
/data/storage
directory. Permissions might be an issue.
Follow this guide to hackjob nginx: https://serversforhackers.com/c/nginx-php-in-subdirectory
Specify port to run the server on.
Run the server in debug mode.
Specify the data directory to use.
Store the data in the home directory.
Enable the files api, making it possible to download and delete files in storage. This might open up filesystem exploits.
Make viewing logs in the file manager possible. Requires the above environment variable to be set.
Migrate old vod json files to the new format. This is automatically done when the server starts. Make sure to back up your data before doing this, as it will overwrite the old files and can't be undone. Bugs might occur, so use with caution.