TuningSpace Property

Summary
Gets or sets the current tuning space.
Syntax
C#
C++/CLI
public int TuningSpace { get; set; } 
public: 
property int TuningSpace { 
   int get(); 
   void set (    int ); 
} 

Property Value

A value representing the tuning space identifier.

Remarks

Gets or sets the current tuning space. A tuning space is a set of information about the available channels and the channel to frequency mapping, which can identify a particular network provider or broadcast source. Multiple tuning spaces can be determined and stored for use in multiple areas. To get the most precise frequency for a particular channel, use the AutoTune method. Once the frequencies for all channels have been found by using the AutoTune method, this information can be stored by calling the StoreAutoTune method. For more detailed information, refer to the Microsoft documentation for IAMTuner.get_TuningSpace.

Example
C#
using Leadtools; 
using Leadtools.Multimedia; 
using LeadtoolsMultimediaExamples.Fixtures; 
 
 
public bool _result = false; 
public CaptureCtrlForm _form = new CaptureCtrlForm(); 
 
public void TuningSpaceExample() 
{ 
   // reference the forms capture control and tv tuner 
   CaptureCtrl capturectrl = _form.CaptureCtrl; 
 
   // input and output files 
   string inFile = Path.Combine(LEAD_VARS.MediaDir, "CaptureCtrl_Source.avi"); 
   string outFile = Path.Combine(LEAD_VARS.MediaDir, "TVTuner_TuningSpaceExample.avi"); 
 
   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) 
      { 
         tvtuner.Mode = TunerModeType.TV; 
         tvtuner.SetInputType(0, TunerInputType.Antenna); 
         int tuningSpace = tvtuner.TuningSpace; 
 
         // set the current tuning space to 9999  
         // tuning spaces are user defined and allow you to override  
         // channel and frequency mappings for the given input type (Cable or Antenna) 
         tvtuner.TuningSpace = 9999; 
         tvtuner.CountryCode = 1; 
 
         int max = tvtuner.ChannelMax; 
         int min = tvtuner.ChannelMin; 
 
         // loop through some channels and tune 
         for (int i = min; i <= max; i++) 
         { 
            tvtuner.SetChannel(i, 0, 0); 
            tvtuner.AutoTune(i); 
            bool signal = (tvtuner.SignalPresent == TunerSignalStrength.SignalPresent); 
         } 
 
         // store the tuning frequencies in the tuning space registy 
         tvtuner.StoreAutoTune(); 
 
         // set the result 
         _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(); 
} 
 
static class LEAD_VARS 
{ 
   public const string MediaDir = @"C:\LEADTOOLS22\Media"; 
} 
Requirements

Target Platforms

See Also

Reference

TVTuner Class

TVTuner Members

Help Version 22.0.2022.12.7
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Multimedia Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.