RemoveStream Method

Summary
Removes the specified stream from the profile.
Syntax
C#
C++/CLI
public void RemoveStream( 
   WMStreamConfig Config 
) 
public: 
void RemoveStream(  
   WMStreamConfig^ Config 
)  

Parameters

Config
A WMStreamConfig object that is to be removed from the profile.

Remarks

For more information, refer to the Microsoft documentation for IWMProfile.RemoveStream. To remove a script command stream , use the WMScript.EnableScriptStream method.

Example
C#
using Leadtools; 
using Leadtools.Multimedia; 
using LeadtoolsMultimediaExamples.Fixtures; 
 
 
public bool _result = false; 
public ConvertCtrlForm _form = new ConvertCtrlForm(); 
 
public void RemoveStreamExample() 
{ 
   ConvertCtrl convertctrl = _form.ConvertCtrl; 
   string inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi"); 
   string outFile = Path.Combine(LEAD_VARS.MediaDir, "WMProfile_RemoveStreamExample.avi"); 
 
   try 
   { 
      WMProfileManager manager = new WMProfileManager(); 
      manager.SystemProfileVersion = WMT_Version.V8; 
      convertctrl.WMProfile = manager.LoadSystemProfile(0); 
      int streams = convertctrl.WMProfile.StreamCount; 
      // get the video stream and remove it from the config 
      WMStreamConfig strm = convertctrl.WMProfile.GetStream(0); 
      convertctrl.WMProfile.RemoveStream(strm); 
      if (convertctrl.WMProfile.StreamCount == streams - 1) 
         _result = true; 
   } 
   catch (Exception) 
   { 
      _result = false; 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string MediaDir = @"C:\LEADTOOLS22\Media"; 
} 
Requirements

Target Platforms

See Also

Reference

WMProfile Class

WMProfile Members

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.