Skip to content

RecordingFourCC

property, read-only

Delphi
property RecordingFourCC: string read GetRecordingFourCC;
C++Builder
__property System::UnicodeString RecordingFourCC = {read=GetRecordingFourCC};
C#
public string RecordingFourCC { get; }
VB.NET
Public ReadOnly Property RecordingFourCC As String
C++/Qt
wchar_t *GetRecordingFourCC ();

Returns the FourCC that corresponds to the video format used to record the video stream.

E.g.: YUY2 RGB24 dvsd

Note: When the frame grabber is enabled on the recording stream (FrameGrabber = fg_BothStreams or fg_CaptureStream), the recorded format will be a RGB... format corresponding to the FrameGrabberRGBFormat property.

To record in the format specified by the VideoSubtype property, you can - disable the frame grabber or place it on the preview stream only (FrameGrabber = fg_Disabled or fg_PreviewStream), - force the recording in the native format by enabling the RecordingInNativeFormat property.