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.

How do I convert a PCM audio file to mono with python. Any help with codes and/or resources would help alot.

share|improve this question
2  
The hard part is decoding the file. Once you have individual samples you just take left+right/2. – Mark Ransom Aug 17 '12 at 22:01
I have a decoded audio as PCM. Does the PCM contain the samples already? – Nedy Aug 17 '12 at 22:13
@Nedy, PCM = pulse code modulation. It's nothing but a stream of samples for each channel, measured as the delta from -∞ dB. They could be signed, unsigned, different endian, etc. You will need to figure that out from the audio file's header. – Brad Aug 17 '12 at 22:22
How do i determine the left and right? – Nedy Aug 17 '12 at 23:39
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.