s4

diff examples/common/default/videoplay.m4.html @ 996:a50f5b0b2c3d

Media player built in viewer box
author HIROSE Yuuji <yuuji@gentei.org>
date Sun, 16 Oct 2022 07:56:34 +0859
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/examples/common/default/videoplay.m4.html	Sun Oct 16 07:56:34 2022 +0859
     1.3 @@ -0,0 +1,31 @@
     1.4 +Content-type: _CONTENT_TYPE_
     1.5 +
     1.6 +<!DOCTYPE html>
     1.7 +<html>
     1.8 +<head><title>_TITLE_</title>
     1.9 +<meta charset="utf-8">
    1.10 +<style type="text/css">
    1.11 +background: {#eee;}
    1.12 +video#video {max-width: 720px;}
    1.13 +</style>
    1.14 +</head>
    1.15 +<body>
    1.16 +<h1>_TITLE_</h1>
    1.17 +<video id="video" controls>
    1.18 +<source src="_SRC_">
    1.19 +</video>
    1.20 +<table>
    1.21 + <tr><td>再生速度/Speed</td><td>音量/Volume</td></tr>
    1.22 + <tr><td id="speedval"></td><td id="volval"></td></tr>
    1.23 + <tr><td><input type="range" value="100" id="speed" min="50" max="200"></td>
    1.24 +  <td><input type="range" value="100" id="volume" min="0" max="100"></td></tr>
    1.25 +</table>
    1.26 +<p>
    1.27 +
    1.28 +
    1.29 +<span id="speedval"></span>
    1.30 +</p>
    1.31 +<script type="text/javascript" src="s4-media.js"></script>
    1.32 +
    1.33 +</body>
    1.34 +</html>