public string RecommendedVideoCompressor { get; } public:property String^ RecommendedVideoCompressor {String^ get();}
A string value representing the recommended video compressor name.
This property is updated with the recommended video compressor for the selected target format. Currently, the toolkit does not recommend compressors for all formats, so if the property is updated with an empty string, then there is no recommended video compressor for the selected target format.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public void TargetFormatsExample(){// reference the capture controlCaptureCtrl capturectrl = _form.CaptureCtrl;try{// set the video capture device. use your capture device's name hereif (capturectrl.VideoDevices["USB"] == null)throw new Exception("No USB video device available");capturectrl.VideoDevices["USB"].Selected = true;// set the audio capture device. use your capture device's name hereif (capturectrl.AudioDevices["USB"] == null)throw new Exception("No USB audio device available");capturectrl.AudioDevices["USB"].Selected = true;// no recompression for video and audiocapturectrl.VideoCompressors.Mpeg2.Selected = true;capturectrl.AudioCompressors.AC3.Selected = true;// select the DVD target formatcapturectrl.TargetFormats[TargetFormatType.DVD].Selected = true;// get the current selected inputint n = capturectrl.TargetFormats.Selection;// loop through the target formats and set a different oneforeach (TargetFormat t in capturectrl.TargetFormats){// get the format propertiesstring name = t.Name;string sink = t.Sink;string sinkSubType = t.SinkSubType;string audio = t.AudioCompressor;string video = t.VideoCompressor;string sRecAudio = t.RecommendedAudioCompressor;string sRecVideo = t.RecommendedVideoCompressor;string mux = t.Mux;string avMux = t.AVMux;bool readOnly = t.ReadOnly;StreamFormatType sft = t.Streams;// if we found the video tuner inputif (name == "AVI"){// select it and breakt.Selected = true;break;}}// check it directlyTargetFormatType tft = capturectrl.TargetFormat;// set the result to what we expect_result = (tft != TargetFormatType.DVD && n != capturectrl.TargetFormats.Selection);}catch (Exception){_result = false;}// we'll loop on the state and pump messages for this example.// but you should not need to if running from a Windows Forms application.while (capturectrl.State == CaptureState.Running)Application.DoEvents();}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
