dotfiles/.local/bin/twitch-dl

7 lines
122 B
Bash
Executable File

#!/bin/sh
title=$(youtube-dl -e $1 | tr / _)
link=$(youtube-dl -g $1)
shift
ffmpeg -i $link -c copy $@ "file:$title.mkv"