public:
WMProfile^ LoadProfileByID(
String^ ProfileID
)
ProfileID
Character string that contains the string GUID for the profile to load. For a list of possible IDs, refer to WMProfile Profile IDConstants.
A WMProfile
Loads a system profile identified by its GUID. The GUID is passed as a string. The list of profile IDs contains only IDs for versions 4, 7, and 8. Version 9 does not have a predefined list of IDs. Only system profiles have IDs. For more information, refer to the Microsoft documentation for IWMProfileManager.LoadProfileByID.
using Leadtools;
using Leadtools.Multimedia;
using LeadtoolsMultimediaExamples.Fixtures;
public bool _result = false;
public ConvertCtrlForm _form = new ConvertCtrlForm();
public void GetStreamByNumberExample()
{
ConvertCtrl convertctrl = _form.ConvertCtrl;
string inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi");
string outFile = Path.Combine(LEAD_VARS.MediaDir, "WMProfile_GetStreamByNumberExample.avi");
try
{
WMProfileManager manager = new WMProfileManager();
//manager.SystemProfileVersion = WMT_Version.V8;
convertctrl.WMProfile = manager.LoadProfileByID(Constants.WMProfile_V80_288VideoOnly);
int streams = convertctrl.WMProfile.StreamCount;
// get the video stream and remove it from the config
WMStreamConfig strm = convertctrl.WMProfile.GetStreamByNumber(1);
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:\LEADTOOLS23\Media";
}
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