Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #!/bin/bash
  2. IFS=$'\n'
  3. files=$(find orignal -name "*.mp3" -exec basename {} \;);
  4.  
  5. for file in $files
  6. do
  7. ffmpeg -i "orignal/$file" -ac 1 "mixed/$file";
  8. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement