flypup / duel-of-the-devs

Duel of the Devs Web Game. Continuation of GitHub Game Off 2012 entry.
http://minimonks.com
2 stars 1 forks source link

Sound List #44

Open robwalch opened 11 years ago

robwalch commented 11 years ago

Game Audio

Sound sprites are a single audio file that contain several variations of the same type of sound. Subclip markers (in Adobe Audition) list the start and end of each variation in a file. The markers are exported to .xmp, and copied manually into the Sound JavaScript. The master WAV files are exported to MPEG4-AAC (.m4a), and Ogg Vorbis (.ogg) for cross-browser support. Conversion can be done in the command line with:

ffmpeg -i stars.wav stars.m4a
ffmpeg2theora --nometadata -v -a -1 -c 1 -o stars.ogg stars.wav