LEADTOOLS Multimedia (Leadtools.Multimedia assembly)

Started Event (ConvertCtrl)

Show in webframe
Example 



Occurs when a conversion operation has started.
Syntax
'Declaration
 
Public Event Started As EventHandler
'Usage
 
Dim instance As ConvertCtrl
Dim handler As EventHandler
 
AddHandler instance.Started, handler
public event EventHandler Started
public:
event EventHandler^ Started
Remarks
Occurs when a a call to StartConvert has successfully started a conversion operation. The event handler is passed an empty EventArgs.
Example
Copy Code  
Imports Leadtools
Imports Leadtools.Multimedia
Imports LeadtoolsMultimediaExamples.Fixtures

Public _result As Boolean = False
Public _form As ConvertCtrlForm = New ConvertCtrlForm()
Public Sub StartedExample()
   Dim inFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_Source.avi")
   Dim outFile As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_StartedExample.mp4")

   ' reference the convert control
   Dim convertctrl As ConvertCtrl = _form.ConvertCtrl

   Try

      ' set the Started event handler here
      AddHandler convertctrl.Started, AddressOf ConvertCtrl_Started

      ' set the input and output files
      convertctrl.SourceFile = inFile
      convertctrl.TargetFile = outFile

           ' set the video and audio compressors for the output
      convertctrl.VideoCompressors.Mpeg2.Selected = True
      convertctrl.AudioCompressors.AC3.Selected = True

      ' convert it
      convertctrl.StartConvert()
   Catch e1 As Exception
      _result = False
   End 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.Running
      Application.DoEvents()
   Loop
End Sub

Public Sub ConvertCtrl_Started(ByVal sender As Object, ByVal e As EventArgs)
   ' set result
   _result = True
End Sub

Public NotInheritable Class LEAD_VARS
Public Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 18\Media"
End Class
using Leadtools;
using Leadtools.Multimedia;
using LeadtoolsMultimediaExamples.Fixtures;

public bool _result = false;
public ConvertCtrlForm _form = new ConvertCtrlForm();
public void StartedExample()
{
   string inFile = Path.Combine(LEAD_VARS.MediaDir,"ConvertCtrl_Source.avi");
   string outFile = Path.Combine(LEAD_VARS.MediaDir,"ConvertCtrl_StartedExample.mp4");

   // reference the convert control
   ConvertCtrl convertctrl = _form.ConvertCtrl;

   try
   {

      // set the Started event handler here
      convertctrl.Started += new EventHandler(ConvertCtrl_Started);

      // set the input and output files
      convertctrl.SourceFile = inFile;
      convertctrl.TargetFile = outFile;

      // set video and audio compressors for the output
      convertctrl.VideoCompressors.Mpeg2.Selected = true;
      convertctrl.AudioCompressors.AC3.Selected = true;

      // 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();
}

public void ConvertCtrl_Started(object sender, EventArgs e)
{
   // set result
   _result = true;
}

static class LEAD_VARS
{
public const string MediaDir = @"C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 18\Media";
}
Requirements

Target Platforms

See Also

Reference

ConvertCtrl Class
ConvertCtrl Members

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.

Leadtools.Multimedia requires a Multimedia or Multimedia Suite license and unlock key. For more information, refer to: LEADTOOLS Toolkit Features