Add experimental support for dash streaming

This commit is contained in:
Calvin Montgomery 2017-11-27 22:10:00 -08:00
parent 67fbc8e267
commit cf9b95a265
6 changed files with 689 additions and 29 deletions

View file

@ -20,6 +20,7 @@ const SOURCE_QUALITIES = new Set([
]);
const SOURCE_CONTENT_TYPES = new Set([
'application/dash+xml',
'application/x-mpegURL',
'audio/aac',
'audio/ogg',
@ -30,6 +31,7 @@ const SOURCE_CONTENT_TYPES = new Set([
]);
const LIVE_ONLY_CONTENT_TYPES = new Set([
'application/dash+xml',
'application/x-mpegURL'
]);