mirror of
https://github.com/Phantop/dotfiles
synced 2025-11-28 15:25:55 +00:00
7 lines
126 B
Plaintext
7 lines
126 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
title=$(youtube-dlc -e $1 | sed 's|/|_|g')
|
||
|
|
link=$(youtube-dlc -g $1)
|
||
|
|
shift
|
||
|
|
|
||
|
|
ffmpeg -i $link -c copy $@ "$title.mkv"
|