Gets or sets the media source stream.
public virtual Stream SourceStream { get; set; } Public Overridable Property SourceStream As Stream A System.IO.Stream object for the media source stream.
This property allows the user to assign a Stream derived object as the media source for the conversion process. The SourceType will be set to SourceObjectType.Stream. Assignment can raise error exception. For more information, refer to the Error Codes.
Note: When setting this property, the convert control must be in the stopped state.
using Leadtools;using Leadtools.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public ConvertCtrlForm _form = new ConvertCtrlForm();// input and output file namespublic string _inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi");public string _outFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_SourceStreamExample.WMV");public void SourceStreamExample(){// reference the convert controlConvertCtrl convertctrl = _form.ConvertCtrl;try{// set the source streamconvertctrl.SourceStream = new StreamReader(_inFile).BaseStream;// select video and audio target formats for the outputint index = -1;TargetVideoFormats targetvideoformats = convertctrl.TargetFormats[convertctrl.TargetFormat].VideoFormats;index = targetvideoformats.IndexOf("{33564D57-0000-0010-8000-00AA00389B71}");// Windows Media Video 9 (WMV)targetvideoformats.Selection = index;TargetAudioFormats targetaudioformats = convertctrl.TargetFormats[convertctrl.TargetFormat].AudioFormats;index = targetaudioformats.IndexOf("{00000161-0000-0010-8000-00AA00389B71}");// Windows Media Audio (WMA)targetaudioformats.Selection = index;// select the WMV target formatconvertctrl.TargetFormat = TargetFormatType.WMV;// set the target file and formatconvertctrl.TargetFile = _outFile;// subscribe to the complete event to check our resultconvertctrl.Complete += new EventHandler(ConvertCtrl_Complete);// set the allowed streamsconvertctrl.AllowedStreams = StreamFormatType.Video;// 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:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media";}
Imports LeadtoolsImports Leadtools.MediaFoundationImports LeadtoolsMediaFoundationExamples.FixturesPublic _result As Boolean = FalsePublic _form As ConvertCtrlForm = New ConvertCtrlForm()' input and output file namesPublic _inFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi")Public _outFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_SourceStreamExample.wmv")Public Sub SourceStreamExample()' reference the convert controlDim convertctrl As ConvertCtrl = _form.ConvertCtrlTry' set the source streamconvertctrl.SourceStream = New StreamReader(_inFile).BaseStream' set the target fileconvertctrl.TargetFile = _outFile' select WMV target formatconvertctrl.TargetFormat = TargetFormatType.WMV' select video and audio target formats for the outputDim index As Integer = -1Dim trgvideoformats As TargetVideoFormats = convertctrl.TargetFormats(convertctrl.TargetFormat).VideoFormatsindex = trgvideoformats.IndexOf("{33564D57-0000-0010-8000-00AA00389B71}") ' Windows Media Video 9 (WMV)trgvideoformats.Selection = indexDim trgaudioformats As TargetAudioFormats = convertctrl.TargetFormats(convertctrl.TargetFormat).AudioFormatsindex = trgaudioformats.IndexOf("{00000161-0000-0010-8000-00AA00389B71}") ' Windows Media Audio (WMA)trgaudioformats.Selection = index' subscribe to the complete event to check our resultAddHandler convertctrl.Complete, AddressOf ConvertCtrl_Complete' set the allowed streamsconvertctrl.AllowedStreams = StreamFormatType.Video' convert it!convertctrl.StartConvert()Catch 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 convertctrl.State = ConvertState.RunningApplication.DoEvents()LoopEnd SubPrivate Sub ConvertCtrl_Complete(ByVal sender As Object, ByVal e As EventArgs)' set the result_result = File.Exists(_outFile)End SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media"End Class
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
