Click or drag to resize
VideoWriter Constructor (String, Int32, Size, Boolean)
http://www.emgu.com
Create a video writer using the specific information. On windows, it will open a codec selection dialog. On linux, it will use the default codec for the specified filename

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntax
public VideoWriter(
	string fileName,
	int fps,
	Size size,
	bool isColor
)

Parameters

fileName
Type: SystemString
The name of the video file to be written to
fps
Type: SystemInt32
frame rate per second
size
Type: System.DrawingSize
the size of the frame
isColor
Type: SystemBoolean
true if this is a color video, false otherwise
See Also