1

トピックにあるように、NSpeex(v1.1.1、Speex v1.2rc1を使用)を使用してWindowsPhone7でオーディオをエンコードすることに問題はありません。私は最初にストリームをエンコードし、次にそれを再度デコードした直後にwavヘッダーを追加し、wavが正常に再生されるサーバーに送り返すことでこれを確認しました。しかし、エンコードされたストリームをサーバーに送信し、JSpeex(v0.9.7、Speex v1.0.3を使用)でデコードしようとすると、デコード設定をいじると、さまざまな種類のStreamCorruptedExceptionsしか取得されません。

私はここでバージョンの不可侵性にぶつかっていますか、それとも私は単に何か間違ったことをしていますか?誰かがこの構成について何か知っているなら、私はどんな助けにも感謝するでしょう。私が今使用しているコード:

電話側:

SpeexEncoder encoder = new SpeexEncoder(BandMode.Wide);
// set encoding quality to lowest (which will generate the smallest size in the fastest time)
encoder.Quality = 1;
int inDataSize = _recordedBytes / 2; //_recordedBytes is the lenght of the _recordedBuffer(which is a byte array)

// convert to short array
short[] data = new short[inDataSize];
int sampleIndex = 0;
for (int index = 0; index < _recordedBytes; index += 2, sampleIndex++)
{
    data[sampleIndex] = BitConverter.ToInt16(_recordedBuffer, index);
}

// note: the number of samples per frame must be a multiple of encoder.FrameSize
inDataSize = inDataSize - inDataSize % encoder.FrameSize; //framesize is 320
var encodedData = new byte[_recordedBytes];
int encodedBytes = encoder.Encode(data, 0, inDataSize, encodedData, 0, _recordedBytes);
if (encodedBytes != 0)
{
    byte[] inDataSizeBuf = BitConverter.GetBytes(inDataSize);
    byte[] sizeBuf = BitConverter.GetBytes(encodedBytes + inDataSizeBuf.Length);
    byte[] returnBuf = new byte[encodedBytes + sizeBuf.Length + inDataSizeBuf.Length];
    sizeBuf.CopyTo(returnBuf, 0);
    inDataSizeBuf.CopyTo(returnBuf, sizeBuf.Length);
    Array.Copy(encodedData, 0, returnBuf, sizeBuf.Length + inDataSizeBuf.Length, encodedBytes);
}

サーバ側:

SpeexDecoder speexDecoder = new SpeexDecoder();         
if(speexDecoder.init(1, 16000, 1, true)) { //params: mode(1 = wide), sample rate, channels, enhancement(what ever that is)
    speexDecoder.processData(encodedSpeex, 0, 320); //params: encoded byte array, offset, frame size
    byte[] decoded = new byte[speexDecoder.getProcessedDataByteSize()];
    speexDecoder.getProcessedData(decoded, 0);
}

エラー、processData()で発生します(コードで使用されている現在の設定を使用):

java.io.StreamCorruptedException: Invalid sideband mode encountered. (2nd sideband): 6
at org.xiph.speex.NbDecoder.decode(Unknown Source)
at org.xiph.speex.SbDecoder.decode(Unknown Source)
at org.xiph.speex.SpeexDecoder.processData(Unknown Source)
at org.xiph.speex.SpeexDecoder.processData(Unknown Source)
at mun.testi.SpeexTesti.main(SpeexTesti.java:35)
4

0 に答える 0