javascript - BBC EMP (Embedded Media Player) "Content appears not to be working..." -
javascript - BBC EMP (Embedded Media Player) "Content appears not to be working..." -
background
we have been embedding emp (http://news.bbc.co.uk/1/hi/help/7277283.stm) in quadrant on our bespoke mi wall boards months successfully. code uses div host iframe:
<div id="emp1" class="player" style="float: left; width: 100%; height: 100%;"> <p>in order see content need have both <a href="http://www.bbc.co.uk/webwise/askbruce/articles/browse/java_1.shtml" title="bbc webwise article enabling javascript">javascript</a> enabled , <a href="http://www.bbc.co.uk/webwise/askbruce/articles/download/howdoidownloadflashplayer_1.shtml" title="bbc webwise article downloading">flash</a> installed. visit <a href="http://www.bbc.co.uk/webwise/">bbc webwise</a> total instructions</p> </div> and bunch of javascript populate it:
function updateemp(widthemp, heightemp) { width = widthemp; height = heightemp; $('bbc_emp_embed_emp1').morph({ width: widthemp + 'px', height: heightemp + 'px' }); } function reload(url, title) { var emp = new embeddedmedia.player(); emp.setwidth("100%"); emp.setheight("100%"); emp.setdomid("emp1"); emp.quality = "low"; emp.set("config_settings_autoplay", "true"); emp.setplaylist('http://www.bbc.co.uk/emp/simulcast/bbc_news24.xml'); emp.setconfig('http://www.bbc.co.uk/emp/simulcast/config_bbc_news24.xml'); emp.write(); } the problem last week emp either retired or has broken. check out below link when seek , access emp (just text "this content doesn't seem working. seek 1 time again later." :
http://www.bbc.co.uk/emp/player.swf
i have contacted beeb , have had no response yet. there way embed bbc other nasty iframe surrounded div overflow hidden?
javascript streaming
Comments
Post a Comment