0

这是我的代码:

public byte[] Decode(byte[] encodedData)
{
    short[] decodedFrame = new short[160]; // should be the same number of samples as on the capturing side
    int decoderBytes = decoder.Decode(encodedData, 0, encodedData.Length, decodedFrame, 0, false);
}

当我调用此方法时:

byte[] decodedBuffer = this.Decode(File.ReadAllBytes(@"C:\Users\Admin\Desktop\123.ogg"));

我收到“<strong>遇到无效模式:9”错误。

如何解决?我做错什么了吗?

4

1 回答 1

0

你可以试试 https://sites.google.com/site/cobnut3d/

有C#的例子

于 2015-05-30T22:01:16.333 回答