Allow streaming of raw PGS subtitles without transcoding (#12056)

This commit is contained in:
David Schulte
2024-07-15 14:48:09 +02:00
committed by GitHub
parent 3262f8dc2a
commit fc1bee30a6
3 changed files with 79 additions and 13 deletions

View File

@@ -113,6 +113,11 @@ namespace Emby.Server.Implementations.Library
return true;
}
if (stream.IsPgsSubtitleStream)
{
return true;
}
return false;
}