Question

I have a video that plays in all browsers on Windows. On a Mac, it fails to play in Safari and Firefox. Here is a screenshot of the console error that it throws in Safari:

Here is a snippet of the code:

$(document).ready(function () {
    jwplayer("video").setup({ 
    file: "<%= _VideoNode.GetStringValue("YoutubeLink", string.Empty) %>", 
    'controlbar': 'bottom', 
    'height': '360', 
    'width': '640', 
    'skin': '<%= ResolveUrl( "~/App/Styles/video/skin.xml" ) %>' 
     }); 
});

and here is a link where you can find a video that uses this code block http://clarkdev.theatomgroup.com/visit/planvisit/guidelines

Was it helpful?

Solution

Installing flash on the mac solved the problem. Google Chrome comes with flash built into the browser.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top