6 lines
202 B
Bash
Executable file
6 lines
202 B
Bash
Executable file
#!/bin/sh
|
|
|
|
printf "Enter url : "
|
|
read url
|
|
|
|
yt-dlp -f 'bv*[height=1080][ext=mp4]+ba*[ext=m4a]/best[ext=mp4]/best' --download-archive videos.txt $url -o '%(channel_id)s/%(playlist_id)s/%(title)s.%(ext)s'
|