Skip to content

Instantly share code, notes, and snippets.

View tpunt's full-sized avatar

Thomas Punt tpunt

View GitHub Profile
@VIEWVIEWVIEW
VIEWVIEWVIEW / twitch record script
Last active July 9, 2022 00:02
Twitch.tv auto record script
#!/bin/bash
while true
do
CURRENTDATE=`date +"%Y-%m-%d_%H-%M-%S"`
streamlink https://www.twitch.tv/muleskinner1 best --twitch-disable-hosting -o ./muleskinner/muleskinner-$CURRENTDATE.ts
sleep 10
done