SelectedAudioProcessors Property

Summary
Gets the selected audio processor collection object.
Syntax
C#
C++/CLI
[EditorAttribute(System.Type, System.Type)] 
public AudioProcessors SelectedAudioProcessors { get; } 
public: 
property AudioProcessors^ SelectedAudioProcessors { 
   AudioProcessors^ get(); 
} 

Property Value

A AudioProcessors object representing the audio processor collection.

Remarks

The AudioProcessors object is used to build a list of audio processing filters to use during the conversion process. See AudioProcessors object for more details on processor collections.

Example
C#
using Leadtools; 
using Leadtools.Multimedia; 
using LeadtoolsMultimediaExamples.Fixtures; 
 
 
public bool _result = false; 
public ConvertCtrlForm _form = new ConvertCtrlForm(); 
 
public void ProcessorsExample() 
{ 
   // reference the convert control 
   ConvertCtrl convertctrl = _form.ConvertCtrl; 
 
   // input and output files 
   string inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi"); 
   string outFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ProcessorsExample.avi"); 
 
   try 
   { 
      // set source file 
      convertctrl.SourceFile = inFile; 
 
      // set the video processor to the Dizzy filter  
      convertctrl.SelectedVideoProcessors.Add(convertctrl.VideoProcessors.EFXDizzy); 
      Processor vproc = convertctrl.SelectedVideoProcessors.EFXDizzy; 
 
      // set the audio processor to the Chorus filter  
      convertctrl.SelectedAudioProcessors.Add(convertctrl.AudioProcessors.Chorus); 
      Processor aproc = convertctrl.SelectedAudioProcessors.Chorus; 
 
      // set the video processor properties 
      if (vproc.HasDialog(ProcessorDlg.Properties)) 
         vproc.ShowDialog(ProcessorDlg.Properties, _form); 
 
      // set the audio processor properties 
      if (aproc.HasDialog(ProcessorDlg.Properties)) 
         aproc.ShowDialog(ProcessorDlg.Properties, _form); 
 
      // set MPEG2 as the video compressor 
      convertctrl.VideoCompressors.Mpeg2.Selected = true; 
 
      // set AC3 as the audio compressor 
      convertctrl.AudioCompressors.AC3.Selected = true; 
 
      // set the target output file and format 
      convertctrl.TargetFile = outFile; 
 
      // set the target output format 
      convertctrl.TargetFormat = TargetFormatType.AVI; 
 
      // start the capture process 
      convertctrl.StartConvert(); 
 
      // 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 (convertctrl.State == ConvertState.Running) 
         Application.DoEvents(); 
 
      // set the result to what we expect 
      _result = File.Exists(outFile); 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string MediaDir = @"C:\LEADTOOLS22\Media"; 
} 
Requirements

Target Platforms

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Multimedia Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.