You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the video-source contains codec-information, the flash-fallback won't work, e.g.:
‹source type='video/mp4; codecs="avc1.64001E, mp4a.40.2"' src="..."›
Suggested fix:
vjs.Flash.canPlaySource = function(srcObj){
var type = srcObj.type.replace(/;.*/,'');
if (type in vjs.Flash.formats || type in vjs.Flash.streamingFormats) { return 'maybe'; }
};
The text was updated successfully, but these errors were encountered:
If the video-source contains codec-information, the flash-fallback won't work, e.g.:
‹source type='video/mp4; codecs="avc1.64001E, mp4a.40.2"' src="..."›
Suggested fix:
The text was updated successfully, but these errors were encountered: