What's a good way of batch converting tracker files?

1

1

So, as the title says, I would like to know a good way to convert tracker files (*.mod, *.xm, *.s3m, et cetera) to a format like *.mp3 or *.ogg.

A command-line solution would be preferred.

Atlas Sullivan

Posted 2016-11-20T20:44:34.853

Reputation: 13

Answers

1

ffmpeg supports each of those formats. You could convert all of them with a bash loop, such as for i in *.mod; do ffmpeg -i "$i" -b:a 320k "${i%mod}mp3"; done

freg

Posted 2016-11-20T20:44:34.853

Reputation: 11

What's the best stackexchange site for asking about compiling ffmpeg from source? – Atlas Sullivan – 2016-11-21T15:43:42.543