2006/01/29, 17:01:31, UTC

 How to make a *.amb file


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.

interlx -x yourInitials_outputfile.amb input_w.wav input_x.wav input_y.wav input_z.wav


To avoid naming conflicts, make sure you prefix all your recordings with youu initials. eg. ED_car.amb


Please see this video demonstration here for a step-by-step guide on how to create a *.amb file from mono wav files ... or follow the directions below.


Step by Step tutorial on how to create a *.amb file using mctools


  1. Go to http://www.bath.ac.uk/masrwd/mctools.html (screenshot below). Click on 'downloads'.

    mctools_1

  2. Download mctools.zip for your platform.

    mctools_2

  3. 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

    mctools_2

  4. 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

    mctools_2

  5. 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

    mctools_2

  6. A dialog box will launch, asking you what you want to run ... in here type "cmd" and press enter.

    mctools_2

  7. 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.

    mctools_2

  8. 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.

    mctools_2

  9. 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.

    mctools_2

  10. 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.

    mctools_2

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!