jw 玩家皮肤 xml 和 swf

发布于 2024-11-07 15:22:49 字数 128 浏览 6 评论 0原文

我的项目中有 jw 播放器,它工作正常。当我下载一些皮肤时,它们工作正常。

问题是有些皮肤无法工作,netbeans 上的文件夹显示该皮肤无法识别,即使我从官方网站下载了它。

有谁知道我如何放置 XML 皮肤。

i have jw player on in project and it work fine. and when i download some of skins they work fine.

Problem is some of the skins is not working, and the folder on netbeans show me that is is unrecognized even though i download it from the official website.

Does anyone know how i can put a XML skin .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

御弟哥哥 2024-11-14 15:22:49

我发现如何将 .swf 放入媒体播放器文件夹中,然后在助手中使用此代码。 XML 文件也是如此。

public function Mediaplayer($VideoPath, $width, $height) {
    return '<object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="' . $width . '" height="' . $height . '">
    <param name="movie" value="/mediaplayer/player.swf" />
            <param name="wmode" value="transparent" />
    <param name="allowfullscreen" value="true" />
    <param name="allowscriptaccess" value="always" />
    <param name="flashvars" value="file=' . $VideoPath . '&image=' . str_replace('.flv', '.jpg', str_replace('/flv/', '/thumb/', $VideoPath)) . '&skin='.URL_ADDRESS.'/mediaplayer/comet.swf"'.logo.file ( 'test' ).' />
    <embed
        type="application/x-shockwave-flash"
        id="player2"
        name="player2"
        src="/mediaplayer/player.swf"
        width="' . $width . '"
        height="' . $height . '"
        allowscriptaccess="always"
        allowfullscreen="true"
        flashvars="file=' . $VideoPath . '&image=' . str_replace('.flv', '.jpg', str_replace('/flv/', '/thumb/', $VideoPath)) . '&skin='.URL_ADDRESS.'/mediaplayer/comet.swf"
    />  </object>';
}

i found out how just put the .swf in the mediaplayer folder and then i used this code in the helper. and the same thing for XML files.

public function Mediaplayer($VideoPath, $width, $height) {
    return '<object id="player" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" name="player" width="' . $width . '" height="' . $height . '">
    <param name="movie" value="/mediaplayer/player.swf" />
            <param name="wmode" value="transparent" />
    <param name="allowfullscreen" value="true" />
    <param name="allowscriptaccess" value="always" />
    <param name="flashvars" value="file=' . $VideoPath . '&image=' . str_replace('.flv', '.jpg', str_replace('/flv/', '/thumb/', $VideoPath)) . '&skin='.URL_ADDRESS.'/mediaplayer/comet.swf"'.logo.file ( 'test' ).' />
    <embed
        type="application/x-shockwave-flash"
        id="player2"
        name="player2"
        src="/mediaplayer/player.swf"
        width="' . $width . '"
        height="' . $height . '"
        allowscriptaccess="always"
        allowfullscreen="true"
        flashvars="file=' . $VideoPath . '&image=' . str_replace('.flv', '.jpg', str_replace('/flv/', '/thumb/', $VideoPath)) . '&skin='.URL_ADDRESS.'/mediaplayer/comet.swf"
    />  </object>';
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文