So, Silverlight 4 adds support for capture from microphones (and webcams) , however it will be useful for this object (at least in my case). I will need to upload this captured data to the server to save.
AudioCaptureDevice will record PCM sound on the client, and as we all know, PCM is not the most efficient encoding ... the data will be too large to load uncompressed.
Ideally, I can encode this PCM stream to AAC directly on the client, and then upload this compressed stream to the server.
Perhaps something like this library . However, it does not support AAC.
(I choose AAC because (unlike MP3) it does not require encoding and is supported by popular PMP devices.)
Are there any thoughts on how to do this? All options are on the table: full trust, Google Gears, etc.
Thanks for any help!
Bobby source
share