6 lines
126 B
Bash
Executable file
6 lines
126 B
Bash
Executable file
#!/bin/sh
|
|
|
|
printf "Enter url : "
|
|
read url
|
|
|
|
yt-dlp -f 'ba' -x --embed-thumbnail --audio-format mp3 $url -o '%(title)s.%(ext)s'
|