搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Can't play any video in this site: http://www.b92.net/tv/najave.php?cid=60#n2726 In Chrome plays just fine.

  • 10 个回答
  • 18 人有此问题
  • 1 次查看
  • 最后回复者为 cor-el

more options

I have all plugins, averythig else is just fine, but these videos. If I go to the source of the videos, for example this one <embed src="http://blip.tv/play/hKYmg5TsVQA.html?p=1" frameborder="0" allowfullscreen="" height="270" width="320"> and go to http://blip.tv/play/hKYmg5TsVQA.html?p=1 all is fine video plays just fine. It is the same with other: <embed frameborder="0" allowfullscreen="" src="http://www.b92.net/embed/index.php?nav_id=900667" webkitallowfullscreen="" mozallowfullscreen="" height="545" width="665"> if I go directly to http://www.b92.net/embed/index.php?nav_id=900667 all is fine.

In IE11 is the same. Only plays fine in Chrome. Any help?

Sorry, the message is: A plugin is needed to display this content...

I have all plugins, averythig else is just fine, but these videos. If I go to the source of the videos, for example this one &lt;embed src="http://blip.tv/play/hKYmg5TsVQA.html?p=1" frameborder="0" allowfullscreen="" height="270" width="320"&gt; and go to http://blip.tv/play/hKYmg5TsVQA.html?p=1 all is fine video plays just fine. It is the same with other: &lt;embed frameborder="0" allowfullscreen="" src="http://www.b92.net/embed/index.php?nav_id=900667" webkitallowfullscreen="" mozallowfullscreen="" height="545" width="665"&gt; if I go directly to http://www.b92.net/embed/index.php?nav_id=900667 all is fine. In IE11 is the same. Only plays fine in Chrome. Any help? Sorry, the message is: A plugin is needed to display this content...

由cor-el于修改

被采纳的解决方案

You could use a bookmarklet to replace the current embed tag with an iframe or use Inspect Element in the right-click context menu to open the built-in Inspector and double-click the embed text and replace it with iframe.

javascript:(function(){var cE='object',eE=document.querySelectorAll('embed');for(i=0;E=eE[i];i++){N=document.createElement(cE);for(j in E.attributes){A=E.attributes[j];if((A.name!=undefined)&&(A.value!=undefined)){N.setAttribute((A.name.toLowerCase()=='src')?'data':A.name,A.value)}}E.parentNode.replaceChild(N,E)}})()
定位到答案原位置 👍 6

所有回复 (10)

more options

由Milaneli于修改

more options

There is a problem with the site, I think. The links in your first post were all video removed. The link in your second post showed me a message saying a plugin was needed. But I have all the normal plugins already. Also, if you see a message like that, it should tell you what plugin is needed.

more options

Problem is in the link from a second message. It is fine in Chrome, Opera, but doesnt show or play embeded flash in Firefox and IE.

more options

This doesn't work with an HTML file in an embed tag. You would have to use an iframe.

<iframe src="http://blip.tv/play/hKYmg5TsVQA.html?p=1" frameborder="0" allowfullscreen="" height="270" width="320">
more options

Thanks. Why it is working in Chrome and Opera?

more options

Because they don't follow the spec or badly. Chrome is not the authority in term of implementation.

more options

Authority or not, it is working with Opera and Chrome, and doesn't with Firefox...

more options

Embed is the only thing that isn't working in Firefox when it comes to embedding an HTML file. It works with an iframe and with an object, but not with embed.

more options

Is there any plugin or some hack to enable recognition of this tag?

more options

选择的解决方案

You could use a bookmarklet to replace the current embed tag with an iframe or use Inspect Element in the right-click context menu to open the built-in Inspector and double-click the embed text and replace it with iframe.

javascript:(function(){var cE='object',eE=document.querySelectorAll('embed');for(i=0;E=eE[i];i++){N=document.createElement(cE);for(j in E.attributes){A=E.attributes[j];if((A.name!=undefined)&&(A.value!=undefined)){N.setAttribute((A.name.toLowerCase()=='src')?'data':A.name,A.value)}}E.parentNode.replaceChild(N,E)}})()