Provides a way to get the WMScript object.
public WMScript WMScripter { get; } Public ReadOnly Property WMScripter As WMScript
A WMScript object, which can be used to manage the Windows Media Script commands.
The object is read-only and can be null if the TargetFormat property is not set to TargetFormatType.WMVMux or TargetFormatType.ASFMux. You can keep a copy of the object but only as long as the target format does not change. If the target format changes, get the object again. For more information on Windows Media Script Commands, refer to WMScript object.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public ConvertCtrlForm _form = new ConvertCtrlForm();public void AddHeaderScriptExample(){ConvertCtrl convertctrl = _form.ConvertCtrl;string inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi");string outFile = Path.Combine(LEAD_VARS.MediaDir, "WMScript_AddHeaderScriptExample.wmv");try{convertctrl.TargetFormat = TargetFormatType.WMVMux;convertctrl.SourceFile = inFile;convertctrl.TargetFile = outFile;WMScript mux = convertctrl.WMScripter;if (mux == null){_result = false;return;}mux.EnableScriptStream = false;mux.RemoveAllHeaderScripts();WriteScript(convertctrl, mux);// run the convertconvertctrl.StartConvert();}catch (Exception){_result = false;return;}// 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();// set the result_result = true;}public void WriteScript(ConvertCtrl convertctrl, WMScript mux){double duration = convertctrl.Duration;for (double t = 0.0; t < duration; t += 1.0){String sz = String.Format("Sample caption script at {0} seconds", t);mux.AddHeaderScript("caption", sz, t);}}static class LEAD_VARS{public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 20\Media";}
Imports LeadtoolsImports Leadtools.MultimediaImports LeadtoolsMultimediaExamples.FixturesPublic _result As Boolean = FalsePublic _form As New ConvertCtrlForm()Public Sub AddHeaderScriptExample()Dim convertctrl As ConvertCtrl = _form.ConvertCtrlDim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi")Dim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "WMScript_AddHeaderScriptExample.wmv")Tryconvertctrl.TargetFormat = TargetFormatType.WMVMuxconvertctrl.SourceFile = inFileconvertctrl.TargetFile = outFileDim mux As WMScript = convertctrl.WMScripterIf mux Is Nothing Then_result = FalseReturnEnd Ifmux.EnableScriptStream = Falsemux.RemoveAllHeaderScripts()WriteScript(convertctrl, mux)' run the convertconvertctrl.StartConvert()Catch generatedExceptionName As Exception_result = FalseReturnEnd 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.While convertctrl.State = ConvertState.RunningApplication.DoEvents()End While' set the result_result = TrueEnd SubPublic Sub WriteScript(ByVal convertctrl As ConvertCtrl, ByVal mux As WMScript)Dim duration As Double = convertctrl.DurationDim t As Double = 0.0While t < durationDim sz As [String] = [String].Format("Sample caption script at {0} seconds", t)mux.AddHeaderScript("caption", sz, t)t += 1.0End WhileEnd SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 20\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
