The video feature provides the full path of its source video.
The video path always refers to an accessible file on the local file system.
Video Width
1
/// <summary>
2
/// Video width.
3
/// </summary>
4
int width {get;}
Copied!
The video feature provides the width of its source video in pixels.
Video Height
1
/// <summary>
2
/// Video height.
3
/// </summary>
4
int height {get;}
Copied!
The video feature provides the height of its source video in pixels.
Video Frame Count
1
/// <summary>
2
/// Video frame count.
3
/// </summary>
4
int frames {get;}
Copied!
The video feature provides the frame count of its source video.
Note that the reported frame count is merely an approximate count based on the average frame rate and duration of the source video. Enumerate the video to get an exact count.