This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # Updated so it can handle all files in a directory | |
| # And also, so that it doesn't use the libfaac encoder | |
| for i in *.mp3; do ffmpeg -i "$i" -ac 1 -ab 128000 -f mp4 -c:a aac -y -t 4 "TONE-${i%.*}.m4r"; done |