JW播放器 - 只有黑屏,声音有效

时间:2011-05-16 16:22:49

标签: jwplayer


我对JW播放器有问题(http://www.longtailvideo.com)。

声音有效,但屏幕是黑色的。但为什么? 希望有人可以帮助我。

JS

   $('body').append('<div id="mediaplayer"></div>');
    $.getScript('http://player.longtailvideo.com/jwplayer.js', function ()
    {
       jwplayer("mediaplayer").setup({
         flashplayer: "http://player.longtailvideo.com/player.swf",
         file: 'http://www.n-tv.de/podcast/mp4/wetter/33sekunden_1105161548.mp4',
     autostart: "true"
    });
       $('#mediaplayer_wrapper').css('z-index','107').css('width','853px').css('height','505px').css('padding','10px').addClass('bg_one').center();
    });

以下是一个示例 http://jsfiddle.net/yMh5r/4/

提前致谢!
彼得

2 个答案:

答案 0 :(得分:1)

检查你的mp4文件的编码 - 过去我们的mp4文件遇到了同样的问题,这是编码的责任。对不起,我不知道我们的视频人员确实做了什么来修复它。 :(

答案 1 :(得分:0)

JW Player支持仅使用H.264编码的mp4视频。 因此,您应该尝试重新编码您的文件。 例如,您可以使用VLC:

cvlc -I dummy -vvv example_input_file.mp4 –sout=#transcode{vcodec=h264, vb=1024, acodec=aac, ab=128, channels=2}:standard{access=file,mux=mp4,dst=example_output_file.mp4} vlc:quit

VLC支持重新编码远程文件,并且也可以将它们保存到本地目录。