@aplayer {
308 - Image 3D enable int R/W color 3D enable! 1-enable, 0-disable, default 0
309 - Image 3D okay int R check the color 3D mode is okay, 1-okay, 0-not okay.
310 - Image 3D show int R/W color 3D effect show, default 1
311 - Image 3D color int R/W color 3D color, 1:R/GB,2:GB/R,3:RG/B,4:B/RG,5:G/RB,6:RB/G,7:R/G,8:G/R,9:G/B,10:B/G,11:R/B,12:B/R, default 1
312 - Image 3D mode int R/W color 3D mode, 0-virtual(2d to 3d), 1-left/right, 2-top/bottom, default 0
//CHM
308 - Image 3D enable int R/W 激活分色 3D 播放模式,1-激活, 0-不激活,默认0,Open 之前调用
309 - Image 3D okay int R 查询分色 3D 模式是否已激活,1-激活, 0-未激活。
310 - Image 3D show int R/W 是否显示分色 3D 效果,1-显示,0-不显示,默认 1
311 - Image 3D mode int R/W 分色模式,1-虚拟(2D转3D),2-左右,3-上下,默认 1
312 - Image 3D color int R/W 分色颜色,以匹配不同的 3D 眼镜,1:红青,2:青红,3:黄蓝,4:蓝黄,5:绿紫,6:紫绿,7:红绿,8:绿红,9:绿蓝,10:蓝绿,11:红蓝,12:蓝红, 默认 1
}
1、以上设置信息跟chm里的不同;
2、以下是我代码,测试播放 阿凡达 3D没有任何效果。
if dlgOpen.Execute(Handle) then
begin
APlayer.SetConfig(308,'1'); //激活分色 3D 播放模式,1-激活, 0-不激活,默认0,Open 之前调用
APlayer.Open(dlgOpen.FileName);
APlayer.SetConfig(310,'1'); //是否显示分色 3D 效果,1-显示,0-不显示,默认 1
APlayer.SetConfig(311,'2'); //分色模式,1-虚拟(2D转3D),2-左右,3-上下,默认 1
end;