The act of recording a Chaturbate live stream
Youtube-dl was previously broken, please update your installs to >= 2019.11.22
- Linux
- Python 3+ (requests)
- Youtube-dl
- FFmpeg
wget https://github.com/oliverjrose99/Recordurbate/releases/download/2.0.4/recordurbate.tar
tar -xf recordurbate.tar
cd recordurbate
chmod +x Recordurbate.py
The default config files will work out of the box with youtube-dl and FFmpeg installed. Streams will be saved to the folder videos/<name>/<name> <date> <hour>_<min>.mp4. This can be changed by editing the youtube-dl.config file, see the configuration section for more.
View the usage/help text
./Recordurbate help
Add or remove a streamer to record
./Recordurbate.py [add | del] username
Start, stop or restart the daemon
./Recordurbate.py [start | stop | restart]
List the streamers in the config
./Recordurbate list
Import streamers from a file
./Recordurbate import [file]
Export streamers to a file. The file parameter is optional and the default location will be used if not passed
./Recordurbate.py export [file]
There are two main config files that are used, config.json
and youtube-dl.config
, both being stored in the configs directory. In that directory is also the log file (rb.log) and the pid file (rb.pid).
This file is used directly by Recordurbate and contains all the configuration options as well as the array of streamers to record.
youtube-dl_cmd
- Sets the command used to run Youtube-dl.
youtube-dl_config
- Sets where the config file for Youtube-dl is located and is passed with the --config-location
parameter. Note that system and user wide configs still apply, see this link for more info.
auto_reload_config
- Sets if the bot should reload the config after every loop to allow adding or removing streamers while running.
rate_limit
- Sets whether or not the API calls should be rate limited.
rate_limit_time
- The time in seconds to wait between API calls, only waits if rate_limit
is true.
default_export_location
- Sets the default location for the export command.
streamers
- An array of strings, each of which is a streamer to record.
This file is used to set all of the Youtube-dl config options and is passed using the --config-location
parameter. As mentioned, the system and user wide configs still apply. Options such as quality, export options and more can be found on the Youtube-dl Github.
- Integration with Chaturbate e.g. import from following, record paid for shows, etc
- Better logging and config options
- Support for other sites
- Support for windows (OS.fork() alt)
A couple users have reported that recordings may lag and freeze which was due to out of date youtube-dl and ffmpeg versions. If you experience this, please ensure you are using the latest stable versions and that your internet, storage and CPU are not bottlenecks causing issues.
Some users found that no files were being made which was due to either software not being installed/configured or incorrect permissions. It's also possible that AppArmor is blocking the script which can be checked by looking at the syslog. Please check these before making an issue. Youtube-dl needs to be >= version 2019.11.22. It can be updated by running pip3 install -U youtube-dl
and the version can be checked with the command youtube-dl --version
.
Because the streams are intended to be watched live, there is little compression on the video. This can cause very large files and heavy internet usage as the max settings for some streamers are 4k/60fps and youtube-dl defaults to best available options. Internet usage can be reduced by using a lower quality and file size can be further reduced by compressing the file (will causes heavy CPU usage). All this can be done with youtube-dl config options.
Recordurbate will work on termux but the python install location is different to normal Linux installs. You can either run the script as python Recordurbate.py [command]
or change the shebang to /data/data/com.termux/files/usr/bin/python3.7
and run the script as normal. I don't currently know how well YouTube-dl will work with changing between WiFi and 4G, but either way will use a lot of data and possibly battery. Please open an issue if you find any issues or have anything to add.