11 lines
185 B
HTML
11 lines
185 B
HTML
<html>
|
|
<script>
|
|
function play(media_file) {
|
|
player.src = media_file;
|
|
}
|
|
</script>
|
|
<body>
|
|
<video id="player" autoplay controls width='640' height='480'></video>
|
|
</body>
|
|
</html>
|