Su | Mo | Tu | We | Th | Fr | Sa |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
If you have used iTunes in default mode to create a library of music for your iPod you may need to convert the resulting .m4a files to .mp3 format. MPlayer can do this for you - here are the necessary commands, in the form of a simple shell script:
#!/bin/sh for FILE in *.m4a do mplayer.exe -vc null -vo null -ao pcm:fast $FILE -ao pcm:file="temp.wav" lame -h -V2 --vbr-new temp.wav `basename $FILE .m4a`.mp3 done
You will be left with a temp.wav file in the current directory - delete it (and the .m4a files, if you want) after the conversion.