User Tools

Site Tools


voip:create_moh_files

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
voip:create_moh_files [2013/12/05 22:00] biggivoip:create_moh_files [2014/02/12 15:10] biggi
Line 1: Line 1:
-Quick script to convert .mp3 files to .wav+Quick script I wrote to convert .mp3 files to .wav 
 + 
 +Example: "ArtistGuy - SongTitle.mp3" will be converted to:\\ 
 +8000_ArtistGuy_-_SongTitle.wav\\ 
 +16000_ArtistGuy_-_SongTitle.wav\\ 
 +32000_ArtistGuy_-_SongTitle.wav\\ 
 +48000_ArtistGuy_-_SongTitle.wav\\ 
 + 
 +So, HZ is added and space is converted to underscore.
  
 <code - convertsongs.sh> <code - convertsongs.sh>
Line 14: Line 22:
  IFS=$IFSORG;  IFS=$IFSORG;
  for y in $BITRATES; do  for y in $BITRATES; do
- echo "$y Hz..";+ echo -n "$y Hz.. ";
  mpg123 -q -s -f 8192 --mono -r $y -w "${y}_$SONGNAME" "$x"  mpg123 -q -s -f 8192 --mono -r $y -w "${y}_$SONGNAME" "$x"
  done  done
 + echo "";
  IFS=$'\n';  IFS=$'\n';
 done done
Line 22: Line 31:
  
 echo "Done converting." echo "Done converting."
- 
 </code> </code>
voip/create_moh_files.txt · Last modified: 2015/08/15 22:56 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki