Gets the media source type.
public virtual Leadtools.Mediafoundation.SourceObjectType SourceType {get;} Public Overridable ReadOnly Property SourceType As Leadtools.Mediafoundation.SourceObjectType public:virtual property Leadtools.Mediafoundation.SourceObjectType SourceType {Leadtools.Mediafoundation.SourceObjectType get();}
An SourceObjectType enumeration values.
The value is one of the SourceObjectType enumeration values.
using Leadtools;using Leadtools.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public ConvertCtrlForm _form = new ConvertCtrlForm();public ConvertCtrl _convertctrl;public bool _paused = false;public int _percent = 0;public void ConvertExample(){// reference the convert control_convertctrl = _form.ConvertCtrl;// input and output filesstring inFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi");string outFile = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ConvertExample.MP4");try{// set the source for conversion_convertctrl.SourceFile = inFile;// select MP4 target format_convertctrl.TargetFormat = TargetFormatType.MP4;// select H264 video target formatint index = -1;TargetVideoFormats targetvideoformats = _convertctrl.TargetFormats[_convertctrl.TargetFormat].VideoFormats;index = targetvideoformats.IndexOf("{34363248-0000-0010-8000-00AA00389B71}");// H264targetvideoformats.Selection = index;// select AAC audio target formatTargetAudioFormats targetaudioformats = _convertctrl.TargetFormats[_convertctrl.TargetFormat].AudioFormats;index = targetaudioformats.IndexOf("{00001610-0000-0010-8000-00AA00389B71}");// AACtargetaudioformats.Selection = index;// set the target output file and format_convertctrl.TargetFile = outFile;// if the source has a non-zero duration, convert itif (_convertctrl.Duration > 0){// set the selected area for conversion_convertctrl.SelectionStart = 10;_convertctrl.SelectionEnd = 20;// subscribe to the progress event_convertctrl.Progress += new ProgressEventHandler(ConvertCtrl_Progress);// start the capture process_convertctrl.StartConvert();// set a timer on our form to do something_form.TestTimer.Tick += new EventHandler(TestTimer_Tick);_form.TestTimer.Interval = 1000;_form.TestTimer.Start();// 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|| _convertctrl.State == ConvertState.Paused)Application.DoEvents();}}catch (Exception){_result = false;}}void ConvertCtrl_Progress(object sender, ProgressEventArgs e){if (_convertctrl.PercentComplete > 30){// get the percentage complete_percent = _convertctrl.PercentComplete;// pause the conversion to demonstrate pausing_convertctrl.PauseConvert();_paused = true;}}void TestTimer_Tick(object sender, EventArgs e){_form.TestTimer.Stop();if (_paused){// if we are paused, resumeif (_convertctrl.State == ConvertState.Paused){// resume the conversion_convertctrl.RunConvert();// set the result_result = true;_paused = false;}}_form.TestTimer.Start();}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()Public _convertctrl As ConvertCtrlPublic _paused As Boolean = FalsePublic _percent As Integer = 0Public Sub ConvertExample()' reference the convert control_convertctrl = _form.ConvertCtrl' input and output filesDim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi")Dim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ConvertExample.mp4")Try' set the source for conversion_convertctrl.SourceFile = inFile' select MP4 target format_convertctrl.TargetFormat = TargetFormatType.MP4' select H264 video target formatDim index As Integer = -1Dim trgvideoformats As TargetVideoFormats = _convertctrl.TargetFormats(_convertctrl.TargetFormat).VideoFormatsindex = trgvideoformats.IndexOf("{34363248-0000-0010-8000-00AA00389B71}") ' H264trgvideoformats.Selection = index' select AAC audio target formatDim trgaudioformats As TargetAudioFormats = _convertctrl.TargetFormats(_convertctrl.TargetFormat).AudioFormatsindex = trgaudioformats.IndexOf("{00001610-0000-0010-8000-00AA00389B71}") ' AACtrgaudioformats.Selection = index' set the target output file and format_convertctrl.TargetFile = outFile' set the target output format_convertctrl.TargetFormat = TargetFormatType.MP4' if the source has a non-zero duration, convert itIf _convertctrl.Duration > 0 Then' set the selected area for conversion_convertctrl.SelectionStart = 10_convertctrl.SelectionEnd = 20' subscribe to the progress eventAddHandler _convertctrl.Progress, AddressOf ConvertCtrl_Progress' start the capture process_convertctrl.StartConvert()' set a timer on our form to do somethingAddHandler _form.TestTimer.Tick, AddressOf TestTimer_Tick_form.TestTimer.Interval = 1000_form.TestTimer.Start()' 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.Running OrElse _convertctrl.State = ConvertState.PausedApplication.DoEvents()LoopEnd IfCatch e1 As Exception_result = FalseEnd TryEnd SubPrivate Sub ConvertCtrl_Progress(ByVal sender As Object, ByVal e As ProgressEventArgs)If _convertctrl.PercentComplete > 30 Then' get the percentage complete_percent = _convertctrl.PercentComplete' pause the conversion to demonstrate pausing_convertctrl.PauseConvert()_paused = TrueEnd IfEnd SubPrivate Sub TestTimer_Tick(ByVal sender As Object, ByVal e As EventArgs)_form.TestTimer.Stop()If _paused Then' if we are paused, resumeIf _convertctrl.State = ConvertState.Paused Then' resume the conversion_convertctrl.RunConvert()' set the result_result = True_paused = FalseEnd IfEnd If_form.TestTimer.Start()End SubPublic NotInheritable Class LEAD_VARSPublic Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 19\Media"End Class
|
Products |
Support |
Feedback: SourceType Property (ConvertCtrl) - Leadtools.MediaFoundation |
Introduction |
Help Version 19.0.2017.6.16
|

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
Your email has been sent to support! Someone should be in touch! If your matter is urgent please come back into chat.
Chat Hours:
Monday - Friday, 8:30am to 6pm ET
Thank you for your feedback!
Please fill out the form again to start a new chat.
All agents are currently offline.
Chat Hours:
Monday - Friday
8:30AM - 6PM EST
To contact us please fill out this form and we will contact you via email.