php - I want to play audio video files of all formats on my website -
i want play audio video files on website.plz me make possible. u can suggest me player name or piece of code.
i using code onlny supporting mp3 , mp4 format.
<div class="content-top"> <div class="wrap">  <div class="section group">  <?php echo $typehtml;?>  </div>  <video width="640" height="360" controls>  <source src="admin/audiovideo/<?php echo $videoname;?>" type="video/mp4" /> <source src="__video__.ogv" type="video/ogg" />  <object width="640" height="360" type="application/x-shockwave-flash" data="__flash__.swf">     <param name="movie" value="__flash__.swf" />     <param name="flashvars" value="controlbar=over&image=__poster__.jpg&file=__video__.mp4" />     <param name="movie" value="__flash__.swf" />     <param name="flashvars" value="controlbar=over&image=__poster__.jpg&file=__video__.flv" />     <param name="movie" value="__flash__.swf" />     <param name="flashvars" value="controlbar=over&image=__poster__.jpg&file=__audio__.mp3" />     <!-- fallback image. note title field below, put title of video there -->     <img src="__video__.jpg" width="640" height="360" alt="__title__"          title="no video playback capabilities, please download video below" /> </object> </video>  </div> </div>      
try this
<!doctype html>  <html>  <body>   <button onclick="changesource()" type="button">change video</button> <br>  <video id="video1" controls="controls" autoplay="autoplay">   <source id="mp4_src" src="mov_bbb.mp4" type="video/mp4">   <source id="ogg_src" src="mov_bbb.ogg" type="video/ogg">   browser not support html5 video. </video>  <script>  function changesource()   {    document.getelementbyid("mp4_src").src="movie.mp4";   document.getelementbyid("ogg_src").src="movie.ogg";   document.getelementbyid("video1").load();   }  </script>   <p>video courtesy of <a href="http://www.bigbuckbunny.org/" target="_blank">big buck bunny</a>.</p>  </body>  </html>   link http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_av_met_load
Comments
Post a Comment