Gets or sets the zero-based index of the selected Compressor item.
public int Selection { get; set; } Public Property Selection As Integer The zero-based index of the selected item. Use -1 to specify that the stream is not to be recompressed.
Playing audio or video data requires a decompressor. Note: For MPEG2 streams containing H.264, H265 or AAC encoded data, LEAD H264, H265 or AAC transcoders can be used to convert to ISO. Assignment can raise an error exception. For more information, refer to the Error Codes.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public void CompressorsExample(){string inputName, inputFriendlyName;int selection;// reference the capture controlCaptureCtrl capturectrl = _form.CaptureCtrl;// select a video device, use your device's name here instead of Analogif (capturectrl.VideoDevices["Analog"] == null)throw new Exception("No Analog video tuner device available");capturectrl.VideoDevices["Analog"].Selected = true;// get the video compressors objectVideoCompressors compressors = capturectrl.VideoCompressors;try{// select an input by name if possibleif (compressors.Mpeg2 != null)compressors.Mpeg2.Selected = true;// get the current selected inputselection = compressors.Selection;foreach (Compressor cmp in compressors){// get the compressor propertiesinputName = cmp.Name;inputFriendlyName = cmp.FriendlyName;CompressorReliability rel = cmp.Reliability;// if we found the video tuner inputif (inputFriendlyName == "LEAD H264 Encoder (4.0)"&& rel == CompressorReliability.Stable){// select it and breakcmp.Selected = true;break;}}// set the result to what we expect_result = (selection != compressors.Selection);}catch (Exception){_result = false;}}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _result As Boolean = FalsePublic _form As CaptureCtrlForm = New CaptureCtrlForm()Public Sub CompressorsExample()Dim inputName, inputFriendlyName As StringDim selection As Integer' reference the capture controlDim capturectrl As CaptureCtrl = _form.CaptureCtrl' select a video device, use your device name here instead of AnalogIf capturectrl.VideoDevices("Analog") Is Nothing ThenThrow New Exception("No Analog video tuner device available")End Ifcapturectrl.VideoDevices("Analog").Selected = True' get the video compressors objectDim compressors As VideoCompressors = capturectrl.VideoCompressorsTry' select an input by name if possibleIf Not compressors.Mpeg2 Is Nothing Thencompressors.Mpeg2.Selected = TrueEnd If' get the current selected inputselection = compressors.SelectionFor Each cmp As Compressor In compressors' get the compressor propertiesinputName = cmp.NameinputFriendlyName = cmp.FriendlyNameDim rel As CompressorReliability = cmp.Reliability' if we found the video tuner inputIf inputFriendlyName = "LEAD H264 Encoder (4.0)" AndAlso rel = CompressorReliability.Stable Then' select it and breakcmp.Selected = TrueExit ForEnd IfNext cmp' set the result to what we expect_result = (selection <> compressors.Selection)Catch e1 As Exception_result = FalseEnd TryEnd Sub
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
