your audio files not in right order on mp3player? right place!
#before runnin change dir of your mp3s and dir of your usb
#remove spaces because bash hate spaces
for ((i=1;i<=15;i+=1)); do
(cd /home/username/media/cpbook && find -type f -name "*.mp3" -exec rename 's/ /\_/i' {} \;)
done
#see if ok
(cd /home/username/media/cpbook && ls)
#copy in alfabetical order to your player
(cd /home/username/media/cpbook && for i in `ls *.mp3`; do cp "$i" /media/player;sync; done)
to see how to split too big file (for audiobooks) see
http://michkhoo.blogspot.com/2009/05/solved-split-mp3-to-smaller-files.html
0 comments:
Post a Comment