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

有帮助吗?

解决方案

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top