Downloads all clips made by you of various streamers to a local directory or top clips of a given channel
Many streamers have received copyright complaints over their Twitch clips and are forced to remove all their clips
- Python 3
- pip
- Sign in on Twitch using Chrome/Firefox
- Go to inspect element -> Application tab
- Go to cookies and copy the auth-token value
- Run the tool by supplying your username and the auth-token value as seen below
- Get channelname (twitch.tv/)
- Run
topclips.py
as seen below
NOTE: If no --limit
is given, this tool will download up to 1k clips for each filter (ALL_TIME, LAST_DAY, LAST_WEEK, LAST_MONTH). It is not possible to download more than 1k clips per filter.
git clone https://github.com/TorbenCapiau/Twitch-Clips-Downloader.git
cd Twitch-Clips-Downloader
pip install -r requirements.txt
# Download your own clips
python app.py <Twitch username> <auth-token value>
# Download ALL clips of a channel
python topclips.py <ChannelName>
# Download 5 clips of a channel
python topclips.py <ChannelName> --limit 5