home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
Watch / Listen Media
Television (MyTV frontend and TV-Server)
Ceton CableCard TV tuner with Mediaportal
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="DiskHead" data-source="post: 728692" data-attributes="member: 112323"><p>I should mention, in case it has some significance, that when I downloaded the source TestApp wouldn't compile. Here are the changes I made to it to get to compile / run.</p><p></p><p>Changes to get a successful compile:</p><p>1.) In TestApp\Form1.cs line 52, I changed the line from:</p><p>private readonly TvCardCollection _tvcards = new TvCardCollection();</p><p>to</p><p>private readonly TvCardCollection _tvcards = new TvCardCollection(null);</p><p></p><p>as there is no defaut constructor.</p><p></p><p>2.) In testApp\FormATSCChannel.cs, line 52, I commented out the line as ATSCChannel does not have a definition for SymbolRate.</p><p></p><p>//_channel.SymbolRate = -1;</p><p></p><p>3.) In TestApp\Form1.cs, line 300 and 420, I removed the first argument as the method StartRecording only takes 1 argument.</p><p></p><p>4.) I had to add DirectShowLib as a reference in TestApp because it was missing.</p><p></p><p>Changes to get TestApp to run (without error) to the point where the list of BDA devices is retrieved:</p><p>1.) TvCardCollection, lines 58 and 59 I was getting an exception getting a setting value so I just set the value manually.</p><p></p><p> Setting setting = layer.GetSetting("delayCardDetect", "0");</p><p> int delayDetect = Convert.ToInt32(setting.Value);</p><p></p><p>to</p><p></p><p> //Setting setting = layer.GetSetting("delayCardDetect", "0");</p><p> int delayDetect = 0;</p></blockquote><p></p>
[QUOTE="DiskHead, post: 728692, member: 112323"] I should mention, in case it has some significance, that when I downloaded the source TestApp wouldn't compile. Here are the changes I made to it to get to compile / run. Changes to get a successful compile: 1.) In TestApp\Form1.cs line 52, I changed the line from: private readonly TvCardCollection _tvcards = new TvCardCollection(); to private readonly TvCardCollection _tvcards = new TvCardCollection(null); as there is no defaut constructor. 2.) In testApp\FormATSCChannel.cs, line 52, I commented out the line as ATSCChannel does not have a definition for SymbolRate. //_channel.SymbolRate = -1; 3.) In TestApp\Form1.cs, line 300 and 420, I removed the first argument as the method StartRecording only takes 1 argument. 4.) I had to add DirectShowLib as a reference in TestApp because it was missing. Changes to get TestApp to run (without error) to the point where the list of BDA devices is retrieved: 1.) TvCardCollection, lines 58 and 59 I was getting an exception getting a setting value so I just set the value manually. Setting setting = layer.GetSetting("delayCardDetect", "0"); int delayDetect = Convert.ToInt32(setting.Value); to //Setting setting = layer.GetSetting("delayCardDetect", "0"); int delayDetect = 0; [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
Watch / Listen Media
Television (MyTV frontend and TV-Server)
Ceton CableCard TV tuner with Mediaportal
Contact us
RSS
Top
Bottom