dotfiles/.local/bin/twitch-dl

7 lines
122 B
Plaintext
Raw Normal View History

2021-01-10 03:46:08 +00:00
#!/bin/sh
2021-08-11 12:12:40 +00:00
title=$(youtube-dl -e $1 | tr / _)
link=$(youtube-dl -g $1)
2021-01-10 03:46:08 +00:00
shift
ffmpeg -i $link -c copy $@ "file:$title.mkv"