C#
VB
C++
Gets the registered audio processors collection object.
public AudioProcessors AudioProcessors { get; } Public ReadOnly Property AudioProcessors As Leadtools.Mediafoundation.AudioProcessors public:property Leadtools.Mediafoundation.AudioProcessors^ AudioProcessors {Leadtools.Mediafoundation.AudioProcessors^ get();}
An AudioProcessors collection object representing the available audio processors.
Gets the AudioProcessors collection object, containing registered audio processors. This AudioProcessors object is used to enumerate the available video and audio processing transforms.
using Leadtools;using Leadtools.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public PlayCtrlForm _form = new PlayCtrlForm();public void ProcessorsExample(){// reference the convert controlPlayCtrl playctrl = _form.PlayCtrl;// input and output filesstring inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi");try{// disable auto startplayctrl.AutoStart = false;// set the event handler for state changesplayctrl.StateChanged += new StateChangedEventHandler(PlayCtrl_StateChanged);// set source fileplayctrl.SourceFile = inFile;// if we have a video streamif ((playctrl.AllowedStreams & StreamFormatType.Video) == StreamFormatType.Video){// add the first video processor for playbackplayctrl.SelectedVideoProcessors.Add(playctrl.VideoProcessors[0]);Processor vproc = playctrl.SelectedVideoProcessors[0];// set the video processor propertiesif (vproc.HasDialog(ProcessorDlg.Properties))vproc.ShowDialog(ProcessorDlg.Properties, _form);}// if we have an audio streamif ((playctrl.AllowedStreams & StreamFormatType.Audio) == StreamFormatType.Audio){// add the first audio processor for playbackplayctrl.SelectedAudioProcessors.Add(playctrl.AudioProcessors[0]);Processor aproc = playctrl.SelectedAudioProcessors[0];// set the audio processor propertiesif (aproc.HasDialog(ProcessorDlg.Properties))aproc.ShowDialog(ProcessorDlg.Properties, _form);}// start the playback nowplayctrl.Run();// 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 (playctrl.State == PlayState.Running)Application.DoEvents();}catch (Exception){_result = false;}}void PlayCtrl_StateChanged(object sender, StateChangedEventArgs e){// set the result to what we expect_result = (e.lastState == PlayState.Running && e.state == PlayState.Stopped);}static class LEAD_VARS{public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media";}
Imports LeadtoolsImports Leadtools.MediaFoundationImports LeadtoolsMediaFoundationExamples.FixturesPublic _result As Boolean = FalsePublic _form As PlayCtrlForm = New PlayCtrlForm()Public Sub ProcessorsExample()' reference the convert controlDim playctrl As PlayCtrl = _form.PlayCtrl' input and output filesDim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi")Try' disable auto startplayctrl.AutoStart = False' set the event handler for state changesAddHandler playctrl.StateChanged, AddressOf PlayCtrl_StateChanged' set source fileplayctrl.SourceFile = inFile' if we have a video streamIf (playctrl.AllowedStreams And StreamFormatType.Video) = StreamFormatType.Video Then' add the first video processor for playbackplayctrl.SelectedVideoProcessors.Add(playctrl.VideoProcessors(0))Dim vproc As Processor = playctrl.SelectedVideoProcessors(0)' set the video processor propertiesIf vproc.HasDialog(ProcessorDlg.Properties) Thenvproc.ShowDialog(ProcessorDlg.Properties, _form)End IfEnd If' if we have an audio streamIf (playctrl.AllowedStreams And StreamFormatType.Audio) = StreamFormatType.Audio Then' add the first audio processor for playbackplayctrl.SelectedAudioProcessors.Add(playctrl.AudioProcessors(0))Dim aproc As Processor = playctrl.SelectedAudioProcessors(0)' set the audio processor propertiesIf aproc.HasDialog(ProcessorDlg.Properties) Thenaproc.ShowDialog(ProcessorDlg.Properties, _form)End IfEnd If' start the playback nowplayctrl.Run()' 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.Do While playctrl.State = PlayState.RunningApplication.DoEvents()LoopCatch e1 As Exception_result = FalseEnd TryEnd SubPrivate Sub PlayCtrl_StateChanged(ByVal sender As Object, ByVal e As StateChangedEventArgs)' set the result to what we expect_result = (e.lastState = PlayState.Running AndAlso e.state = PlayState.Stopped)End SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media"End Class
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
