1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-02-28 16:31:45 -05:00
parent fbb6861985
commit 7b40f1daff
9 changed files with 430 additions and 60 deletions

View file

@ -37,7 +37,7 @@ define(['browser'], function (browser) {
}
function canPlayHlsWithMSE() {
if (window.MediaSource != null) {
if (window.MediaSource != null && !browser.firefox) {
// text tracks dont work with this in firefox
return true;
}
@ -200,15 +200,6 @@ define(['browser'], function (browser) {
});
});
profile.TranscodingProfiles.push({
Container: 'mp4',
Type: 'Video',
AudioCodec: videoAudioCodecs.join(','),
VideoCodec: 'h264',
Context: 'Streaming',
Protocol: 'http'
});
// Can't use mkv on mobile because we have to use the native player controls and they won't be able to seek it
if (canPlayMkv && !browser.mobile) {
profile.TranscodingProfiles.push({