LSP + Embed: support for new HLS 7 CMAF output

This commit is contained in:
Cat 2019-03-28 13:12:18 +01:00
parent 5ee53f9cca
commit 2fa6565f7b
6 changed files with 50 additions and 39 deletions

View file

@ -178,7 +178,10 @@ var UI = {
var human = false;
switch (type) {
case 'html5/application/vnd.apple.mpegurl':
human = 'HLS';
human = 'HLS (TS)';
break;
case "html5/application/vnd.apple.mpegurl;version=7":
human = "HLS (CMAF)";
break;
case 'html5/video/webm':
human = 'WebM';
@ -208,8 +211,9 @@ var UI = {
case 'html5/video/mpeg':
human = 'TS';
break;
case "html5/application/vnd.ms-sstr+xml":
case 'html5/application/vnd.ms-ss':
human = 'Smooth';
human = 'Smooth Streaming';
break;
case 'html5/text/vtt':
human = 'VTT Subtitles';