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 (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public VideoWriter(
	string fileName,
	int fps,
	int width,
	int height,
	bool isColor
)
Public Sub New ( _
	fileName As String, _
	fps As Integer, _
	width As Integer, _
	height As Integer, _
	isColor As Boolean _
)
public:
VideoWriter(
	String^ fileName, 
	int fps, 
	int width, 
	int height, 
	bool isColor
)

Parameters

fileName
String
The name of the video file to be written to
fps
Int32
frame rate per second
width
Int32
the width of the frame
height
Int32
the height of the frame
isColor
Boolean
true if this is a color video, false otherwise

See Also