C#
VB
C++
Gets the analog video TV standards supported by the installed tuner.
public AnalogVideoStandard AvailableTVFormats { get; } Public ReadOnly Property AvailableTVFormats As Leadtools.Mediafoundation.AnalogVideoStandard public:property Leadtools.Mediafoundation.AnalogVideoStandard AvailableTVFormats {Leadtools.Mediafoundation.AnalogVideoStandard get();}
An 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.MediaFoundation;using LeadtoolsMediaFoundationExamples.Fixtures;public bool _result = false;public CaptureCtrlForm _form = new CaptureCtrlForm();public void AvailableTVFormatsExample(){// reference the forms capture control and tv tunerCaptureCtrl capturectrl = _form.CaptureCtrl;try{// select the first device with analog in it's name// Replace "Analog" with your video capture device nameif (capturectrl.VideoDevices["Analog"] == null)throw new Exception("No Analog video devices available!");capturectrl.VideoDevices["Analog"].Selected = true;// get the TV Tuner deviceTVTuner tvtuner = capturectrl.TVTuner;// Check if TV tuner is validif (tvtuner != null){// get the available TV formatsAnalogVideoStandard formats = tvtuner.AvailableTVFormats;// check the returned formats for NTSC_M and set the result to what we expectif ((formats & AnalogVideoStandard.NTSC_M) == AnalogVideoStandard.NTSC_M){// set the resultif (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 LeadtoolsImports Leadtools.MediaFoundationImports LeadtoolsMediaFoundationExamples.FixturesPublic _result As Boolean = FalsePublic _form As CaptureCtrlForm = New CaptureCtrlForm()Public Sub AvailableTVFormatsExample()' reference the forms capture control and tv tunerDim capturectrl As CaptureCtrl = _form.CaptureCtrlTry' select the first device with analog in it's name' Replace "Analog" with your video capture device nameIf capturectrl.VideoDevices("Analog") Is Nothing ThenThrow New Exception("No Analog video devices available!")End Ifcapturectrl.VideoDevices("Analog").Selected = True' get the TV Tuner deviceDim tvtuner As TVTuner = capturectrl.TVTuner' Check if TV tuner is validIf Not tvtuner Is Nothing Then' get the available TV formatsDim formats As AnalogVideoStandard = tvtuner.AvailableTVFormats' check the returned formats for NTSC_M and set the result to what we expectIf (formats And AnalogVideoStandard.NTSC_M) = AnalogVideoStandard.NTSC_M Then' set the resultIf tvtuner.TVFormat = AnalogVideoStandard.NTSC_M Then_result = TrueEnd IfEnd IfEnd IfCatch e1 As Exception_result = FalseEnd 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.RunningApplication.DoEvents()LoopEnd Sub
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
