jquery sg video

jquery sg video

  1. var myVideo = {
  2. 'ogg': (source + '.ogv'), 
  3. 'h264': (source + '.m4v'), 
  4. 'webm': (source + '.webm'),
  5. 'swf': (source + '.swf') 
  6. }
  7. var options = {
  8. width: ($('#content').height() * .75) * 1.11111,
  9. height: $('#content').height() * .75
  10. }
  11. $('#videoContainer').video(myVideo,options);

Having issues with the video plugin for jQuery. This works great for Chrome but not Safari or Firefox. In Firefox it just shows up as a grey box with a light grey 'X' in the middle, and in Safari as nothing. I'm guessing it's something about the MIME but I have no idea what to do about that.