input audio and video in html

Solutions on MaxInterview for input audio and video in html by the best coders in the world

showing results for - "input audio and video in html"
Minnie
10 Apr 2018
1<!DOCTYPE HTML>
2
3<html>
4   <body>
5      
6      <audio controls autoplay>
7         <source src = "/html5/audio.ogg" type = "audio/ogg" />
8         <source src = "/html5/audio.wav" type = "audio/wav" />
9         Your browser does not support the <audio> element.
10      </audio>
11      
12   </body>
13</html>