feat(domain): default global framerate to 59.94p (user's primary production target)
Some checks failed
CI / build-and-test (push) Failing after 25s
Some checks failed
CI / build-and-test (push) Failing after 25s
This commit is contained in:
parent
381cac66e6
commit
38f7db888e
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ public sealed record FrameProcessingSettings(
|
||||||
AudioMode Audio)
|
AudioMode Audio)
|
||||||
{
|
{
|
||||||
public static readonly FrameProcessingSettings Default =
|
public static readonly FrameProcessingSettings Default =
|
||||||
new(TargetFramerate.Fps30, TargetResolution.R1080p, AspectMode.Pillarbox, AudioMode.Auto);
|
new(TargetFramerate.Fps59_94, TargetResolution.R1080p, AspectMode.Pillarbox, AudioMode.Auto);
|
||||||
|
|
||||||
/// <summary>Returns the framerate enum value as a numeric frames-per-second.</summary>
|
/// <summary>Returns the framerate enum value as a numeric frames-per-second.</summary>
|
||||||
public double FramerateHz => Framerate switch
|
public double FramerateHz => Framerate switch
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue