1

我的应用程序是 MVC5,我已将 JWPlayer 从 5.10 升级到 6.9。标题不起作用,这是我的脚本:

  jwplayer("mediaplayer").setup({
        playlist: [{
            file: "../Video/when.mp4",
            image: "../Content/images/when.png",
            tracks: [{
                file: '../Video/when.dfxp',
                label: "English",
                kind: "captions",
                "default": true
            },{
                file: '../Video/when.srt',
                kind: "captions",
                label: "French"
            }]
        }]
    });

相同的 srt 正在使用版本 5.10。将srt文件转换为vtt和dfxp,在IE、Chrome、FireFox上测试;没有工作。

4

1 回答 1

1

你的代码没问题。

在您的站点 www.scanitfirst.com中,标题文件的链接已损坏(未找到 404)

http://www.scanitfirst.com/Video/when.dfxp //404
http://www.scanitfirst.com/Video/when.srt  //404

如果您要解决此问题,您的标题应该可以按预期工作

于 2014-07-31T07:31:55.460 回答