我使用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());
}
您有任何想法吗? 谢谢