Until we come up with a better one, the official format for distributing Ambisonic files is *.amb WAVE-EX file. The recommended sample rate for submitting content to Ambisonia is 48kHz.
The easiest way to create this format is to use Richard Dobson's mctools.... a set of command line utilities which can interleave 4 mono files into a 4 channel WAVE-EX file with the correct header. Download Richard Dobson's mctools here. Follow Richard's instructions for installation.
To cut a long story short (see below for the long version), creating a *.amb can be done by executing this command.
The easiest way to use mctools is to unpack it (or unzip it) into the same folder that contains your mono wav files. You can actually unpack mctools anywhere, but then you will have to modify your environement variables so that your OS can find mctools no matter where you want to use them from. It is simpler, for now, to just unpack them into the same folder as your mono wav files. Here, my mono wav files are in a folder C:\tmp
All the highlighted items in this screenshot are individual files that have come out of mctools. There's lots of handy tools in there! ... but we are only going to use the file interlx.exe
To use these tools, we must use windows' command line.... that's like a text world where you make your computer do things by issuing commands. RD's mctools are just new commands. To launch Windows' command line utility, click on >Start then Run
A dialog box will launch, asking you what you want to run ... in here type "cmd" and press enter.
And here we are!.... in windows' glorious command line environement. Now we must navigate to the folder that contains the mono wave files and the mctools. "cd" is the command that will allow us to do that. To go backwards, or up a folder, type "cd ..", and press enter.
To go into a folder, type "cd " (cd space) and then the name of the folder. The command "dir" allows you to list the contents of the folder (dir-ectory) you are in.
THis image shows the contents of the folder.... and the required command that we must run. The syntax of this line is "interlx.exe -x yourinitials_yourDesiredOutputName.amb Wfile.wav Xfile.wav Yfile.wav Zfile.wav". The "-x" is there to tell interlex.exe that we want it to make a WAVE_EX file format. Ofcourse, in this example I am creating a 4 channel 1st order file. mctools actually allows you to make up to a 16 channel file ... so you could make a 3rd order .amb file if you wanted.
And when you are done ... interlx.exe prints out some stats that help you determine that everything went OK. Your final file will noe be found in the same folder.
How to convert an interleaved multi-channel .WAV file into to an interleaved .amb file using mctools
Use the copysfx.exe command from Richard's mctools.
copysfx.exe -sN -p -t5 infile.wav outfile.amb
where N is a different number depending on the bit depth.
eg. For a 24 bit interleaved file use:
copysfx.exe -s4 -p -t5 song.wav BH_song.amb
for 16 bit it would be:
copysfx.exe -s1 -p -t5 song.wav BH_song.amb
For other bit depths and more info you can enter
copysfx.exe
and hit ENTER and a key is displayed. Thanks to Bill Houston for the copysfx.exe
instructions!