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

Use reference framerate as sampling rate (target FPS) for SubtitlesOctopus

This commit is contained in:
Dmitry Lyzo 2025-01-21 22:43:37 +03:00 committed by GitHub
parent 2f6781a7c2
commit 36aa4dcd88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1305,7 +1305,7 @@ export class HtmlVideoPlayer {
dropAllAnimations: false,
libassMemoryLimit: 40,
libassGlyphLimit: 40,
targetFps: videoStream?.AverageFrameRate || videoStream?.RealFrameRate || 24,
targetFps: videoStream?.ReferenceFrameRate || videoStream?.RealFrameRate || 24,
prescaleFactor: 0.8,
prescaleHeightLimit: 1080,
maxRenderHeight: 2160,