PreferredMPEG2Splitter Property

Summary
Gets or sets the preferred MPEG2 splitter display name.
Syntax
C#
C++/CLI
[EditorAttribute(System.Type, System.Type)] 
public virtual string PreferredMPEG2Splitter { get; set; } 
public: 
virtual property String^ PreferredMPEG2Splitter { 
   String^ get(); 
   void set (    String^ ); 
} 

Property Value

Constants.Filter_MPEG2_Splitter Microsoft MPEG-2 Splitter.
Constants.Filter_MPEG2_Demux Microsoft MPEG-2 Demultiplexer.
Remarks

Gets or sets the preferred MPEG2 splitter display name. A display name uniquely identifies the splitter (or any filter). Display names for software splitters have the following format: @device:sw:GUID\\GUID. For example, Microsoft's 'MPEG-2 Splitter' display name is: @device:sw:{083863F1-70DE-11D0-BD40-00A0C911CE86}\\{3AE86B20-7BE8-11D1-ABE6-00A0C905F375}

Example
C#
using Leadtools; 
using Leadtools.Multimedia; 
using LeadtoolsMultimediaExamples.Fixtures; 
 
 
public bool _result = false; 
public ConvertCtrlForm _form = new ConvertCtrlForm(); 
 
// input and output file names 
string _inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.mpeg"); 
string _outFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_PreferredMPEG2SplitterExample.avi"); 
 
public void PreferredMPEG2SplitterExample() 
{ 
   // reference the convert control 
   ConvertCtrl convertctrl = _form.ConvertCtrl; 
 
   try 
   { 
      // set the source file 
      convertctrl.SourceFile = _inFile; 
 
      // select video and audio compressors 
      convertctrl.VideoCompressors.Mpeg2.Selected = true; 
      convertctrl.AudioCompressors.AC3.Selected = true; 
 
      // set the target file and format 
      convertctrl.TargetFile = _outFile; 
      convertctrl.TargetFormat = TargetFormatType.AVI; 
 
      // set the preferred MPEG2 splitter to be the LEAD MPEG2 Transport Demultiplexer. 
      // this avoids a rogue filter with a higher merit from being used to play MPEG2 files. 
      convertctrl.PreferredMPEG2Splitter = Constants.Filter_MPEG2_Transport_Demux; 
 
      // subscribe to the complete event to check our result 
      convertctrl.Complete += new EventHandler(ConvertCtrl_Complete); 
 
      // set the allowed streams 
      convertctrl.AllowedStreams = StreamFormatType.AudioVideoCC; 
 
      // convert it! 
      convertctrl.StartConvert(); 
   } 
   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 (convertctrl.State == ConvertState.Running) 
      Application.DoEvents(); 
} 
 
void ConvertCtrl_Complete(object sender, EventArgs e) 
{ 
   // set the result 
   _result = File.Exists(_outFile); 
} 
 
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.