SetClosedCaptioningTargetFile Method (original) (raw)
Summary
Sets the filename and options to save closed captioning data as SRT or TEXT format files.
Syntax
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.
Example
using Leadtools;
using Leadtools.Multimedia;
using LeadtoolsMultimediaExamples.Fixtures;
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:\LEADTOOLS22\Media";
}