forked from gpac/mp4box.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
175 lines (172 loc) · 9.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>MP4Box.js - JavaScript MP4 Reader/Fragmenter</title>
<!-- Include basic JQuery and JQuery UI files -->
<script src="lib/jquery/jquery.js"></script>
<link href="lib/jquery-ui/jquery-ui.min.css" rel="stylesheet" type="text/css">
<script src="lib/jquery-ui/jquery-ui.min.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="../dist/mp4box.all.js"></script>
<script src="downloader.js"></script>
<script src="sample-urls.js"></script>
<script src="movieInfoDisplay.js"></script>
<script src="index.js"></script>
</head>
<body>
<div>
<!-- GitHub Fork Me Ribbon -->
<a href="https://github.com/gpac/mp4box.js"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub" ></a>
<!-- GitHub Stat Buttons -->
<div style="position: absolute; top: 10px; right: 150px; border: 0;" >
<a class="github-button" href="https://github.com/gpac/mp4box.js" data-style="mega" data-count-href="/gpac/mp4box.js/stargazers" data-count-api="/repos/gpac/mp4box.js#stargazers_count">Star</a>
<a class="github-button" href="https://github.com/gpac/mp4box.js/fork" data-style="mega" data-count-href="/gpac/mp4box.js/network" data-count-api="/repos/gpac/mp4box.js#forks_count">Fork</a>
<a class="github-button" href="https://github.com/gpac/mp4box.js" data-style="mega" data-count-href="/gpac/mp4box.js/watchers" data-count-api="/repos/gpac/mp4box.js#subscribers_count">Watch</a>
<script async defer id="github-bjs" src="https://buttons.github.io/buttons.js"></script>
</div>
<h3>MP4Box.js / Playing any MP4 in your browser (see also <a href="filereader.html">File Analyzer</a>)</h3>
<div style="position: relative; width: 50%; height: 50%">
<video id="v" autoplay controls poster="http://gpac.wp.mines-telecom.fr/files/2014/01/FondBig_1600x230.png"> </video>
<div id="overlayTracks" style="position: absolute; top: 0px; width: 100%; height: 95%;">
</div>
</div>
<div id="progressbar"><div id="progress-label" style="text-align: center;"></div></div>
<div id="tabs">
<ul>
<li><a href="#tabs-1">Player Controls</a></li>
<li><a href="#infoDiv">Media Info</a></li>
<li><a href="#tabs-2">Download Settings</a></li>
<li><a href="#tabs-3">Segmentation/Extraction Settings</a></li>
<li><a href="#tabs-4">Debug Settings</a></li>
<li><a href="#tabs-5">Instructions & Notes</a></li>
<li><a href="#html5MediaDiv">HTML5 MediaElement Track Info</a></li>
</ul>
<div id="tabs-1">
<fieldset>
<legend>Select or set URL:</legend>
<select id="urlSelector" onchange="setUrl(this.value);" onfocus="this.selectedIndex = -1;">
</select>
<label>URL:</label>
<input id="url" type="text" oninput="document.getElementById('urlSelector').selectedIndex = -1; setUrl(this.value);">
</fieldset>
<fieldset>
<legend>Download/Playback Controls</legend>
<button id="playButton" onclick="play()" disabled>Play</button>
<button id="loadButton" onclick="load()" disabled>Load Media Info</button>
<button id="initAllButton" onclick="initializeAllSourceBuffers()" disabled>Add and Initialize All Source Buffers</button>
<button id="initButton" onclick="initializeSourceBuffers()" disabled>Initialize Source Buffers</button>
<button id="startButton" onclick="start()" disabled>Load Media Data & Play</button>
<button id="stopButton" onclick="stop()" disabled>Stop Media Download</button>
<button onclick="reset()">Reset</button><br>
<label for="playback_rate_range">Playback Rate</label>
<input id="playback_rate_range" name="playback_rate_range" type="range" min="1" max="20" step="1" value="1" oninput="setPlaybackRate(this.value);">
<output id="playback_rate_range_out" for="playback_rate_range">1</output>
</fieldset>
</div>
<div id="infoDiv">
</div>
<div id="html5MediaDiv">
</div>
<div id="tabs-2">
<div>
<label for="chunk_size_range">Download Rate: <span id="chunk_dl_rate">8000</span> kbps</label>
</div>
<div>
<label for="chunk_size_range">Download Chunk Size (bytes)</label>
<input id="chunk_size_range" name="chunk_size_range" type="range" min="0" max="10000000" step="1000" value="1000000" oninput="setDownloadChunkSize(value);">
<output id="chunk_size_range_out" for="chunk_size_range">1000000</output>
</div>
<div id="dlTimeout">
<label for="chunk_size_range">Download Timeout (milliseconds)</label>
<input id="chunk_speed_range" name="chunk_speed_range" type="range" min="0" max="10000" step="100" value="500" oninput="setDownloadTimeout(this.value);">
<output id="chunk_speed_range_out" for="chunk_speed_range">500</output>
</div>
<div>
<label for="dl_realtime">Real-time Download</label>
<input id="dl_realtime" name="dl_realtime" type="checkbox" onchange="toggleDownloadMode(event);">
</div>
</div>
<div id="tabs-3">
<label for="segment_size_range">Number of Media Samples per Segment for MSE appendBuffer</label>
<input id="segment_size_range" name="segment_size_range" type="range" min="1" max="5000" step="1" value="1000" oninput="setSegmentSize(this.value);">
<output id="segment_size_range_out" for="segment_size_range">1000</output>
<br>
<label for="extraction_size_range">Number of TextTrack Samples per Extraction Callback</label>
<input id="extraction_size_range" name="extraction_size_range" type="range" min="1" max="100" step="1" value="1" oninput="setExtractionSize(this.value);">
<output id="extraction_size_range_out" for="extraction_size_range">1</output>
</div>
<div id="tabs-4">
<div>
<label>Set Log Level:</label>
<select id="logLevelSelect" onchange="Log.setLogLevel(Log[this.value]);" onfocus="this.selectedIndex = -1;">
<option value="error">Error</option>
<option value="warn">Warning</option>
<option value="info" selected>Info</option>
<option value="debug">Debug (can be slow!)</option>
</select>
</div>
<div>
<label>Save Segments:</label>
<input id="saveChecked" type="checkbox">
</div>
</div>
<div id="tabs-5">
<h3>Instructions</h3>
<p>To run this demo (in Chrome or Firefox), you should:</p>
<ol>
<li>Select an existing file or enter a URL. <br>
Be careful to select a video hosted on a server which allows this page
to fetch those videos using XHR (i.e. using CORS) or run Chrome in command
line with the --test-type and --disable-web-security switches.</li>
<li>Optionally change some settings:
<ul>
<li>Download Settings:
<ul>
<li>Select a chunk size for the download of the media file. 0 means fetching the whole file in one XHR.</li>
<li>Select the timeout between two chunk downloads (the associated bitrate is computed and displayed)</li>
<li>You can alternatively select the real-time download: the timeout for download is computed based on the buffer state and playback rate</li>
</ul>
</li>
<li>Segmentation Settings: change the number of frames used to created a media segment. A small number means a lot of processing for the browser via MSE. A large number means additional latency before the initial playback.</li>
<li>Debug Settings:
<ul>
<li>Save Results: will download a file on your computer for each created segment !</li>
<li>Log level: error, warning, info or debug messages are output in the debug console.</li>
</ul>
</li>
</ul>
</li>
<li>Then either hit the "Play" button and let the file download and play, or control individually each step:
<ol>
<li>Hit the "Load Media Info" button. Chunks will be downloaded until there is enough data to display the file information.</li>
<li>Once the file information is displayed, select the tracks you want to play. For each track a SourceBuffer or a TextTrack is created.</li>
<li>Once your tracks are selected, initialize the Source Buffers with the "Initialize Source Buffers" button. (You can also hit the "Add and Initialize All Source Buffers". This will select all tracks and try to create a SourceBuffer for it. Might not work for all files!)</li>
<li>Then hit the "Load Media Data & Play" button to resume the download and let the playback start.</li>
</ol>
</li>
<li>At any time, you can:
<ul>
<li>hit the "Stop Media Download" button and then "Load Media Data & Play" again when ready.</li>
<li>hit the "Reset" button to select a different URL.</li>
<li>seek into the video using the timeline.</li>
<li>change the playback rate of the video.</li>
</ul>
</li>
</ol>
<h3>Notes</h3>
<ul>
<li>The Media Source API in Chrome has some limitations, which you might encounter when playing with this demo:
<ul>
<li>It does not support more than 1 video and 1 audio</li>
<li>It does not support adding new SourceBuffers once the existing SourceBuffers are initialized. But you can remove some, even during playback.</li>
</ul>
</li>
</ul>
<h3>Feedback</h3>
<p>To get the code of this demo, or to send patchs or feedback, check out the <a href="https://github.com/gpac/mp4box.js">Git Hub Repository</a>.</p>
</div>
</div>
</div>
</body>
</html>