I'm working on a project on the iPhone where I'm recording audio from the device mic using AVAudioRecorder, and then will be manipulating the recording.

To ensure that I'm reading in the samples from the file correctly, I'm using python's wave module to see if it returns the same samples.

However, python's wave module returns "fmt chunk and/or data chunk missing" when trying to open the wav file that is saved by AVAudioRecorder.

These are the settings I am using to record the file:

[audioSettings setObject:[NSNumber numberWithInt:kAudioFormatLinearPCM] forKey:AVFormatIDKey];
[audioSettings setObject:[NSNumber numberWithInt:16] forKey:AVLinearPCMBitDepthKey];
[audioSettings setObject:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsBigEndianKey];
[audioSettings setObject:[NSNumber numberWithFloat:4096] forKey:AVSampleRateKey];
[audioSettings setObject:[NSNumber numberWithInt:1] forKey:AVNumberOfChannelsKey];
[audioSettings setObject:[NSNumber numberWithBool:YES] forKey:AVLinearPCMIsNonInterleaved];
[audioSettings setObject:[NSNumber numberWithBool:NO] forKey:AVLinearPCMIsFloatKey]; 

After that, I'm just making a call to recordForDuration to actually do the recording.

The recording succeeds-- I can play the file etc, and I can read in the samples using AudioFile services, but I can't validate it because I can't open the file with Python's wave module.

This is what the first 128 bytes of the file look like:

1215N:~/Downloads$ od -c --read-bytes 128 testFile.wav
0000000   R   I   F   F   x   H 001  \0   W   A   V   E   f   m   t    
0000020 020  \0  \0  \0 001  \0 001  \0   @ 037  \0  \0 200   >  \0  \0
0000040 002  \0 020  \0   F   L   L   R 314 017  \0  \0  \0  \0  \0  \0
0000060  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0  \0
*
0000200

Any idea what I need to do to make sure a correct WAV header is written out by AVAudioRecorder?

link|improve this question

1  
Dump the first 128 bytes with od -c. – Ignacio Vazquez-Abrams Jun 8 '11 at 20:15
code 0000000 R I F F $ \0 \0 \0 W A V E f m t 0000020 020 \0 \0 \0 001 \0 001 \0 \0 020 \0 \0 \0 \0 \0 0000040 002 \0 020 \0 d a t a \0 \0 \0 \0 0000054 – ch3rryc0ke Jun 8 '11 at 20:25
1  
Edit your question instead of posting it as a comment. – Ignacio Vazquez-Abrams Jun 8 '11 at 20:27
@Ignacio thanks, updated the question – ch3rryc0ke Jun 8 '11 at 21:25
I'm having a similar problem where WAV files recorded in my app don't play in Windows. – kevboh Jun 17 '11 at 20:02
feedback

2 Answers

up vote 7 down vote accepted

Apple software often creates WAVE files with a non-standard (but legal) "FLLR" subchunk after the "fmt " subchunk and before the "data" subchunk. I assume "FLLR" stands for "filler", and I assume the purpose of the subchunk to enable some sort of data alignment optimization. The subchunk is usually about 4000 bytes long, but its actual length can vary depending on the length of the data preceding it.

Adding arbitrary subchunks to WAVE files is generally considered legal because WAVE is a subset of RIFF, and the common practice in RIFF file processing is to ignore chunks and subchunks which have an unrecognized identifier. The identifier "FLLR" is "non-standard" and so should be ignored by any software which encounters it.

There is a fair amount of software out there that treats the WAVE format much more rigidly than it ought to, and I suspect the library you're using may be one of those pieces of software. For example, I have seen software that assumes that the audio bytes always begin at offset 44 -- this is an incorrect assumption.

In fact, finding the audio bytes in a WAVE file must be done by finding the location and size of the "data" subchunk within the RIFF; this is the correct way to locate the audio bytes within a WAVE file.

Reading WAVE files properly must really begin as an exercise in locating and identifying RIFF subchunks. RIFF subchunks have an 8-byte header: 4 bytes for an identifier/name field which is traditionally filled with human-readable ASCII characters (e.g. "fmt "), and a 4-byte little-endian unsigned integer specifying the number of bytes in the subchunk's data portion. The subchunk's data portion follows immediately after this 8-byte header.

The WAVE file format reserves certain subchunk identifiers (or "names") as being meaningful to the WAVE format. There are a minimum of two subchunks that must always appear in every WAVE file:

  1. "fmt " - contains the basic information about the audio's format: sample rate, bit depth, etc.
  2. "data" - subchunk contains the actual audio bytes.

"fact" is the next most common subchunk identifier. It is only valid in WAVE files that use a compressed codec, such as μ-law (as opposed to PCM, which is not compressed). See http://www.sonicspot.com/guide/wavefiles.html for more information about some of the various subchunk identifiers in use today in the wild.

From a RIFF perspective, subchunks need not appear in any particular order in the file, or at any particular fixed offset. In practice however, almost all software expects the "fmt " subchunk to be the first subchunk. This is a practical concession, because the "fmt " subchunk contains the primary descriptor for the audio format contained in the WAVE. (The convention of always placing "fmt " first facilitates streaming playback of WAVE files, for example). If the WAVE file uses a compressed format, such as μ-law, it is usually assumed that the "fact" subchunk will appear directly after "fmt ".

After the format-specifying chunks are out of the way, assumptions about the location, ordering, and naming of subchunks should be abandoned. At this point, the software should locate expected subchunks by name only (e.g. "data"). If subchunks are encountered that have unrecognized names (e.g. "FLLR"), those subchunks should simply be skipped over and ignored.

What Apple has done with the "FLLR" subchunk is slightly unusual, but by no means incorrect. I suspect that the library you are using is simply unprepared to deal with the presence of the "FLLR" subchunk. I would consider this a defect in the library. The mistake the library authors have made is probably something like:

  1. They may be expecting the "data" subchunk to appear within the first N bytes of the beginning of the file, where N is something less than ~4kB. They may give up looking if they have to look too far. The Apple "FLLR" subchunk pushes the "data" subchunk to a position >~4kB into the file, which may be farther than the code in the library is willing to look.

  2. They may be expecting the "data" subchunk to have a specific ordinal position or offset within the RIFF. Perhaps they expect "data" to appear immediately after "fmt ". This is an incorrect way to process a RIFF file, though. The ordinal position and/or offset position of the "data" subchunk should definitely not be assumed to be fixed. The Apple "FLLR" subchunk appears between "fmt " and "data" subchunks. The "FLLR" subchunk should be skipped and ignored, as it has a non-standard, unrecognized name.

link|improve this answer
feedback

What's the name of the file you're recording to on disk? I had a similar problem and just solved it by tacking on .wav to the end of my filename... I guess AVAudioRecorder needs an extension to figure things out.

link|improve this answer
I am tacking on the .wav file extension. The files play normally in iTunes, but I can't read them using wavread libraries. – ch3rryc0ke Jun 17 '11 at 20:41
Another thing that doesn't make sense is that the file size of a 5 second clip recorded @ 16 bit single channel , 4096 sampling frequency turns out to be 84 KB. IT should be closer to 40KB (4096*5*2) – ch3rryc0ke Jun 17 '11 at 20:42
Upon further inspection-- QuickTime player shows the file being recorded at 8000hz, not 4096 as I'm specifying. I guess the iPhone simulator can't record at 4096hz? – ch3rryc0ke Jun 17 '11 at 20:49
Have you tried recording on a device? – kevboh Jun 20 '11 at 1:07
Just tried recording on iPhone4 with IOS 4.3.2, and it still records @ 8000 hz. – ch3rryc0ke Jun 21 '11 at 0:32
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.