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

render ssa/ass subs in browser

This commit is contained in:
Luke Pulverenti 2016-04-04 21:23:42 -04:00
parent 3c2d0cd3a1
commit cc2c794ad0
26 changed files with 10493 additions and 138 deletions

View file

@ -289,7 +289,7 @@ define(['browser'], function (browser) {
});
// 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 && options.supportsAutoPlay) {
if (canPlayMkv && options.supportsCustomSeeking) {
profile.TranscodingProfiles.push({
Container: 'mkv',
Type: 'Video',
@ -320,7 +320,7 @@ define(['browser'], function (browser) {
Context: 'Streaming',
Protocol: 'hls',
// Can't use this when autoplay is not supported
ForceLiveStream: options.supportsAutoPlay ? true : false
ForceLiveStream: options.supportsCustomSeeking ? true : false
});
}