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

@ -84,7 +84,11 @@ var MistUtil = {
break;
}
case "html5/application/vnd.apple.mpegurl": {
return "HLS";
return "HLS (TS)";
break;
}
case "html5/application/vnd.apple.mpegurl;version=7": {
return "HLS (CMAF)";
break;
}
case "flash/10": {
@ -103,8 +107,9 @@ var MistUtil = {
return "TS";
break;
}
case "html5/application/vnd.ms-sstr+xml":
case "html5/application/vnd.ms-ss": {
return "Smooth streaming";
return "Smooth Streaming";
break;
}
case "dash/video/mp4": {