Audio Conversion C#
Posted
by Will
on Stack Overflow
See other posts from Stack Overflow
or by Will
Published on 2009-08-18T18:04:41Z
Indexed on
2010/03/15
2:29 UTC
Read the original article
Hit count: 491
What is the best way to convert various audio formats to PCM?
For example: mp3, evrc, ogg vox.
Is there a library out there that will allow me to implement this relatively easily?
EDIT:
I guess my initial question wasn't really what I needed. Most of the libs I have found are file converters. What I need is a block converter, where I pass in a 1Kb block of vox data and it returns its converted PCM block. Of course I’ll have to tell the converter what type of data it is and various pieces of codec information.
The solution I am going for is to save and VOIP formats into a common wav format and to play that conformed file in real time. I thought there should be an easy way to do this because all audio is eventually turned into PCM before it is outputted anyways.
© Stack Overflow or respective owner