How to play audio and video in html
Audio Preview
Note: The audio tag is not supported in Internet Explorer 8 and earlier versions.
Example
An audio file that will automatically start playing:
<audio controls autoplay>
<source src="audio.ogg" type="audio/ogg">
<source src="audio.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Video Preview
Note: The video tag is not supported in Internet Explorer 8 and earlier versions.
Example
Play a video:
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
More information see audio and video
-
Convert media free, fast and online. No software installation needed.