dotfiles/.local/bin/twitch-dl

7 lines
126 B
Bash
Executable File

#!/bin/sh
title=$(youtube-dlc -e $1 | sed 's|/|_|g')
link=$(youtube-dlc -g $1)
shift
ffmpeg -i $link -c copy $@ "$title.mkv"