mirror of
https://github.com/Phantop/dotfiles
synced 2024-11-17 12:22:57 +00:00
7 lines
128 B
Bash
Executable file
7 lines
128 B
Bash
Executable file
#!/bin/sh
|
|
title=$(youtube-dl -e $1 | sed 'tr / _')
|
|
link=$(youtube-dl -g $1)
|
|
shift
|
|
|
|
ffmpeg -i $link -c copy $@ "file:$title.mkv"
|