1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-07-15 14:45:36 +00:00
dotfiles/.local/bin/twitch-dl

7 lines
129 B
Plaintext
Raw Normal View History

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