JohnBennson on Nostr: This bash script will quickly download YouTube videos to your Desktop. First, copy ...
This bash script will quickly download YouTube videos to your Desktop. First, copy the YouTube URL to your clipboard, then...
#!/bin/sh
clipurl=`xclip -o`
yt-dlp -o "/home/john/Desktop/%(title)s.%(ext)s" $clipurl
This bash script will quickly convert YouTube videos to .mp3 audio files so you can throw them on your phone.
#!/bin/sh
clipurl=`xclip -o`
yt-dlp -x --audio-format "mp3" -o "/home/john/Desktop/%(title)s.%(ext)s" $clipurl
#!/bin/sh
clipurl=`xclip -o`
yt-dlp -o "/home/john/Desktop/%(title)s.%(ext)s" $clipurl
This bash script will quickly convert YouTube videos to .mp3 audio files so you can throw them on your phone.
#!/bin/sh
clipurl=`xclip -o`
yt-dlp -x --audio-format "mp3" -o "/home/john/Desktop/%(title)s.%(ext)s" $clipurl