LEADTOOLS Multimedia (Leadtools.Multimedia assembly)
LEAD Technologies, Inc

SetClosedCaptioningTargetFile Method

Example 





A character string that contains the filename to save the closed captioning data.
Value that represents the desired save options. For a list of possible values, refer to ClosedCaptioningFlags enumeration values.
Sets the filename and options to save closed captioning data as SRT or TEXT format files.
Syntax
public virtual void SetClosedCaptioningTargetFile( 
   string FileName,
   ClosedCaptioningFlags Flags
)
'Declaration
 
Public Overridable Sub SetClosedCaptioningTargetFile( _
   ByVal FileName As String, _
   ByVal Flags As ClosedCaptioningFlags _
) 
'Usage
 
Dim instance As ConvertCtrl
Dim FileName As String
Dim Flags As ClosedCaptioningFlags
 
instance.SetClosedCaptioningTargetFile(FileName, Flags)
public virtual void SetClosedCaptioningTargetFile( 
   string FileName,
   ClosedCaptioningFlags Flags
)
 function Leadtools.Multimedia.ConvertCtrl.SetClosedCaptioningTargetFile( 
   FileName ,
   Flags 
)
public:
virtual void SetClosedCaptioningTargetFile( 
   String^ FileName,
   ClosedCaptioningFlags Flags
) 

Parameters

FileName
A character string that contains the filename to save the closed captioning data.
Flags
Value that represents the desired save options. For a list of possible values, refer to ClosedCaptioningFlags enumeration values.
Remarks

Use this method to save the decoded closed captioning data coming from LEAD MPEG2 decoder. Closed captioning data might be embedded inside MPEG2 Video Elementary stream. If so, then the convert object is able to decode this data and write it to SRT format using this method, were the closed captioning text and time are saved. For more information, refr to http://en.wikipedia.org/wiki/SubRip. Also the convert object can save the closed captioning data as text.

By default this method saves the data as SRT file; but if ClosedCaptioningFlags.Text is specified, the output will be as pure text file.

Example
Copy CodeCopy Code  
Public _result As Boolean = False
      Public _form As ConvertCtrlForm = New ConvertCtrlForm()
      Public Sub ClosedCaptioningTargetFile()
         ' reference the convert control
         Dim convertctrl As ConvertCtrl = _form.ConvertCtrl

         ' target file
         Dim targetFileCc As String = Path.Combine(LEAD_VARS.MediaDir, "ConvertCtrl_ClosedCaptioningTargetFile.srt")
         Dim flags As ClosedCaptioningFlags = ClosedCaptioningFlags.Default
         Dim testFile As String = String.Empty
         Dim testFlags As ClosedCaptioningFlags

         Try

            ' set target file name and save options
            convertctrl.SetClosedCaptioningTargetFile(targetFileCc, flags)

            convertctrl.GetClosedCaptioningTargetFile(testFile, testFlags)

            If testFile = targetFileCc AndAlso testFlags = flags Then
               _result = True
            Else
               _result = False
            End If
         Catch e1 As Exception
            _result = False
         End Try
      End Sub

Public NotInheritable Class LEAD_VARS
   Public Const MediaDir As String = "C:\Program Files (x86)\LEAD Technologies\LEADTOOLS 175\Media";
End Class
public bool _result = false;
      public ConvertCtrlForm _form = new ConvertCtrlForm();
      public void ClosedCaptioningTargetFile()
      {
         // reference the convert control
         ConvertCtrl convertctrl = _form.ConvertCtrl;

         // target file
         string targetFileCc = Path.Combine(LEAD_VARS.MediaDir,"ConvertCtrl_ClosedCaptioningTargetFile.srt");
         ClosedCaptioningFlags flags = ClosedCaptioningFlags.Default;
         string testFile;
         ClosedCaptioningFlags testFlags;

         try
         {
            // set target file name and save options
            convertctrl.SetClosedCaptioningTargetFile(targetFileCc, flags);

            convertctrl.GetClosedCaptioningTargetFile(out testFile, out testFlags);

            if (testFile == targetFileCc && testFlags == flags)
               _result = true;
            else
               _result = false;
         }
         catch (Exception)
         {
            _result = false;
         }
      }

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

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ConvertCtrl Class
ConvertCtrl Members
GetClosedCaptioningTargetFile Method

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 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