VideoSource
Manages the video functionality.
Last updated
// Get video timestamp.
DateTime timestamp = _video.Timestamp;
// Get video pixels.
Color32[] pixels = _video.Pixels;
// Get video width.
int width = _video.Width;
// Get video height.
int height = _video.Height;