benaryorg

Download Portal Songs

Feb 19th, 2015
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.86 KB | None | 0 0
  1. #!/bin/sh
  2.  
  3. #download them
  4. youtube-dl --restrict-filenames 'https://www.youtube.com/watch?v=-SSdTXNK2mo'
  5. youtube-dl --restrict-filenames 'https://www.youtube.com/watch?v=4U_RvUYINpo'
  6. youtube-dl --restrict-filenames 'https://www.youtube.com/watch?v=Di2wDDwxqHg'
  7. youtube-dl --restrict-filenames 'https://www.youtube.com/watch?v=HDAFivGsKX4'
  8. youtube-dl --restrict-filenames 'https://www.youtube.com/watch?v=JZIVmKOdrBk'
  9. youtube-dl --restrict-filenames 'https://www.youtube.com/watch?v=U_0BapT0mOQ'
  10. youtube-dl --restrict-filenames 'https://www.youtube.com/watch?v=qDY-DF4Lpdg'
  11.  
  12. #rename them
  13. for f in Portal_-_*;do
  14.     mv $f $(echo ${f##Portal_-_} | cut -d- -f1).mp4.old
  15. done
  16.  
  17. #convert and cut them
  18. for f in *.old;do
  19.     echo "Enter the end of the video (to cut off the outro) for file($f)"
  20.     ffmpeg -i $f -t $(cat) ${f%%mp4.old}flac
  21. done
  22.  
  23. #delete the old files
  24. rm *.old
Add Comment
Please, Sign In to add comment