Reputation: 303
I am developing a voip type app in which i am capturing G711 packets from the network. Now i need to decode them and need to save it in .wav format and able to listen it. Any sample code or direction which can lead to solve this problem?
Thanks in advance.
Upvotes: 1
Views: 3749
Reputation: 93434
g711 is just standard uLaw or aLaw codec, for which there is lots of examples out there.
For example, Mark Sweetgall has an implementation in C# available over on CodeProject.
Upvotes: 1