Having issues when HTML5 loads video in IE11-Invalid Source, and in Safari-Missing Plugin -
Having issues when HTML5 loads video in IE11-Invalid Source, and in Safari-Missing Plugin -
we learning utilize html5, css, , css3. if able help me this, please specific can be, , please include couple of screen-shots if possible.
i coded html5 embedded video shows poster image of video @ first (before embed video tag. before, , after, embed video displays invalid source. happens in ie , safari (safari says missing plugin). have ie11, chrome, safari, , firefox installed have issues in ie , safari. tested in chrome , firefox. whatever reason, in safari says missing plugin. of this, on top of "invalid source" ie11. help appreciated! i've attached code.
<!doctype html> <html lang="en"> <head> <title>lighthouse cruise</title> <meta charset="utf-8"> <h1>lighthouse cruise</h1> <style> video { width: 100%; height: auto; max-width: 320px; } </style> </head> <body> <video controls="controls" poster="lighthouse.jpg"> <source src="lighthouse.mv4" type="video/mp4"> <source src="lighthouse.ogv" type="video/ogg"> <embed type="application/x-shockwave-flash" src="lighthouse.swf" quality="high" width="320" height="240" title="door county lighthouse cruise"> </video> </body> </html>
wow, never expected post question, , come 9 hours later reply myself lol. so, here's solution:
note mv4 extension in first source element. corrected read, m4v. works fine after load blocked content. anyway.
html5 safari
Comments
Post a Comment