1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2025-01-01 09:47:46 +00:00
dotfiles/dot-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"