forked from Dash-Industry-Forum/dash.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
566 lines (516 loc) · 31.1 KB
/
index.html
File metadata and controls
566 lines (516 loc) · 31.1 KB
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Dash JavaScript Player</title>
<meta name="description" content="" />
<link rel="icon" type="image/png" href="http://dashpg.com/w/2012/09/dashif.ico" />
<!--
JSLint
Directive:
/*jslint bitwise: true, continue: false, nomen: true, regexp: true, todo: true */
Allowed Globals:
(javascript) $ alert console setInterval clearInterval
(libraries) Q dijon ObjectIron X2JS
(player) MediaPlayer Dash
-->
<!-- http://designmodo.com/flat-free/ -->
<link href="app/lib/flat/css/bootstrap.css" rel="stylesheet">
<link href="app/lib/flat/css/flat-ui.css" rel="stylesheet">
<!-- http://www.kendoui.com/web.aspx -->
<link href="app/lib/kendo/kendo.common.min.css" rel="stylesheet">
<link href="app/lib/kendo/kendo.default.min.css" rel="stylesheet">
<!-- Application -->
<link href="app/css/main.css" rel="stylesheet">
<!-- Libraries -->
<!-- http://jquery.com/ -->
<script src="app/lib/jquery/js/jquery-1.8.3.min.js"></script>
<script src="app/lib/jquery/js/jquery-ui-1.9.2.custom.min.js"></script>
<!-- http://www.kendoui.com/web.aspx -->
<script src="app/lib/kendo/kendo.web.min.js"></script>
<!-- http://www.flotcharts.org/ -->
<script src="app/lib/flot/jquery.flot.js"></script>
<!-- http://designmodo.com/flat-free/ -->
<script src="app/lib/flat/js/jquery.dropkick-1.0.0.js"></script>
<script src="app/lib/flat/js/custom_checkbox_and_radio.js"></script>
<script src="app/lib/flat/js/custom_radio.js"></script>
<script src="app/lib/flat/js/jquery.tagsinput.js"></script>
<script src="app/lib/flat/js/bootstrap-tooltip.js"></script>
<script src="app/lib/flat/js/jquery.placeholder.js"></script>
<!-- https://github.com/kriskowal/q -->
<script src="app/lib/q.js"></script>
<!-- https://github.com/creynders/dijon-framework -->
<script src="app/lib/dijon.js"></script>
<!-- Misc Libs -->
<script src="app/lib/xml2json.js"></script>
<script src="app/lib/objectiron.js"></script>
<script src="app/lib/long.js"></script>
<script src="app/lib/Math.js"></script>
<!-- Player -->
<script src="app/js/streaming/MediaPlayer.js"></script>
<script src="app/js/streaming/Context.js"></script>
<script src="app/js/streaming/ErrorHandler.js"></script>
<script src="app/js/streaming/Capabilities.js"></script>
<script src="app/js/streaming/Debug.js"></script>
<script src="app/js/streaming/VideoModel.js"></script>
<script src="app/js/streaming/vo/SegmentRequest.js"></script>
<script src="app/js/streaming/ManifestLoader.js"></script>
<script src="app/js/streaming/ManifestUpdater.js"></script>
<script src="app/js/streaming/ManifestModel.js"></script>
<script src="app/js/streaming/MediaSourceExtensions.js"></script>
<script src="app/js/streaming/SourceBufferExtensions.js"></script>
<script src="app/js/streaming/VideoModelExtensions.js"></script>
<script src="app/js/streaming/BufferExtensions.js"></script>
<script src="app/js/streaming/FragmentController.js"></script>
<script src="app/js/streaming/AbrController.js"></script>
<script src="app/js/streaming/FragmentLoader.js"></script>
<script src="app/js/streaming/Stream.js"></script>
<script src="app/js/streaming/BufferController.js"></script>
<script src="app/js/streaming/rules/SwitchRequest.js"></script>
<script src="app/js/streaming/rules/DownloadRatioRule.js"></script>
<script src="app/js/streaming/rules/InsufficientBufferRule.js"></script>
<script src="app/js/streaming/rules/LimitSwitchesRule.js"></script>
<script src="app/js/streaming/rules/BaseRulesCollection.js"></script>
<!-- Metrics -->
<script src="app/js/streaming/vo/MetricsList.js"></script>
<script src="app/js/streaming/MetricsModel.js"></script>
<script src="app/js/streaming/vo/metrics/BufferLevel.js"></script>
<script src="app/js/streaming/vo/metrics/HTTPRequest.js"></script>
<script src="app/js/streaming/vo/metrics/PlayList.js"></script>
<script src="app/js/streaming/vo/metrics/RepresentationSwitch.js"></script>
<script src="app/js/streaming/vo/metrics/TCPConnection.js"></script>
<script src="app/js/streaming/vo/metrics/DroppedFrames.js"></script>
<!-- Dash -->
<script src="app/js/dash/Dash.js"></script>
<script src="app/js/dash/DashContext.js"></script>
<script src="app/js/dash/vo/Segment.js"></script>
<script src="app/js/dash/DashParser.js"></script>
<script src="app/js/dash/DashHandler.js"></script>
<script src="app/js/dash/BaseURLExtensions.js"></script>
<script src="app/js/dash/FragmentExtensions.js"></script>
<script src="app/js/dash/DashManifestExtensions.js"></script>
<script src="app/js/dash/DashMetricsExtensions.js"></script>
<script src="app/js/dash/DashMetricsConverter.js"></script>
<!-- App -->
<script src="app/js/main.js"></script>
</head>
<body onload="init()">
<div class="container">
<div class="row title-header">
<h3 class="demo-panel-title-header">DASH IF Reference Client</h3>
<a href="http://dashif.org/" target="_blank"><img class="image" src="app/img/if.png"/></a>
</div>
<div class="row">
<div class="span6">
<select id="sources" class="span6">
<!--
NOTE:
The data-channels attribute corresponds to the Chrome Browser release in which the feed
will play in.
b -> Beta
c -> Canary
d -> Development
s -> Stable
-->
<!--
<option data-channels="" value="sony_dp">Sony DP</option>
-->
<option data-channels="" value="fraunhofer_480p_heacc2_0_dream">Fraunhofer - HEACC 2.0 - Dream</option>
<option data-channels="" value="fraunhofer_480p_heacc2_0_sintel">Fraunhofer - HEACC 2.0 - Sintel</option>
<option data-channels="" value="fraunhofer_480p_heacc5_1_6chId">Fraunhofer - HEACC 5.1 - 6 CH ID</option>
<option data-channels="" value="fraunhofer_480p_heacc5_1_dream">Fraunhofer - HEACC 5.1 - Dream</option>
<option data-channels="" value="fraunhofer_480p_heacc5_1_sintel">Fraunhofer - HEACC 5.1 - Sintel</option>
<option data-channels="" value="fraunhofer_480p_heacc7_1_8chId">Fraunhofer - HEACC 7.1 - 8 CH ID</option>
<option data-channels="" value="fraunhofer_480p_mps5_0_6chId">Fraunhofer - MPS 5.0 - 6 CH ID</option>
<option data-channels="" value="fraunhofer_480p_mps5_0_dream">Fraunhofer - MPS 5.0 - Dream</option>
<option data-channels="" value="fraunhofer_480p_mps5_0_sintel">Fraunhofer - MPS 5.0 - Sintel</option>
<option data-channels="" value="fraunhofer_audio_only_dream">Fraunhofer - Audio Only - Dream</option>
<option data-channels="" value="fraunhofer_audio_only_sintel">Fraunhofer - Audio Only - Sintel</option>
<option data-channels="" value="ipvidnetLive">Path 1 Live</option>
<option data-channels="" value="uspLive">Unified Streaming Live</option>
<option data-channels="" value="wowzaList">Wowza SegmentList</option>
<option data-channels="" value="wowzaTemplate">Wowza SegmentTemplate</option>
<option data-channels="" value="wowzaTimeline">Wowza SegmentTimeline</option>
<option data-channels="" value="thomsonLive">Thomson Live</option>
<option data-channels="" value="mediaExcelLive1">Media Excel Live 1</option>
<option data-channels="" value="mediaExcelLive2">Media Excel Live 2</option>
<!--<option data-channels="" value="live">Live</option>-->
<option data-channels="cd" value="archive">Live Archive</option>
<option data-channels="cdsb" value="envivio" selected="selected">Envivio</option>
<option data-channels="cdsb" value="list">Segment List</option>
<option data-channels="cdsb" value="template">Segment Template</option>
<option data-channels="cdsb" value="timeline">Unified Streaming - Timeline</option>
<!--<option data-channels="" value="youtube">YouTube SegmentBase</option>--> <!-- Invalid manifest, wrong audio codec. Should be mp4a.40.2. -->
<option data-channels="cd" value="microsoft1">Microsoft #1</option>
<option data-channels="cd" value="microsoft2">Microsoft #2</option>
<option data-channels="cd" value="microsoft3">Microsoft #3</option>
<option data-channels="cd" value="microsoft4">Microsoft #4</option>
<option data-channels="cd" value="microsoft5">Microsoft #5</option>
<option data-channels="" value="microsoftCenc1">Microsoft Cenc #1</option>
<option data-channels="" value="microsoftCenc2">Microsoft Cenc #2</option>
<option data-channels="" value="microsoftCenc3">Microsoft Cenc #3</option>
<option data-channels="" value="microsoftCenc4">Microsoft Cenc #4</option>
<option data-channels="" value="microsoftCenc5">Microsoft Cenc #5</option>
<option data-channels="" value="microsoftCenc6">Microsoft Cenc #6</option>
<option data-channels="cdsb" value="1a-netflix">DASH-AVC/264 – test vector 1a - Netflix</option>
<option data-channels="cd" value="1a-sony">DASH-AVC/264 – test vector 1a - Sony</option>
<option data-channels="cd" value="1b-envivio">DASH-AVC/264 – test vector 1b - Envivio</option>
<option data-channels="cd" value="1b-thomson">DASH-AVC/264 – test vector 1b - Thomson</option>
<option data-channels="" value="1c-envivio">DASH-AVC/264 – test vector 1c - Envivio</option>
<option data-channels="cd" value="2a-envivio">DASH-AVC/264 – test vector 2a - Envivio</option>
<option data-channels="cd" value="2a-sony">DASH-AVC/264 – test vector 2a - Sony</option>
<option data-channels="" value="2a-thomson">DASH-AVC/264 – test vector 2a - Thomson</option>
<option data-channels="" value="3a-fraunhofer">DASH-AVC/264 – test vector 3a - Fraunhofer</option>
<option data-channels="" value="3b-fraunhofer">DASH-AVC/264 – test vector 3b - Fraunhofer</option>
<option data-channels="cd" value="3b-sony">DASH-AVC/264 – test vector 3b - Sony</option>
<option data-channels="cd" value="4b-sony">DASH-AVC/264 – test vector 4b - Sony</option>
<option data-channels="cd" value="5a-thomson/envivio">DASH-AVC/264 – test vector 5a - Thomson/Envivio</option>
<option data-channels="cd" value="5b-thomson/envivio">DASH-AVC/264 – test vector 5b - Thomson/Envivio</option>
<option data-channels="" value="6c-envivio1">DASH-AVC/264 – test vector 6c - Envivio Manifest 1</option>
<option data-channels="" value="6c-envivio2">DASH-AVC/264 – test vector 6c - Envivio Manifest 2</option>
</select>
</div>
<div class="span4"></div>
<div class="span2">
<button type="button" class="btn btn-large" style="width: 100%;" onclick="load()">Load</button>
</div>
</div>
<div class="row">
<div class="span11">
<input class="span11" type="text" id="custom-source" placeholder="MPD Location"/>
</div>
<div class="span1">
<label class="checkbox" for="live-checkbox" style="margin-top: 10px;">
<input type="checkbox" value="" id="live-checkbox"/>
Live
</label>
</div>
</div>
<div class="row" style="margin-top: 10px;">
<div class="span9" style="float: left;">
<div class="dash-video-player">
<video controls="true"></video>
</div>
</div>
<div class="span3">
<div class="statsbox" style="height: 28px;">
<span class="stats-label" style="line-height: 28px;">ABR</span>
<div class="toggle" style="float: right;">
<label class="toggle-radio" for="abr-auto-on">ON</label>
<input type="radio" name="abr-auto" id="abr-auto-on" value="true" checked="true">
<label class="toggle-radio" for="abr-auto-off">OFF</label>
<input type="radio" name="abr-auto" id="abr-auto-off" value="false">
</div>
</div>
</div>
<div class="span3">
<div class="statsbox">
<i class="fui-video-16 btn btn-primary"></i>
<div class="btn-group" style="float: right;">
<div id="video-abr-down" class="btn small-btn btn-primary">
<div class="minus-symbol"></div>
</div>
<div id="video-abr-up" class="btn small-btn btn-primary">
<div class="plus-symbol"></div>
</div>
</div>
<br style="clear: both;"/>
<div style="padding-right: 13px;">
<span class="stats-label palette-text-pumpkin" style="float: left;" id="video-value">0 kbps</span>
</div>
<br style="clear: both;"/>
<span class="stats-label">Rep Index: </span>
<span class="stats-label palette-text-firm-dark" id="video-index">0</span>
<span class="stats-label palette-text-wisteria" id="video-pending-index"></span>
<span class="stats-label">/</span>
<span class="stats-label palette-text-firm-dark" id="num-video-bitrates">0</span>
<br style="clear: both;"/>
<span class="stats-label">Buffer Length: </span>
<span class="stats-label palette-text-info-dark" id="video-buffer">0</span>
<br style="clear: both;"/>
<span class="stats-label">Dropped Frames: </span>
<span class="stats-label palette-text-night" id="video-dropped-frames">0</span>
</div>
<div class="statsbox">
<i class="fui-volume-16 btn btn-primary"></i>
<div class="btn-group" style="float: right;">
<div id="audio-abr-down" class="btn small-btn btn-primary">
<div class="minus-symbol"></div>
</div>
<div id="audio-abr-up" class="btn small-btn btn-primary">
<div class="plus-symbol"></div>
</div>
</div>
<br style="clear: both;"/>
<div style="padding-right: 13px;">
<span class="stats-label palette-text-pumpkin" style="float: left;" id="audio-value">0 kbps</span>
</div>
<br style="clear: both;"/>
<span class="stats-label">Rep Index: </span>
<span class="stats-label palette-text-firm-dark" id="audio-index">0</span>
<span class="stats-label palette-text-wisteria" id="audio-pending-index"></span>
<span class="stats-label">/</span>
<span class="stats-label palette-text-firm-dark" id="num-audio-bitrates">0</span>
<br style="clear: both;"/>
<span class="stats-label">Buffer Length: </span>
<span class="stats-label palette-text-alizarin" id="audio-buffer">0</span>
<br style="clear: both;"/>
<span class="stats-label">Dropped Frames: </span>
<span class="stats-label palette-text-night" id="audio-dropped-frames">0</span>
</div>
</div>
</div>
<div class="row" style="margin-top: 10px;">
<div id="graph-header" class="span12 tooltip-box tooltip-box-top">
<h3 class="tooltip-box-header" style="margin-left: 10px;">Buffer</h3>
<div style="padding-top: 10px; padding-right: 10px;">
<div class="toggle" style="float: right; ">
<label class="toggle-radio" for="hide-graph">HIDE</label>
<input type="radio" name="graph-toggle" id="hide-graph" value="true">
<label class="toggle-radio" for="show-graph">SHOW</label>
<input type="radio" name="graph-toggle" id="show-graph" value="false" checked="true">
</div>
</div>
</div>
<div id="graph-body" class="span12 tooltip-box tooltip-box-bottom" style="height:185px;">
<div id="buffer-placeholder" class="graph-placeholder">
<div id="buffer-container" class="display-graph"></div>
</div>
</div>
</div>
<div class="row" style="margin-top: 10px;">
<div id="debug-header" class="span12 tooltip-box tooltip-box-top">
<h3 class="tooltip-box-header" style="margin-left: 10px;">Debug</h3>
<div style="padding-top: 10px; padding-right: 10px;">
<div class="toggle" style="float: right; ">
<label class="toggle-radio" for="hide-debug">HIDE</label>
<input type="radio" name="debug-toggle" id="hide-debug" value="true">
<label class="toggle-radio" for="show-debug">SHOW</label>
<input type="radio" name="graph-toggle" id="show-debug" value="false" checked="true">
</div>
</div>
</div>
<div id="debug-body" class="span12 tooltip-debug-box tooltip-box-bottom">
<div class="btn-toolbar" style="float: left; padding-left: 10px;">
<div class="btn-group">
<a id="debug-log-btn" class="btn btn-primary active" href="#">Debug Console</a>
<a id="video-metrics-btn" class="btn btn-primary" href="#">Video Metrics</a>
<a id="audio-metrics-btn" class="btn btn-primary" href="#">Audio Metrics</i></a>
<a id="release-notes-btn" class="btn btn-primary" href="#">Release Notes</a>
</div>
</div>
<div style="width: 900px;">
<div id="debug-log-tab" class="tab-content">
<div class="btn btn-primary" id="debug-clear" style="float: left; margin-right: 10px;">Clear</div>
<label class="checkbox" for="debug-enabled-toggle" style="float: left;">
<input type="checkbox" id="debug-enabled-toggle">
Enabled
</label>
<input type="text" id="filter-source" placeholder="filter" style="float: right; margin-right: 20px;"/>
<div id="debug_log" style="height: 425px; width: 900px; overflow: auto; clear: both;">
<dt>Waiting...</dt>
</div>
</div>
<div id="video-metrics-tree-tab" class="tab-content">
<div class="btn btn-primary" id="videoMetricsUpdateButton">Update</div>
<div id="videoMetricsTree" style="height: 425px; width: 900px;"></div>
</div>
<div id="audio-metrics-tree-tab" class="tab-content">
<div class="btn btn-primary" id="audioMetricsUpdateButton">Update</div>
<div id="audioMetricsTree" style="height: 425px; width: 900px;"></div>
</div>
<div id="release-notes-tab" class="tab-content" style="height: 500px">
<div>
<b>Known Issues</b><br/>
Erratic playback at higher bitrates.<br/>
Streams using high profile codecs may not play properly.<br/>
You may get the error "Media Source Close" when attempting to switch bitrates.<br/>
Only streams with segmentAlignment="true" will work with abr.
</div>
<div>
<b>Release Notes v0.2.4</b><br/>
Added support for updateend event.<br/>
Added support for mpd url parameter (index.html?mpd=<mpd url>).<br/>
Added dash.min.js and dash.all.js<br/>
Extended logging in BufferController.<br/>
Improved shouldBufferMore calulation.<br/>
Improved getBufferLength calulation.<br/>
Improved validateInterval calulation.<br/>
Default in-page degbug logging to off.<br/>
Update the buffer length metrics even when shouldBufferMore is false.<br/>
Fix timescale defaults for SegmentTemplate.<br/>
Fix some seek bugs.<br/>
Fix some SIDX parse bugs.<br/>
</div>
<div>
<b>Release Notes v0.2.3</b><br/>
Change license header.<br/>
Add footer.<br/>
Add more live support. Still a work in progress.<br/>
Fix some bugs with the timeline.
</div>
<div>
<b>Release Notes v0.2.1</b><br/>
Add support for SegmentBase manifests with reference_type = 1. (Multi-level SIDX.)<br/>
Finish externalizing live toggle. The player no longer attempts to discover liveness from the manifest.<br/>
Add a live toggle to the main UI.<br/>
Fix an issue where a custom value in the text input was ignored.<br/>
Fixed some bugs and clean up the SIDX loading.<br/>
Clean up some of the UI.<br/>
Added some new MediaSource test pages.<br/>
Expanded test.html to work with byte ranges.<br/>
Redid how live works again to support particular streams. Live still needs more work.
</div>
<div>
<b>Release Notes v0.2.0</b><br/>
Live pass #3. More bugs fixed. More remain, but live streams should play.<br/>
Fix lots of bugs.<br/>
Clean up UI; condense information into a more usable format.<br/>
Add some UI bits to make things more clear.<br/>
Added test vectors to sources dropdown.<br/>
Clean up the filtering so that it doesn't bog down the stream as much.<br/>
Add test application to verify that fragments work with MediaSource.<br/>
Added ability to change streams without refreshing the page.<br/>
Better error messaging.
</div>
<div>
<b>Release Notes v0.1.2</b><br/>
Live pass #2. Working better, but still not done.<br/>
Live w/ SegmentTemplate is working pretty good.<br/>
Live support for other methods is spotty.<br/>
Implement manifest refreshing.<br/>
Add filter to debug window. **WARNING** Filtering has performance issues that still need to be sorted out.<br/>
Add trees to view metrics. **Must manually populate due to performance issues.**<br/>
Band-aid some VOD seeking bugs.<br/>
Implement use of presentation delay.</br>
Fix some bugs.
</div>
<div>
<b>Release Notes v0.1.1</b><br/>
Metrics first pass.<br/>
Live first pass (still not working).<br/>
ABR first pass.<br/>
If a buffer runs dry playback stalls until more data is loaded.<br/>
Fix some (maybe not all) performance issues.<br/>
Change copyright information.
</div>
<div>
<b>Release Notes v0.1.0</b><br/>
Major architecture changes.<br/>
Moved a lot of code around to make smaller overall objects.<br/>
Implemented Promises to make everything async.<br/>
Implemented DI for easy overriding of objects.<br/>
Added more logging.<br/>
<b>Metrics are not currently implemented.</b><br/>
<b>Auto ABR is not yet working due to metrics dependancy.</b>
</div>
<div>
<b>Release Notes v0.0.7</b><br/>
Changes for structure and contents of JavaScript files.</br>
<i>-Scope is now better isolated.</i></br>
<i>-Better patterns for object creation.</i></br>
<i>-Overall cleaner code.</i>
</div>
<div>
<b>Release Notes v0.0.6</b><br/>
UI changes.
</div>
<div>
<b>Release Notes v0.0.5</b><br/>
Flesh out abr support.<br/>
Add architecture for rule checking.<br/>
Add basic bandwidth rule.<br/>
<b>Introduced a limitation: only streams with segmentAlignment="true" will work with abr.</b>
</div>
<div>
<b>Release Notes v0.0.4</b><br/>
Add metrics bling.<br/>
Expose methods to change audio bitrate.<br/>
Play video automatically after loading completes.<br/>
</div>
<div>
<b>Release Notes v0.0.3</b><br/>
Handle BaseURL with no SegmentTemplate, SegmentList, or SegmentBase.<br/>
Handle SegmentBase nodes without an indexRange or initializationRange.<br/>
</div>
<div>
<b>Release Notes v0.0.2</b><br/>
Rearchitect the application for better extensibility.<br/>
Properly signal end of stream.<br/>
Add metrics tracking.<br/>
Add charts and tables with metrics info.<br/>
</div>
<div>
<b>Release Notes v0.0.1</b><br/>
Requires Chrome 24 or later.<br/>
Basic implements for the four fragment description types work.<br/>
<i>SegmentList</i><br/>
<i>SegmentTemplate</i><br/>
<i>SegmentTemplate with SegmentTimeline</i><br/>
<i>SegmentBase</i><br/>
</div>
</div>
</div>
</div>
</div>
<div class="row" style="height: 15px;"></div>
</div>
<footer>
<div class="container">
<div class="row">
<div class="span6">
<div class="footer-banner">
<h3 class="footer-title">Compatibility Notes:</h3>
<ul>
<li>A browser that supports MSE (Media Source Extensions) is required.</li>
<li>As of 5/13/13, Chrome is the only browser supported.</li>
<li>Use the most up-to-date version of Chrome for the best compatibility.</li>
<li>Many of the streams in the dropdown box only work in the developer channel or Canary version of Chrome.</li>
<li><a href="index.html?version=stable">Stable Chrome Streams</a></li>
<li><a href="index.html?version=beta">Beta Chrome Streams</a></li>
<li><a href="index.html?version=dev">Dev Chrome Streams</a></li>
<li><a href="index.html?version=canary">Canary Chrome Streams</a></li>
</ul>
</div>
</div>
<div class="span3">
<h3 class="footer-title">Libraries:</h3>
<a class="footer-brand" href="http://jquery.com/" target="_blank">
jquery
</a>
<a class="footer-brand" href="https://github.com/kriskowal/q" target="_blank">
q
</a>
<a class="footer-brand" href="https://github.com/creynders/dijon-framework" target="_blank">
dijon
</a>
<a class="footer-brand" href="http://pivotal.github.io/jasmine/" target="_blank">
jasmine
</a>
<a class="footer-brand" href="https://github.com/designmodo/Flat-UI" target="_blank">
flat ui
</a>
<a class="footer-brand" href="http://www.flotcharts.org/" target="_blank">
flot
</a>
<a class="footer-brand" href="http://www.kendoui.com/web.aspx" target="_blank">
kendo
</a>
</div>
<div class="span3">
<h3 class="footer-title">Contributors:</h3>
<a class="footer-brand" href="http://www.digitalprimates.net" target="_blank">
<img src="app/img/dp.png" alt="www.digitalprimates.net"/>
</a>
<a class="footer-brand" href="http://msopentech.com" target="_blank">
<img src="app/img/msopentech.jpg" alt="msopentech.com"/>
</a>
<a class="footer-brand" href="http://www.youtube.com" target="_blank">
<img src="app/img/youtube.png" alt="www.youtube.com"/>
</a>
</div>
</div>
</div>
</footer>
</body>
</html>