html5 - HTML Video not playing online in chrome but does play locally in chrome -


<html>    <head>          <link rel="stylesheet" type="text/css" href="video.css">    </head>    <body>         <div id="banner" class="headercontent">       <div id="header">         <div id="headercontent" class="headercontent">           <video autoplay   id="awsome_video" >                <source src="http://derrylahan.comze.com/promo.mp4" type="video/mp4">         </video>         <div class="overlay">            <h1 id="rowdy"> rowdy rondy rousey </h1>            <a href="test.html" id="enter">enter</a>            </div>         </div>      </div>      </body> </html>  

this code works mp4 video not 1 ideas ?

thanks in advance works fine off line not on server im using 000webhost free hosting

when open inspect element on chrome , @ network can see things loading message " failed write temp file: requested file or directory not found @ time operation processed." displayed @ bottom of screen

also got information inspect element

resource interpreted document transferred mime type video/mp4: "http://derrylahan.comze.com/ufcr.mp4". navigated http://derrylahan.comze.com/ufcr.mp4

please check out

<html>    <head>          <link rel="stylesheet" type="text/css" href="video.css">    </head>    <body>         <div id="banner" class="headercontent">       <div id="header">         <div id="headercontent" class="headercontent">           <video autoplay   id="awsome_video"  width="320" height="240" controls>    <source src="http://derrylahan.comze.com/promo.mp4" type="video/mp4">         </video>         <div class="overlay">            <h1 id="rowdy"> rowdy rondy rousey </h1>            <a href="test.html" id="enter">enter</a>            </div>         </div>      </div>      </body> </html>  

Comments

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -