2 つの外部画面で再生するビデオ プレーヤーを作成しています。2 画面の場合、左右画面用のボタンがあります。画面ごとに、オーディオをそれぞれ左と右にパンしたいと思います。これを btnRightPlay に追加しましたが、オーディオはまだ正しいチャンネルでしか再生されません。誰かこれについてアドバイスがありますか?バッファを追加する必要がありますか?
Pan.Right.Equals(10000);
ビデオ プレーヤーのプレーヤー コード
public PlayerAvi()
{
InitializeComponent();
player.stretchToFit = true;
player.uiMode = "none";
}
public override bool LoadVideo(string filePath)
{
_path = filePath;
player.URL = _path;
player.Ctlcontrols.stop();
player.settings.balance = -100;
waveOutSetVolume(0, 0x0000FFFF);
return true;
}
public override bool PlayVideo()
{
player.Ctlcontrols.play();
return true;
}
public override bool StopVideo()
{
player.Ctlcontrols.stop();
return true;
}
public override bool PauseVideo()
{
player.Ctlcontrols.pause();
return true;
}
public override bool ResumeVideo()
{
player.Ctlcontrols.play();
return true;
}
public override bool ClearVideo()
{
StopVideo();
_path = null;
return true;
}
}