public virtual object GetSubObject(PlayObject objType)
Public Overridable Function GetSubObject( _ByVal objType As PlayObject _) As Object
public:virtual Object^ GetSubObject(PlayObject objType)
objType
A PlayObject enumeration value that specifies which topology object to retrieve.
An object representing the specified topology object.
If the method fails, an error is raised. For more information, refer to the Error Codes.
using Leadtools;using Leadtools.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public PlayCtrlForm _form = new PlayCtrlForm();public PlayCtrl _playctrl = null;public void GetSubObjectExample(){// input and output file namesstring inFile = Path.Combine(LEAD_VARS.MediaDir, "PlayCtrl_Source.avi");try{// reference the convert control_playctrl = _form.PlayCtrl;// get index of LEAD MF Volume Transformint nIndex = _playctrl.AudioProcessors.IndexOf("{E2B7DC41-38C5-11D5-91F6-00104BDB8FF9}");// add the LEAD MF Volume Transform to the selected audio processors_playctrl.SelectedAudioProcessors.Add(_playctrl.AudioProcessors[nIndex]);// access the processor directly// LMFAVolume lmfVolumePro = _playctrl.GetSubObject(PlayObject.SelAudioProcessor) as LMFAVolume;// if (lmfVolumePro != null)// {// change some settings// lmfVolumePro.Mute = true;// Marshal.ReleaseComObject(lmfVolumePro);// }// set the source file_playctrl.SourceFile = inFile;}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 (_playctrl.State == PlayState.Running)Application.DoEvents();_result = true;}static class LEAD_VARS{public const string MediaDir = @"C:\LEADTOOLS21\Media";}
Imports LeadtoolsImports Leadtools.MediaFoundationImports LeadtoolsMediaFoundationExamples.FixturesPublic _result As Boolean = FalsePublic _form As PlayCtrlForm = New PlayCtrlForm()Public _playctrl As PlayCtrl = NothingPublic Sub GetSubObjectExample()' input and output file namesDim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "PlayCtrl_Source.avi")Try' reference the convert control_playctrl = _form.PlayCtrl' get index of LEAD MF Volume TransformDim nIndex As Integer = _playctrl.AudioProcessors.IndexOf("{E2B7DC41-38C5-11D5-91F6-00104BDB8FF9}")' add the LEAD MF Volume Transform to the selected audio processors_playctrl.SelectedAudioProcessors.Add(_playctrl.AudioProcessors(nIndex))' access the processor directlyDim lmfVolumePro As LMFAVolume = TryCast(_playctrl.GetSubObject(PlayObject.SelAudioProcessor), LMFAVolume)If Not lmfVolumePro Is Nothing Then' change some settingslmfVolumePro.Mute = TrueMarshal.ReleaseComObject(lmfVolumePro)End If' set the source and target files_playctrl.SourceFile = inFileCatch e1 As Exception_result = FalseEnd Try' 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()Loop_result = TrueEnd SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\LEADTOOLS21\Media"End Class
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
