mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Update FrameRateArgument.cs
Bugfix framerate need "." as decimal seperator
Former-commit-id: ed537e6ab2
This commit is contained in:
parent
726e8cd486
commit
11585b6268
1 changed files with 1 additions and 1 deletions
|
@ -12,6 +12,6 @@ public FrameRateArgument(double framerate)
|
||||||
Framerate = framerate;
|
Framerate = framerate;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Text => $"-r {Framerate}";
|
public string Text => $"-r {Framerate.ToString(System.Globalization.CultureInfo.InvariantCulture)}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue