Xuggler从视频中检索每个频道的音频样本

时间:2014-02-21 06:31:10

标签: java audio sampling xuggler

我使用Xuggler和DecodeAndPlayVideo演示,效果很好。

现在我想从每个频道音频中检索每个样本,然后再进行另一个过程。

我想要像这样(或其他)的解决方案:

IAudioSample channelRight 
IAudioSample channelLeft

我尝试使用此代码,但效果不佳:

//aSample is the main IAudioSamples (Stereo )

byte[] leftChanelByte = new byte[1024];
for (int i = 0; i < leftChanelByte.length ; i++) {

    leftChanelByte[i]= (byte)aSamples.getSample(i, 1, aSamples.getFormat());
}

您有任何想法吗? 谢谢

0 个答案:

没有答案