本文介绍了JWplayer:未检测到视频时显示图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个网站,我在其中使用jwplayer向访问者显示流.

I have a website where I show a stream to my visitors using the jwplayer.

我想知道是否有一种方法可以在流退出而不是该错误消息时用jwplayer中的图像替换视频?

I want to know if there is a way to replace the video with an image in jwplayer when the stream is out instead of that error message?

推荐答案

绝对.

http://support.jwplayer. com/customer/portal/articles/1442607-example-a-custom-error-message

jwplayer().onError(function(){
​jwplayer().load({file:"http://www.com/errorfile.mp4",image:"http://www.com/errorfile.jpg"});
jwplayer().play();
});

这篇关于JWplayer:未检测到视频时显示图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 15:01