Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. echo "Youtube Downloader. Stick YT URLs in videos.txt to use"
  4. for i in $(<videos.txt);
  5. do youtube-dl --embed-thumbnail --add-metadata --youtube-skip-dash-manifest --extract-audio --audio-format mp3 $i;
  6. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement