1 <html> 2 <script> 3 function play(media_file) { 4 player.src = media_file; 5 } 6 </script> 7 <body> 8 <video id="player" autoplay controls width='640' height='480'></video> 9 </body> 10 </html> 11