我希望能够平移 flv 文件的立体声通道。表面上这样我可以在播放 flv 时播放 2 种语言中的一种(右声道或左声道)。我已经“玩过”混音器,但无法让它与 flv 一起使用。
我可以将 soundMixer 与 videoPlayer 一起使用吗?如果可以,有人可以更正我的(以下)代码吗?
TIA,菲尔。
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
<fx:Declarations>
<!-- Place non-visual elements (e.g., services, value objects) here -->
</fx:Declarations>
<fx:Script>
<![CDATA[
protected function myVideo():void
{
var soundMixer:SoundTransform = new SoundTransform();
soundMixer.pan = 1;
myVid.soundTransform = soundMixer;
myVid.play();
}
]]>
</fx:Script>
<s:VGroup width="100%" height="100%">
<s:Button id="playVideo" label="Video" click="myVideo()"/>
<s:VideoPlayer id="myVid"
source="assets/caroLang.flv"
volume="1.0"
width="50%" height="50%"
autoPlay="false"
autoDisplayFirstFrame="true"
scaleMode="letterbox"
/>
</s:VGroup>
</s:View>