SageTV Community  

Go Back   SageTV Community > Hardware Support > Hardware Support
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

Hardware Support Discussions related to using various hardware setups with SageTV products. Anything relating to capture cards, remotes, infrared receivers/transmitters, system compatibility or other hardware related problems or suggestions should be posted here.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 02-05-2009, 12:09 PM
jpaddock3000 jpaddock3000 is offline
Sage Aficionado
 
Join Date: Dec 2006
Location: San Diego, CA
Posts: 341
Channel Changing not working properly on DirecTV HD-DVR

Not sure if this should be in the hardware forums, but I'm having a problem where Sage is sending the wrong channel change on my HD-DVR. I have 1 HD-DVR and 3 standard receivers. Channel changing on the standard receivers work great. The only time tuning doesn't work on the HD-DVR is if I'm tuning into a standard def channel when their is an HD channel as an option. Since right now, I don't have a way to capture HD, I'm only subscribed to standard def. Any time I tune into USA, TLC, HGTV, etc. I get a message saying that I haven't subscribed. I have excluded the HD channels from the program guide as well.

I'm using exemutlituner plugin to do my channel changing with the directv.exe program. Doing channel changes outside of sage works perfectly fine.

Any help would be great.

Also, the reason I got the HD-DVR even though I can't capture HD, it was FREE!!! Plus the HD-DVR, you can do Video on Demand. I haven't played with that yet though. Just thought I would answer that question ahead of time.

Thanks
Reply With Quote
  #2  
Old 02-05-2009, 12:15 PM
TallMomof2's Avatar
TallMomof2 TallMomof2 is offline
Sage Aficionado
 
Join Date: Aug 2008
Posts: 258
What is your tuner card/device? Hauppauge's HD-PVR is the only consumer level device that can record all the HD channels.
__________________
Server: Windows 8x64, ASUS P8 H67-M Pro Micro ATX, Core i5, 8 RAM, 14TB running latest Sage

Clients: HD200, HD300, Win7 Desktop

Capture Devices: Hauppauge Colossus & 1 HDHR, TV Service: Verizon FIOS
Reply With Quote
  #3  
Old 02-05-2009, 12:17 PM
jpaddock3000 jpaddock3000 is offline
Sage Aficionado
 
Join Date: Dec 2006
Location: San Diego, CA
Posts: 341
Quote:
Originally Posted by TallMomof2 View Post
What is your tuner card/device? Hauppauge's HD-PVR is the only consumer level device that can record all the HD channels.
I'm just using the PVR-500 to capture SD. I'm not using the HD functionality right now. I might plan on doing that a few months to a year down the road. The problem is Sage is trying to tune into the HD channel when I'm telling it to tune the SD Channel.
Reply With Quote
  #4  
Old 02-06-2009, 11:02 AM
TallMomof2's Avatar
TallMomof2 TallMomof2 is offline
Sage Aficionado
 
Join Date: Aug 2008
Posts: 258
Go into your channel setup and unmark the HD channels for your PVR-500. Make sure the SD channels are marked.

If that doesn't work you might want to submit a ticket.
__________________
Server: Windows 8x64, ASUS P8 H67-M Pro Micro ATX, Core i5, 8 RAM, 14TB running latest Sage

Clients: HD200, HD300, Win7 Desktop

Capture Devices: Hauppauge Colossus & 1 HDHR, TV Service: Verizon FIOS
Reply With Quote
  #5  
Old 02-10-2009, 08:11 PM
jpaddock3000 jpaddock3000 is offline
Sage Aficionado
 
Join Date: Dec 2006
Location: San Diego, CA
Posts: 341
OK, so DirecTV made an update on all HD boxes that will have the channel auto tune to the HD version of the channel if available. So, I went ahead and modified the batch file of directvmultichg.bat to show:

Code:
rem  Created Oct 20 2008
rem  This batch file uses the DirecTVChannelControl executable designed for GBPVR
rem
rem  This batch file and the "directv.exe" file go into the SageTV directory
rem  Registry command: DirecTVMultiChg.bat %DEVICE% %CHANNEL%
rem
rem  The %1 represents the tuner device (%DEVICE%) number passed from SageTV
rem  The %2 represents the channel (%CHANNEL%) value passed from SageTV
rem  Both values used as arguments to the executable batch file

rem  Each device must be assigned to a COM port
SET /A CURDEVICE = %1

IF %CURDEVICE% EQU 1 SET USEPORT=1
IF %CURDEVICE% EQU 2 SET USEPORT=2
IF %CURDEVICE% EQU 3 GOTO HDDVR
IF %CURDEVICE% EQU 4 SET USEPORT=4
IF %CURDEVICE% EQU 5 SET USEPORT=5
IF %CURDEVICE% EQU 6 SET USEPORT=6
GOTO tunechan



:tunechan
rem  This is the command for generic 3-digit channels
directv.exe -port COM%USEPORT% -box D10100 -key %2
GOTO end

:HDDVR
IF %CURDEVICE% EQU 3 SET USEPORT=3
directv.exe -port COM%USEPORT% -box D10100 -key %2
ping -n 3 localhost
IF %2 EQU 202 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 206 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 207 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 209 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 212 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 213 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 215 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 217 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 218 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 224 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 229 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 231 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 241 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 242 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 244 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 245 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 247 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 248 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 249 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 265 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 266 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 269 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 273 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 276 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 278 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 280 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 282 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 284 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 286 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 290 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 292 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 296 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 299 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 311 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 327 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 331 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 335 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 355 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 359 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 360 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 362 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 501 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 504 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 512 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 514 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 520 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 521 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 522 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 537 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 538 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 539 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 540 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 542 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 544 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 603 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 607 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 610 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
IF %2 EQU 618 directv.exe -port COM%USEPORT% -box D10100 -key ch_up
GOTO end

:end
Since port 3 is my HD-DVR, it gets its own section in the batch file. Since there are many non HD channels, I had to put an IF statement for the exact channels to look for. I've tested this and it works pretty great. Not sure if anyone else will need it, but thought I would post the fix.
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
DirecTV H23-600 Channel Changing Problems bstowers Hardware Support 22 12-11-2009 11:27 AM
EXETunerPlugin and DirecTV STB channel changing natrlhy SageTV Software 2 04-03-2007 03:27 PM
D10 Directv slow channel changing traker1001 Hardware Support 16 03-15-2007 04:03 PM
Anyone else have DirecTV channel changing problems with RC3? ben_gb SageTV Beta Test Software 1 05-08-2004 09:35 AM
DirecTV Channel Changing. Please help. dman65 SageTV Software 26 04-01-2004 12:57 PM


All times are GMT -6. The time now is 05:08 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.