transfat's purpose is to make playing music files on your car stereo over USB not a total nightmare. Some car stereos play audio files from a (FAT-only) USB device in the order that the files were transfered to the device. In general, this is not an alphanumeric order. This means that when you put on an album, it might start from track 6, then go to track 9 or something. To make things worse, many of these stereos demand that your audio files be either MP3s or WMAs; so say good-bye to your FLACs and Oggs.
Ideally, car stereos should not depend on these small details, but unfortunately many do. That's where transfat comes in:
transfat transfers audio files to FAT devices and worries about the annoying details of your car stereo so that you don't have to.
Say we run
$ transfat source drive/destination
then transfat does some/all of the following:
- Filters out any unwanted .logs, .cues, etc. in
source
- Converts non-MP3s from
source
to temporary MP3s - Transfers files to
destination
- Unmounts
drive
and sorts into alphanumeric order - Cleans up intermediate files
First you need to get some dependencies. Make sure you have fatsort
and ffmpeg
. On Ubuntu you can get them with
sudo apt install fatsort ffmpeg
Once that's done, install transfat using
sudo pip3 install transfat
or just run the run_transfat.py
script directly.