문제

I am trying to embed a ooyala video on a web page using the emebed tag. By just giving the src it works fine in chrome and surprisingly in IE, but if fails in FF.

<embed src="http://player.ooyala.com/player.swf?embedCode=c3ajR4MjpyGe-djJaAxM6wa_SPQPijH7&amp;version=2" type="application/x-shockwave-flash" 
/>

for firefox I additionaly need to provide a flashvars property in the embed tag or else it gets stuck on 'loading'.

<embed src="http://player.ooyala.com/player.swf?embedCode=c3ajR4MjpyGe-djJaAxM6wa_SPQPijH7&amp;version=2" type="application/x-shockwave-flash" flashvars="&amp;embedCode=c3ajR4MjpyGe-djJaAxM6wa_SPQPijH7&amp;videoPcode=FiYm06Tu_hQLSGqTeVTwSS1L4vV7" 
/>

Here is the fiddle demonstrating the issue. Open it in ff and you will see the second video forever stuck on loading while both the video play fine in chrome and IE.

올바른 솔루션이 없습니다

다른 팁

You can use <iframe></iframe>

<iframe  id="Iframe" width="640" height="360" src="http://player.ooyala.com/player.swf?embedCode=c3ajR4MjpyGe-djJaAxM6wa_SPQPijH7&amp;version=2" frameborder="0"></iframe>

it supports all browser

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top