2013-07-03 47 views
0

我試圖從Kaltura視頻平臺在HTML5頁面中嵌入視頻。Kaltura在Firefox上嵌入iframe播放器錯誤

我在Kaltura跟着the docs。到目前爲止,我可以在Safari,Chrome和Internet Explorer中播放視頻,但無法在Firefox中加載視頻。 Firebug控制檯顯示了這個JavaScript錯誤:

ReferenceError: kWidget is not defined

的HTML5代碼demostrating問題如下(見fiddle了現場演示):

<!DOCTYPE html> 
<html> 
<head> 
<title>test</title> 
</head> 
<body> 
    <iframe id="iframe_-1" src="http://www.kaltura.com/p/403921/sp/40392100/embedIframeJs/uiconf_id/4438451/partner_id/403921?iframeembed=true&amp;playerId=iframe_-1&entry_id=1_40ttmxyq" width="400" height="330" allowfullscreen webkitallowfullscreen mozAllowFullScreen frameborder="0"> 
     <a href="http://corp.kaltura.com/products/video-platform-features">Video Platform</a> 
     <a href="http://corp.kaltura.com/Products/Features/Video-Management">Video Management</a> 
     <a href="http://corp.kaltura.com/Video-Solutions">Video Solutions</a> 
     <a href="http://corp.kaltura.com/Products/Features/Video-Player">Video Player</a> 
    </iframe> 
</body> 
</html> 

令我百思不解的是,只有Firefox是抱怨。有沒有人遇到同樣的問題?是一些跨域問題?

回答

1

較早版本的mwEmbed有嵌入iframe的錯誤(1.7.1.11)。

請嘗試升級到latest stable release1.8.7)。這是一個sample test page在該版本的Firefox中工作。

注意測試頁正在做一些不同的東西(通過燈箱調用),但基本點是如果你update that uiConf到1.8.7一切都應該正常工作。

+0

謝謝@mdale,我設法通過瀏覽器檢測來解決問題,但我不喜歡我的解決方案。我會嘗試升級並儘快接受答案(幾天後,我預計)。非常感謝! – orique

相關問題