I had an identical request, minus the gapless bit - not sure anyone has ever got gapless playback working on an iPod :-(
Adrian Ulrich's excellent gnupod perl scripts enable a flac library to be synced to mp3 on an iPod at any quality you desire by transcoding on the fly! http://www.gnu.org/software/gnupod/ you can easily recursively sync an entire folder of flac/mp3s to the pod by issuing a command along the lines of: #!/bin/bash IPOD_MOUNT=/media/ipod MUSIC_DIR=/home/kefa/music find $MUSIC_DIR -name *.flac | gnupod_addsong.pl --decode=mp3 --reencode=3 -m $IPOD_MOUNT - find $MUSIC_DIR -name *.mp3 | gnupod_addsong.pl -m $IPOD_MOUNT - mktunes.pl -m $IPOD_MOUNT gnupod_check.pl -m $IPOD_MOUNT Brilliant! -- kefa _______________________________________________ ripping mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/ripping
