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

@ -16,12 +16,12 @@
},
"devDependencies": {},
"ignore": [],
"version": "1.2.1",
"_release": "1.2.1",
"version": "1.2.2",
"_release": "1.2.2",
"_resolution": {
"type": "version",
"tag": "1.2.1",
"commit": "44c0d907dc06ccc317c008d78b06ae365358560a"
"tag": "1.2.2",
"commit": "090c43863857847e33055ba1d7ab278b17f76203"
},
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
"_target": "^1.2.0",

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
});
}