Creates video writer structure.

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 static IntPtr cvCreateVideoWriter_FFMPEG(
	string filename,
	int fourcc,
	double fps,
	Size frameSize,
	int isColor
)
Public Shared Function cvCreateVideoWriter_FFMPEG ( _
	filename As String, _
	fourcc As Integer, _
	fps As Double, _
	frameSize As Size, _
	isColor As Integer _
) As IntPtr
public:
static IntPtr cvCreateVideoWriter_FFMPEG(
	String^ filename, 
	int fourcc, 
	double fps, 
	Size frameSize, 
	int isColor
)

Parameters

filename
String
Name of the output video file.
fourcc
Int32
4-character code of codec used to compress the frames. For example, CV_FOURCC('P','I','M','1') is MPEG-1 codec, CV_FOURCC('M','J','P','G') is motion-jpeg codec etc.
fps
Double
Framerate of the created video stream.
frameSize
Size
Size of video frames.
isColor
Int32
If != 0, the encoder will expect and encode color frames, otherwise it will work with grayscale frames

Return Value

The video writer

See Also