NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Legacy (v4.x and earlier) v
« Previous 1 … 237 238 239 240 241 … 433 Next »
blast zero before channel number?

blast zero before channel number?
Torque
Offline

Senior Member

Posts: 712
Threads: 68
Joined: Jan 2005
#1
2013-11-04, 10:21 PM
I thought I remembered an option to transmit a zero before the channel number and other IR blaster options, but I can't seem to find them. I'm having trouble with a lot of missed recordings because my Dish box misses the 1st number in the channel if the channel is more than 2 digits. For example, if it's supposed to record channel 172, the Dish box misses the 1 and ultimately records channel 72. I checked the recording service log and verified it blasted 172. I'm using the USB-UIRT executable and nothing has changed with the Dishreceiver.dat file. I haven't upgraded to the lastest version yet. This issue started when I upgraded quite a few months ago to the version from April(?) of this year. Changing the channel number in the channel setup to 0172 doesn't work. What is weird is it never happens when switching channels while watching live tv.

Are there still options to tweak the blaster?

Thanks
MY PVR:
OS: Windows 7 Home Premium
Hardware: Silverstone LC13-E, Athlon II 250, Asrock 785GMH, 2GB Corsair RAM, 250GB WD HDD, 1TB WD Black, Hauppauge PVR-150 MCE tuner (s-video to Dish STB), HDHomeRun (ATSC x2), MCE2004 for Rx, USB-UIRT for Tx, Sony VL600 Remote, 36" Sony Wega HD CRT on DVI to embedded ATI HD4200.
TV Service: Dish Network and Antenna Pics 'n Details
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,753
Threads: 769
Joined: Nov 2003
#2
2013-11-05, 12:46 AM
NextPVR doesn't do the blasting itself, so this is really something you need to manage in whatever blaster software you're using. All NextPVR does is run the executable of your choosing, passing in the channel number.

You can of course have NextPVR run a batch file, and run whatever commands you want in there.
smajor
Offline

Posting Freak

Posts: 840
Threads: 115
Joined: Feb 2006
#3
2013-11-05, 01:54 AM
I had this problem with my Time Warner Set Top Boxes. Time Warner did a firmware update that would put them in a sleep/low power mode after about 5 hours of being idle. The result was the first digit was missed on a channel change because the "any button on the remote" would be the wake up signal for the box.

I created a batch file that NextPVR would call that would issue the channel change TWICE with a couple seconds pause in between the two blasts. It is harmless if the box is already awake, but stops the channel misfire when the box is sleeping. Sounds like you could probably do the same.
johnsonx42
Offline

Posting Freak

Posts: 7,298
Threads: 189
Joined: Sep 2008
#4
2013-11-05, 01:56 AM
http://forums.nextpvr.com/showthread.php...post400910
server: NextPVR 5.0.7/Win10 2004/64-bit/AMD A6-7400k/hvr-2250 & hvr-1250/Winegard Flatwave antenna/Schedules Direct
main client: NextPVR 5.0.7 Desktop Client; LG 50UH5500 WebOS 3.0 TV
Torque
Offline

Senior Member

Posts: 712
Threads: 68
Joined: Jan 2005
#5
2013-11-05, 05:58 PM
Thanks Johnson. I tried the zero padding and found that it didn't behave the same way as from the remote. Punching 0172 on the remote resulted in channel 172, but when blasted, the Dish receiver showed it received the 017 and dropped them, tuning to channel 2.

I must be up against what smajor is describing. Quite a few years ago i set a manual channel change on the Dish box itself every day at like 2am to keep that sleep/screensaver thing from coming up but as I don't watch much TV anymore I probably missed where the Dish receiver updated it's firmware and is behaving differently now. My daughters keep the PVR busy, but they're losing faith in it recording their Mickey Mouse and such. And you're right, those missed recordings are usually first thing in the morning or mid afternoon. Smajor, you wouldn't happen to have the batch file you could post, would you? Thanks.
MY PVR:
OS: Windows 7 Home Premium
Hardware: Silverstone LC13-E, Athlon II 250, Asrock 785GMH, 2GB Corsair RAM, 250GB WD HDD, 1TB WD Black, Hauppauge PVR-150 MCE tuner (s-video to Dish STB), HDHomeRun (ATSC x2), MCE2004 for Rx, USB-UIRT for Tx, Sony VL600 Remote, 36" Sony Wega HD CRT on DVI to embedded ATI HD4200.
TV Service: Dish Network and Antenna Pics 'n Details
johnsonx42
Offline

Posting Freak

Posts: 7,298
Threads: 189
Joined: Sep 2008
#6
2013-11-05, 06:47 PM
it'd just be something like:
Code:
uirtsend %1
timeout /t 2
uirtsend %1
(I'm just guessing at what the usb-uirt blast command is... obviously use the real command)
call that blasttwice.bat and use it as your blaster command.
server: NextPVR 5.0.7/Win10 2004/64-bit/AMD A6-7400k/hvr-2250 & hvr-1250/Winegard Flatwave antenna/Schedules Direct
main client: NextPVR 5.0.7 Desktop Client; LG 50UH5500 WebOS 3.0 TV
smajor
Offline

Posting Freak

Posts: 840
Threads: 115
Joined: Feb 2006
#7
2013-11-05, 08:37 PM
Pretty much what johnson42 said. I keep my .bat right off my C drive along with my Firewire channel changer "SageChanger.exe", so mine looks like:

Code:
C:\SageChanger.exe -n 6c10806b1e00 -f 3 -c %1 -p
timeout 5
C:\SageChanger.exe -n 6c10806b1e00 -f 3 -c %1 -p

The important part is %1 will be string passed from NextPVR. For me, that's JUST the channel number - {channel} in NextPVR - nothing else. Then have NextPVR use C:\channelchange.bat (or whatever you name it) as the Executable.

You'd have to make your bat file open your blaster.exe (whatever it is named) and use any flags necessary to send the blasting info.
Torque
Offline

Senior Member

Posts: 712
Threads: 68
Joined: Jan 2005
#8
2013-11-06, 03:32 AM
Thanks alot guys. I created the batch file called c:\tools\blast.bat

Code:
C:\tools\usbuirtsend.exe c:\tools\dishrec.dat %1
Timeout /t 4
C:\tools\usbuirtsend.exe c:\tools\dishrec.dat %1

I replaced the executable in the npvr channel changer setttings to the blast.bat file
For the arguments, just {channel}

It's working well changing the channel but the real test will be tomorrow recording The Octonauts! Smile
MY PVR:
OS: Windows 7 Home Premium
Hardware: Silverstone LC13-E, Athlon II 250, Asrock 785GMH, 2GB Corsair RAM, 250GB WD HDD, 1TB WD Black, Hauppauge PVR-150 MCE tuner (s-video to Dish STB), HDHomeRun (ATSC x2), MCE2004 for Rx, USB-UIRT for Tx, Sony VL600 Remote, 36" Sony Wega HD CRT on DVI to embedded ATI HD4200.
TV Service: Dish Network and Antenna Pics 'n Details
Torque
Offline

Senior Member

Posts: 712
Threads: 68
Joined: Jan 2005
#9
2013-11-08, 03:50 AM
Looks like that fixed the issue. Recording seems to be solid again. Thanks.
MY PVR:
OS: Windows 7 Home Premium
Hardware: Silverstone LC13-E, Athlon II 250, Asrock 785GMH, 2GB Corsair RAM, 250GB WD HDD, 1TB WD Black, Hauppauge PVR-150 MCE tuner (s-video to Dish STB), HDHomeRun (ATSC x2), MCE2004 for Rx, USB-UIRT for Tx, Sony VL600 Remote, 36" Sony Wega HD CRT on DVI to embedded ATI HD4200.
TV Service: Dish Network and Antenna Pics 'n Details
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  IR Server Suite Channel Changer BTJustice 26 27,313 2023-01-11, 08:49 PM
Last Post: Frapo
  Device Update - Channel Mapping chezmorris 10 4,738 2022-07-01, 01:59 PM
Last Post: mvallevand
  IPTV Channel Mapping jrockow 15 7,968 2021-03-07, 09:45 PM
Last Post: jrockow
  channel icon location Brucek2839 2 1,730 2021-03-04, 10:30 PM
Last Post: Brucek2839
  UK channel More4 - tunes but cannot view? prothed 7 2,770 2021-02-17, 02:59 PM
Last Post: Graham
  send channel chanes via winLIRC?? chef Paula 67 13,582 2021-02-11, 07:38 PM
Last Post: mvallevand
  NextPVR hangs when tuning to offline channel? CormacBaptiste 2 1,948 2021-02-03, 01:29 PM
Last Post: Graham
  Possible to set the EPG source for more than one channel at a time? LeGrandZombie 15 8,186 2020-12-06, 02:15 AM
Last Post: pitbull1969
  xmltv and EPG channel icons HaTaX 5 4,132 2020-10-28, 04:25 AM
Last Post: sub
  TV Guide Initial channel NumberFive 2 1,864 2020-07-28, 06:03 PM
Last Post: NumberFive

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode