02-21-2012 11:24 AM
In IE9, the BrightcoveExperience.js is generating a Javascript error that kills the player. The error is thrown on line 58, character 294, the beginning of a 'videoSupport=!!' statement.
I'm using the standard player embed code.
Has anyone else seen this?
Thanks for your help,
Tom
02-27-2012 04:57 PM
Could you please provide a link?
Thank you
03-28-2012 11:02 AM
I'm experiencing the same error:
BrightcoveExperiences.js, line 58 character 294
SCRIPT16385: Not implemented
After doing some searching, it seems "some" versions of IE9 don't support the canPlayType method:
http://groups.google.com/group/jplayer/browse_thre
The recommended workaround is to surround it with a try/catch block.
Are there any plans to fix this in BrightcoveExperiences.js?
04-11-2012 04:35 AM
Is there any update on this?
Is this a known issue and if so are there any plans to address this with a future update?
04-11-2012 11:36 AM
Sorry abou this. I just entered a bug in our system so we can fix this. (BC-31011)
08-22-2012 12:09 PM
Is this bug fixed? We're experiencing the same issue as the poster(s) above. We're using a standard brightcove player as well.
10-30-2012 05:42 AM
One of our partners has a work around for this, as follows:
I’ve fixed for ie9 for now by downloading the javascript and serving it locally and putting in a fix for that error
My fix is to replace
if (!brightcove.userAgent.match(new RegExp("android", "i"))) {
videoSupport = !!(v.canPlayType && v.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"').replace(/no/, ''));
}with
if (!brightcove.userAgent.match(new RegExp("android", "i"))) {
try {
videoSupport = !!(v.canPlayType && v.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"').replace(/no/, ''));
}
catch (err) {
//alert(err);
videoSupport = true;
}
}This means that instead of breaking for ie9 it assumes it can serve video
Hope this helps
Brightcove Inc., a leading global provider of cloud content services, provides a family of products used to publish and distribute the world's professional digital media. The company's products include Brightcove Video Cloud, the market-leading online video platform, and Brightcove App Cloud, the pioneering content app platform. Together, more than 4,200 customers in 50 countries rely on Brightcove's cloud content services to build and operate exceptional media experiences across PCs, smartphones, tablets and connected TVs.
Brightcove Inc.
© 2012 Brightcove Inc.
