Guest User

Untitled

a guest
Jun 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #! /bin/bash
  2. #
  3. # Converts all MP4 files in the current directory to MP3s.
  4. #
  5.  
  6. # Uncomment to remove whitespaces in mp4 files
  7.  
  8. for video in *.MP4; do
  9. #f=`echo $video | tr ' ' '_'`
  10. #mv "$video" $f
  11. #video=$f
  12. #echo "processing: $video"
  13. ffmpeg -i $video -f mp3 -ab 192000 -vn $video.mp3
  14. echo "Done: $video"
  15. done
  16.  
  17. # Put destination here:
  18. #cp *.mp3 /meda/<name your path... to your ipod :)>
Add Comment
Please, Sign In to add comment