Merge pull request #16380 from LTe/fix-subtitle-extraction-setting

Respect EnableSubtitleExtraction setting in subtitle delivery
This commit is contained in:
Bond-009
2026-04-11 11:37:17 +02:00
committed by GitHub
3 changed files with 57 additions and 3 deletions
+1 -1
View File
@@ -1555,7 +1555,7 @@ namespace MediaBrowser.Model.Dlna
continue;
}
if (!subtitleStream.IsExternal && !transcoderSupport.CanExtractSubtitles(subtitleStream.Codec))
if (!subtitleStream.IsExternal && playMethod == PlayMethod.Transcode && !transcoderSupport.CanExtractSubtitles(subtitleStream.Codec))
{
continue;
}