LEADTOOLS Multimedia (Leadtools.Multimedia assembly) Send comments on this topic. | Back to Introduction | Help Version 17.0.3.22
TargetFormatType Enumeration
See Also  
Leadtools.Multimedia Namespace : TargetFormatType Enumeration



The TargetFormatType enumeration values specify the format of the target media file associated with the CaptureCtrl.TargetFormat and ConvertCtrl.TargetFormat.

Syntax

Visual Basic (Declaration) 
Public Enum TargetFormatType 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As TargetFormatType
C# 
public enum TargetFormatType : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
public enum class TargetFormatType : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
ASFWindows Media audio/video format using non-Windows Media codecs.
ASFMuxLEAD Windows Media Multiplexer which uses non-Windows Media codecs (use this to create Windows Media files containing custom codecs which can be used for in-memory conversion).
AVIAVI audio/video format.
DICOMDICOM video format.
DVDDVD image format. (Requires the LEAD DVD Writer, LEAD MPEG-2 Encoder, LEAD MPEG Audio Encoder, and LEAD MPEG-2 Multiplexer filters.) Use this target format to compose DVD images by creating a new DVD image or appending to an existing image. To gain access to the DVD writer object, call CaptureCtrl.GetSubObject with the ObjType parameter set to CaptureObject.Sink. If the target format is TargetFormatType.DVD, then the target file, in the CaptureCtrl.TargetFile property is a folder name and not a file name. The DVD writer will create all needed files and subfolders.
DVRLBL LEAD DVR Buffer format.
DVRProgramLBL LEAD DVR Buffer format using MPEG2 Program Stream.
DVRTransportLBL LEAD DVR Buffer format using MPEG2 Transport Stream.
DVSDStandard DV audio/video format. Do not select any compressors when using this format.
DVSDAVIStandard DV audio/video format encapsulated in an AVI encoded stream. Do not select any compressors when using this format.
DVSDMXFDVSD-MXF file format.
DVSDOGGOgg format for video only or video and audio compressed with DV compression. (Requires LEAD Ogg Multiplexer and Splitter filters.)
FLVFLV Flash Version 6 video format. (Requires the LEAD H263 Video Encoder and the LEAD FLV Multiplexer). Supports the following types of audio: PCM(5.5KHz, 11.025KHz, 22.05KHz, 44.1KHz) or MP3(22.05KHz, 44.1KHz).
FLVH263FLV Flash Version 6 format with hardcoded LEAD FLV Multiplexer, LEAD H263 encoder and a MP3 encoder. The audio is automatically converted to 44.1KHz MP3. Do not select any compressors when using this format.
FLVH264F4V/MP4 Flash Version 9 format using hardcoded the LEAD H264 Video Encoder, LEAD AAC Encoder and the LEAD ISO Multiplexer.Do not select any compressors when using this format.
FLVH264_2FLV Flash Version 9 format using hardcoded the LEAD H264 Video Encoder, LEAD AAC Encoder and the LEAD FLV Multiplexer.Do not select any compressors when using this format.
ISOISO Base video file format. This format can be used to create multiple file formats: MP4, AVC, QuickTime, F4V (Flash HD), 3GPP, etc.
MKVMKV file format.
MP3MP3 audio format. Do not select any compressors when using this format
MP3DefaultMP3 audio format using the recommended MP3 compressor selected by the toolkit.
MP3LAMEMP3 audio format using the public domain LAME audio compressor. The LAME audio compressor must be installed for this format to work.
MP3LEADMP3 audio format, compressed using the LEAD MP3 Audio Encoder.
MPEG1AudioMPEG1 audio format. An MPEG1 compatible audio compressor must be selected (an MP3 audio compressor).
MPEG1SystemMPEG-1 System format. (Requires LEAD MPEG-2 Encoder, LEAD MPEG Audio Encoder and LEAD MPEG-1 Multiplexer filters.)
MPEG2DICOMDICOM video format with embedded MPEG2 audio/video content.
MPEG2ProgramMPEG-2 Program format. (Requires LEAD MPEG-2 Encoder, LEAD MPEG Audio Encoder and LEAD MPEG-2Multiplexer filters.)
MPEG2TransportMPEG-2 Transport format. (Requires the LEAD MPEG-2 Transport Multiplexer and LEAD Transport compatible compressor; i.e. LEAD MPEG-2 Encoder and LEAD MPEG Audio Encoder)
MXFMXF file format.
NETNetwork stream. The target format used to transmit multimedia streams over TCP/IP networks using LEAD network modules. The transmitted streams can be received by a PlayCtrl object with the PlayCtrl.SourceFile set to the server address. For more information on network modules, see: LEAD Network Multiplexer, LEAD Network Sink, LEAD Network Source, and LEAD Network Demultiplexer.
NoneNo target format.
OGGOgg audio/video format. (Requires LEAD Ogg Multiplexer and Splitter filters). Recommended format for converting files of any media type without recompression. Use this format to convert to AVI if you experience audio/video synchronization problems.
StillImageLEAD Still Image format (requires the lEAD Still Image Writer filter). The Still Image Writer filter can write most raster file formats supported by LEADTOOLS. The output file can be multipage (all frames will be written in one output file) or single page (multiple output files will be created, each frame being written in an individual file). For example, the video can be saved as one TIF file, or as a sequence of JPEG files.
StreamStream format. All the samples are written in an output frame, without adding any headers. You can use this with capture cards that can output raw MPEG data. (Ex: Some Hauppauge cards).
WAVEWAVE audio format.
WMVWindows Media audio/video format using Windows Media codecs.
WMVMuxLEAD Windows Media Multiplexer which uses only Windows Media codecs (replaces Microsoft WMV, can be used for in-memory conversion).

Remarks

See the CaptureCtrl.TargetFormat and ConvertCtrl.TargetFormat properties for more information on how this enumeration is used.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.Multimedia.TargetFormatType

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also