Rename ytDownloader.sh to vDownloader.sh

This commit is contained in:
Tahinli 2022-12-31 13:20:13 +03:00 committed by GitHub
parent 43d5ae8fae
commit ea0c38cfc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +0,0 @@
echo -e 'Gimme link'
read selection
echo -e 'What do you want from video\n\t1) Best MP4\n\t2) Best MP3\n\t3) Both'
read menu
case $menu in
1)
yt-dlp -f bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best $selection
;;
2)
yt-dlp -f 'ba' -x --audio-format mp3 $selection
;;
3)
yt-dlp -f bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best $selection
yt-dlp -f 'ba' -x --audio-format mp3 $selection
;;
esac