public virtual bool ClosedCaptioning { get; set; }
true if closed captioning is enabled; false, if closed captioning is disabled. the default value is false.
Closed captioning is the text transcription of the audio stream overlaid on the video frame. Assignment can raise an error exception. For more information, refer to the Error Codes.
using Leadtools;using Leadtools.Multimedia;using LeadtoolsMultimediaExamples.Fixtures;public bool _result = false;public PlayCtrlForm _form = new PlayCtrlForm();public PlayCtrl _playctrl;public void ClosedCaptioningExample(){// reference the capture control_playctrl = _form.PlayCtrl;// input file namesstring inFile = Path.Combine(LEAD_VARS.MediaDir, "SourceVideoCC.avi");try{// turn off auto start_playctrl.AutoStart = false;// use DVD source_playctrl.UseDVDSource = true;// set the allowed stream types_playctrl.AllowedStreams = StreamFormatType.AudioVideoCC;// set the source file_playctrl.SourceFile = inFile;// check whether closed captioning is enabledif (_playctrl.ClosedCaptioning == false){// try to toggle closed captioning_playctrl.ToggleClosedCaptioning();}// if closed captioning is availableif (_playctrl.ClosedCaptioning){// set the result_result = true;}// start the playback_playctrl.Run();// 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 (_playctrl.State == PlayState.Running)Application.DoEvents();}catch (Exception){_result = false;}}static class LEAD_VARS{public const string MediaDir = @"C:\LEADTOOLS23\Media";}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
