Enum VideoSync
- Namespace
- ImageMagick.Formats
- Assembly
- Magick.NET-Q8-AnyCPU.dll
Specifies the video sync methods.
public enum VideoSync
Fields
Auto = 0
Chooses between Cfr and Vfr depending on muxer capabilities. This is the default method.
Cfr = 1
Frames will be duplicated and dropped to achieve exactly the requested constant frame rate.
Drop = 2
As passthrough but destroys all timestamps, making the muxer generate fresh timestamps based on frame-rate.
PassThrough = 3
Each frame is passed with its timestamp from the demuxer to the muxer.
Vfr = 4
Frames are passed through with their timestamp or dropped so as to prevent 2 frames from having the same timestamp.