如何在视频播放器中激活wmode透明

时间:2016-09-26 06:58:27

标签: php swfobject video-player

我正在尝试在我的视频脚本中激活wmode。 我不知道怎么做。

以下是我的代码。

<script type="text/javascript">
    TSC.playerConfiguration.setFlashPlayerSwf("demo_controller.swf");
    TSC.playerConfiguration.setMediaSrc("demo.mp4");
    TSC.playerConfiguration.setXMPSrc("demo_config.xml");

    TSC.playerConfiguration.setAutoHideControls(true);
    TSC.playerConfiguration.setBackgroundColor("#000000");
    TSC.playerConfiguration.setCaptionsEnabled(false);
    TSC.playerConfiguration.setSidebarEnabled(false);

    TSC.playerConfiguration.setAutoPlayMedia(false);
    TSC.playerConfiguration.setPosterImageSrc("demo_First_Frame.png");
    TSC.playerConfiguration.setIsSearchable(true);
    TSC.playerConfiguration.setEndActionType("stop");
    TSC.playerConfiguration.setEndActionParam("true");
    TSC.playerConfiguration.setAllowRewind(-1);

    TSC.localizationStrings.setLanguage(TSC.languageCodes.ENGLISH);
    $(document).ready(function (e) {
        TSC.mediaPlayer.init("#tscVideoContent");
    });
</script>

我试过这个TSC.playerConfiguration.setEndActionParam(“wmode”:“transparent”);

它不起作用。  谢谢

1 个答案:

答案 0 :(得分:0)

我得到的解决方案只是在player-min.js中做了一些改变: -

co.wmode = "direct";


Just go to player-min.js and replace "direct" with "transparent"

It will work .


 co.wmode = "transparent";

谢谢。