Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Learn More

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

  • 10 respostas
  • 18 têm este problema
  • 1 visualização
  • Última resposta por 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...

Modificado por cor-el a

Solução escolhida

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)}})()
Ler esta resposta no contexto 👍 6

Todas as respostas (10)

more options

Modificado por Milaneli a

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

Solução escolhida

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