VideoFormat
Video frame format.
public VideoFormat()
{
width = (int)FRAME_WIDTH.FRAME_WIDTH_640;
height = (int)FRAME_HEIGHT.FRAME_HEIGHT_360;
fps = (int)FRAME_RATE.FRAME_RATE_FPS_15;
}
public VideoFormat(int w, int h, int f)
{
this.width = w;
this.height = h;
this.fps = f;
}
public int width { set; get; }
public int height { set; get; }
public int fps { set; get; }
};
Properties
- width
- Width of the video frame (px). Default is 960.
- height
- Height of the video frame (px). Default is 540.
- fps
- Frame rate of the video frame. Default is 15.