This commit is contained in:
JMARyA 2020-06-11 05:04:00 +02:00
commit 0ef3bd7a55
No known key found for this signature in database
GPG key ID: 19BD48AEE60FA00B
8 changed files with 116 additions and 0 deletions

8
youtube-dl-cmd Normal file
View file

@ -0,0 +1,8 @@
alias downloadVid="youtube-dl -o \"%(title)s.%(ext)s\" -f \"bestvideo[height<=1080][ext=webm]+bestaudio\" --write-thumbnail"
alias downloadVid1440="youtube-dl -o \"%(title)s.%(ext)s\" -f \"bestvideo[height<=1440][ext=webm]+bestaudio\" --write-thumbnail"
alias downloadVid4K="youtube-dl -o \"%(title)s.%(ext)s\" -f \"bestvideo[height<=2160][ext=webm]+bestaudio\" --write-thumbnail"
alias downloadAudio="youtube-dl -o \"%(playlist_index)s %(title)s.%(ext)s\" -x"