mrnotsoevil / CSLMusicMod

Add custom music and radio stations to Cities: Skylines
GNU Lesser General Public License v2.1
26 stars 9 forks source link

Add a note about required audio format #31

Open devnull42 opened 3 years ago

devnull42 commented 3 years ago

The instruction specify that audio files must be in OGG format. This statement needs to be expanded. Specifically, audio files must be in a OGG container, with a Vorbis audio codec.

I used VLC to convert existing files to a working format. The following transcoding properties worked for me:

$vlc -I dummy "$f" --sout='#transcode{vcodec=none,acodec=vorbis,ab=160,channels=2,samplerate=44100}:standard{access=file,mux=ogg,dst=out.ogg}' vlc://quit

Consider adding this note to the instructions.