Advertisement
imehesz

mp4 to mp3

Dec 31st, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.13 KB | None | 0 0
  1. #!/bin/bash
  2. for file in $PWD/*.mp4; do
  3.   fileNoExt=${file:0:-4};
  4.   `ffmpeg -i "$file" -f mp3 -ab 192000 -vn "$fileNoExt.mp3"`;
  5. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement