We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

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)}})()