Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to figure out the bit depth / quantization / bit resolution of the microphone channel in Flash. Anybody out there, who knows that?

The sampling rate is pretty simple - one can set/get it with Microphone.rate (to 5,8,16,22 or 44 KHz).

But no clue about the bit depth. It's not mentioned at any Adobe pages as far as I know. There's no function to set or get it.

share|improve this question

1 Answer

up vote 0 down vote accepted

I couldn't find any info on bit depth for this either, so I assume the bit depth is 16 (i.e. 2 bytes per sample).

This should be easy to determine experimentally by just recording sound into a WAV file and seeing how large the file is. The file size should be equal to:

fileSize = seconds * samplesPerSecond * bytesPerSample

So:

bytesPersample = fileSize / (seconds * samplesPerSecond)
share|improve this answer
Thanks. Sounds like a good work around. Will try something like this. – Martin Jun 25 '10 at 7:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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