mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
update next/previous buttons
This commit is contained in:
@@ -317,12 +317,16 @@ namespace MediaBrowser.Api.Playback.Hls
|
||||
}
|
||||
}
|
||||
|
||||
if (state.VideoRequest.Framerate.HasValue)
|
||||
var framerate = GetFramerateParam(state);
|
||||
if (framerate.HasValue)
|
||||
{
|
||||
args += string.Format(" -r {0}", state.VideoRequest.Framerate.Value);
|
||||
args += string.Format(" -r {0}", framerate.Value.ToString(UsCulture));
|
||||
}
|
||||
|
||||
args += " -vsync vfr";
|
||||
if (!string.IsNullOrEmpty(state.VideoSync))
|
||||
{
|
||||
args += " -vsync " + state.VideoSync;
|
||||
}
|
||||
|
||||
if (!string.IsNullOrEmpty(state.VideoRequest.Profile))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user