Skip to content

Instantly share code, notes, and snippets.

@EnigmaCurry
Created February 8, 2021 20:03
Show Gist options
  • Save EnigmaCurry/c2d25421e263054d9cbc8cd86c656492 to your computer and use it in GitHub Desktop.
Save EnigmaCurry/c2d25421e263054d9cbc8cd86c656492 to your computer and use it in GitHub Desktop.
ytdl() { (
URL=$1; shift;
cd /storage/Video/youtube-dl
youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' \
--all-subs --embed-subs --embed-thumbnail --restrict-filenames \
--recode-video mp4 --exec 'vlc {}' \
$@ ${URL}
) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment