Gets the analog video TV standards supported by the installed tuner.
public Leadtools.Multimedia.AnalogVideoStandard AvailableTVFormats {get;}
Public ReadOnly Property AvailableTVFormats As Leadtools.Multimedia.AnalogVideoStandard
public:
property Leadtools.Multimedia.AnalogVideoStandard AvailableTVFormats {
Leadtools.Multimedia.AnalogVideoStandard get();
}
A AnalogVideoStandard enumeration value indicating the standard format types available.
Gets the analog video TV standards supported by the installed tuner. For more detailed information, refer to the Microsoft documentation for IAMTVTuner.get_AvailableTVFormats.
using Leadtools;
using Leadtools.Multimedia;
using LeadtoolsMultimediaExamples.Fixtures;
public bool _result = false;
public CaptureCtrlForm _form = new CaptureCtrlForm();
public void AvailableTVFormatsExample()
{
// reference the forms capture control and tv tuner
CaptureCtrl capturectrl = _form.CaptureCtrl;
try
{
// select the first device with analog in it's name
// Replace "Analog" with your video capture device name
if (capturectrl.VideoDevices["Analog"] == null)
throw new Exception("No Analog video devices available!");
capturectrl.VideoDevices["Analog"].Selected = true;
// get the TV Tuner device
TVTuner tvtuner = capturectrl.TVTuner;
// check whether the TV tuner is valid
if (tvtuner != null)
{
// get the available TV formats
AnalogVideoStandard formats = tvtuner.AvailableTVFormats;
// check the returned formats for NTSC_M and set the result to what we expect
if ((formats & AnalogVideoStandard.NTSC_M) == AnalogVideoStandard.NTSC_M)
{
// set the result
if (tvtuner.TVFormat == AnalogVideoStandard.NTSC_M)
_result = true;
}
}
}
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 (capturectrl.State == CaptureState.Running)
Application.DoEvents();
}
Imports Leadtools
Imports Leadtools.Multimedia
Imports LeadtoolsMultimediaExamples.Fixtures
Public _result As Boolean = False
Public _form As CaptureCtrlForm = New CaptureCtrlForm()
Public Sub AvailableTVFormatsExample()
' reference the forms capture control and tv tuner
Dim capturectrl As CaptureCtrl = _form.CaptureCtrl
Try
' select the first device with analog in it's name
' Replace "Analog" with your video capture device name
If capturectrl.VideoDevices("Analog") Is Nothing Then
Throw New Exception("No Analog video devices available!")
End If
capturectrl.VideoDevices("Analog").Selected = True
' get the TV Tuner device
Dim tvtuner As TVTuner = capturectrl.TVTuner
' Check if TV tuner is valid
If Not tvtuner Is Nothing Then
' get the available TV formats
Dim formats As AnalogVideoStandard = tvtuner.AvailableTVFormats
' check the returned formats for NTSC_M and set the result to what we expect
If (formats And AnalogVideoStandard.NTSC_M) = AnalogVideoStandard.NTSC_M Then
' set the result
If tvtuner.TVFormat = AnalogVideoStandard.NTSC_M Then
_result = True
End If
End If
End If
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 capturectrl.State = CaptureState.Running
Application.DoEvents()
Loop
End Sub
Products |
Support |
Feedback: AvailableTVFormats Property (TVTuner) - Leadtools.Multimedia |
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.