Skip to content

Commit

Permalink
Merge pull request #1245 from shimat/add_captureproperties
Browse files Browse the repository at this point in the history
Add some capture properties
  • Loading branch information
shimat authored Mar 31, 2021
2 parents fc1bc1e + 7be49f7 commit 0572828
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/OpenCvSharp/Modules/videoio/Enum/VideoCaptureProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,26 @@ public enum VideoCaptureProperties
/// </summary>
WBTemperature = 45,

/// <summary>
/// (read-only) codec's pixel format. 4-character code - see VideoWriter::fourcc . Subset of [AV_PIX_FMT_*](https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/raw.c) or -1 if unknown
/// </summary>
CodecPixelFormat = 46,

/// <summary>
/// (read-only) Video bitrate in kbits/s
/// </summary>
BitRate = 47,

/// <summary>
/// (read-only) Frame rotation defined by stream meta (applicable for FFmpeg back-end only)
/// </summary>
OrientationMeta = 48,

/// <summary>
/// if true - rotates output frames of CvCapture considering video file's metadata (applicable for FFmpeg back-end only) (https://github.com/opencv/opencv/issues/15499)
/// </summary>
OrientationAuto = 49,

#endregion

#region OpenNI
Expand Down

0 comments on commit 0572828

Please sign in to comment.