| VideoCodecConverter Constructor (VideoFormat, VideoFormat, VideoQuality, Boolean) | 
            Constructor
            
 
Namespace: Ozeki.MediaAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntaxpublic VideoCodecConverter(
	VideoFormat source_format,
	VideoFormat destination_format,
	VideoQuality output_quality,
	bool force_transcode = false
)
Public Sub New ( 
	source_format As VideoFormat,
	destination_format As VideoFormat,
	output_quality As VideoQuality,
	Optional force_transcode As Boolean = false
)
public:
VideoCodecConverter(
	VideoFormat^ source_format, 
	VideoFormat^ destination_format, 
	VideoQuality output_quality, 
	bool force_transcode = false
)
new : 
        source_format : VideoFormat * 
        destination_format : VideoFormat * 
        output_quality : VideoQuality * 
        ?force_transcode : bool 
(* Defaults:
        let _force_transcode = defaultArg force_transcode false
*)
-> VideoCodecConverterParameters
- source_format
 - Type: Ozeki.MediaVideoFormat
            Input format of the converter
             - destination_format
 - Type: Ozeki.MediaVideoFormat
Output format of the converter
             - output_quality
 - Type: Ozeki.MediaVideoQuality
            Output Quality of the converter
             - force_transcode (Optional)
 - Type: SystemBoolean
            If true it forces transcoding in all cases, even when the input and output formats are the same
             
See Also