IE Flash fallback not found

2 replies [Last post]
Joined: 05/17/2011
Points: 8

We're using the shared code library at http://html5.kaltura.org/js on multiple sites. Everything was working until a few days ago, so I figure an update was the culprit.

In IE 8 and below, rather than displaying the Flash fallback, it now displays a text error "No source video was found."

Joined: 02/22/2009
Points: 76

we have not done any update to http://html5.kaltura.org/js in the last few days. Do you have a sample page url? You can test with http://www.kaltura.org/apis/stagingHtml5lib/mwEmbedLoader.php for what we will be pushing out to .org pretty soon. ( but again no changes have gone out recently )

--michael

Joined: 10/13/2010
Points: 44

I'm actually seeing this now as well. Was working fine for weeks. Now on iPhone I'm getting "No source video was found". PC/Flash combo still works fine. I just noticed it today so I'm not sure when it stopped.

My code

<script type="text/javascript" src="http://media.mydomainhere.com/p/100/sp/10000/embedIframeJs/uiconf_id/4421531/partner_id/100"></script>
<script type="text/javascript" src="js/swfobject.js"></script>
<script type='text/javascript' src='http://html5.kaltura.org/js' ></script>

<script type='text/javascript'>
        mw.setConfig( 'Kaltura.ServiceUrl' , 'http://media.mydomainhere.com' );
        mw.setConfig( 'Kaltura.CdnUrl' , 'http://media.mydomainhere.com' );
        mw.setConfig('Kaltura.ServiceBase', '/api_v3/index.php?service=');
        mw.setConfig('EmbedPlayer.EnableIframeApi', false );
        mw.setConfig('EmbedPlayer.UseFlashOnAndroid', false );
        mw.setConfig('Kaltura.LoadScriptForVideoTags', true );
        mw.setConfig('Kaltura.AllowRemoteService', true );
        mw.setConfig('Kaltura.UseAppleAdaptive', false );
        mw.setConfig('EmbedPlayer.AttributionButton', false );
        mw.setConfig( 'EmbedPlayer.NativeControlsMobileSafari', false );
        mw.setConfig('EmbedPlayer.Attributes', {"autoplay":true} );                                            
</script>  

<script type='text/javascript'>
                        var flashvars = {};
                        flashvars.autoPlay = "true";
                        flashvars.loop = "true";
                        flashvars.entryId = "0_loumq27a;
                        flashvars.sourceType = "entryId";
                        flashvars.widgetId = "_100";
                        flashvars.partnerId = "100";
                        flashvars.host = "media.mydomainhere.com";
                        flashvars.externalInterfaceDisabled = "false";
                        var params = {};
                        params.quality = "best";
                        params.wmode = "opaque";
                        params.allowfullscreen = "true";
                        params.allowscriptaccess = "always";
                        var attributes = {};
                        attributes.id = "thevideo";
                        attributes.name = "thevideo";
                        attributes.styleclass = "player";
                        swfobject.embedSWF("http://media.mydomainhere.com/index.php/kwidget/cache_st/1322069743/wid/_100/uiconf_id/4421531/", "thevideo", "640", "386", "10.0.0", "js/expressInstall.swf", flashvars, params, attributes);
</script>

The HTML

<div id="thevideo"">                                   
</div>