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 06-03-2010, 02:01 AM
Ender Ender is offline
Sage Advanced User
 
Join Date: Sep 2007
Location: Upsate New York
Posts: 175
Firewire Channel Changing Question

Now I have read the entire STB Firewire (IEEE-1394) Support thread, and did not see a solution to my problem there, therefore I would ask all if they know of a resolution here.

I have had firewire channel changing working well on my SA4250HDC cable box with both EXEMultituner, and FWChannelproxy, currently I am using FWChannelproxy.

Alas a few weeks ago Time Warner decided to downgrade the os on the box to their new Navigator (Mystro ODN 3.13_3) software form the old SARA os.

My issue as of this time is every few hours of inactivity on the cable box, it will go into a screen saver mode. Fortunately as of now it has not affected a recording in progress, but, if the box ix in screen saver mode when a channel change goes through I loose the first digit, so if channel 818 is to be tuned, it tunes to 18 instead.

Has anyone come up with a way to correct this? Currently I go about an record some random channel in the time slot prior to the desired show i wish to record, but this is tedious, and I am sure i will forget one.

An idea I have is to find a way to either send a keypress down the line early, if possible, or send the channel change command twice. The only problem is i cannot fathom how to do it.
Reply With Quote
  #2  
Old 06-03-2010, 07:36 AM
rrhorer rrhorer is offline
Sage Advanced User
 
Join Date: Nov 2008
Posts: 211
Another Firewire Channel Changing Question

I do not have the answer for you; but I believe I recall seeing an answer to this problem in a different thread (or threads) than the one you read. Could I ask what OS you have? I had firewire channel changing working with my SA 4240 HDC on Vista. On moving to Win 7, it no longer works from Sage (V7). If your OS is Win 7, I would like to know how you got it working. Mine does work from thecommand prompt, just not from Sage.

BTW, good luck with getting an answer right now. It seems that everyone is preoccupied with the evolving plugin features and other matters related to Sage 7. I say this because I've noticed several 0 replies recently -- mine was posted yesterday (see it several lines below).
__________________
unRAID Basic Server, Sage & OpenDCT Dockers, Core i3-8100, 8G Memory, HDHR Prime, HD300 Extender, Shield & Android Miniclient, Harmony Hub/Remote
Reply With Quote
  #3  
Old 06-03-2010, 12:51 PM
Ender Ender is offline
Sage Advanced User
 
Join Date: Sep 2007
Location: Upsate New York
Posts: 175
I am running Win 7 32 bit, with Sage 7. I do have channel changing working. It is more the issue of the cable box going to sleep every after a few hours of inactivity, thereby causing tuning errors.

I have UAC turned off, and tuning with FWChannel Proxy. I do though have to use c:\STBFirewire\channelw.exe -f -a6 %DEVICE% %CHANNEL% to effectively change channels.
Reply With Quote
  #4  
Old 06-03-2010, 02:24 PM
rrhorer rrhorer is offline
Sage Advanced User
 
Join Date: Nov 2008
Posts: 211
Thanks for a Response

Thanks for responding. I was starting to feel as though my posts had an attached virus that everyone was avoiding. Anyway, I tried with FWChannelproxy, but must have let the earlier version (without ability to set the "a6" parameter) slip in. I'll give it another go with the later version.
__________________
unRAID Basic Server, Sage & OpenDCT Dockers, Core i3-8100, 8G Memory, HDHR Prime, HD300 Extender, Shield & Android Miniclient, Harmony Hub/Remote
Reply With Quote
  #5  
Old 06-03-2010, 04:49 PM
Graygeek Graygeek is offline
Sage Advanced User
 
Join Date: Mar 2008
Location: Northeastern NC
Posts: 193
I've noted the same thing with my TWC SA4250HD. I noticed that if I park the box on a local station it does not sleep. My suspicion is it happens only on Switched Digital Video channels. I just, today, added a scheduled task that kicks the same channel change routine that Exetuner calls to a certain local channel. I change, delay 5 seconds and change again. If all goes as planned that should park my box on that channel at 3AM every day. All my channels are 3 digit so I also setup 4 digit tuning. i.e. channel 700 will tune as 0700. I'll leave feedback on how this works. Maybe someone will post a better solution before then ... fingers crossed! hmmm .... I wonder it I can do a double channel change via Exetuner, go experiment for this weekend.

Last edited by Graygeek; 06-03-2010 at 04:52 PM.
Reply With Quote
  #6  
Old 06-11-2010, 01:05 AM
Ender Ender is offline
Sage Advanced User
 
Join Date: Sep 2007
Location: Upsate New York
Posts: 175
A mild breakthrough

Well I went and experimented a bit.

I can now have sage do a double channel change via exemultituner, it though is a bit of a kludge, and really looks ugly while channels are being changed, but I can overcome that in short order I hope.

What I did was, replace the command line in the registry to:

Code:
[HKEY_LOCAL_MACHINE\SOFTWARE\Frey Technologies\Common\EXEMultiTunerPlugin]
"command"="c:\\Firewire\\fwchange.bat %DEVICE% %CHANNEL%"
This of course runs a batch file (must learn how to use vbs scripts)

Code:
c:\Firewire\channel -f -v -a0 %1 %2
choice /T 4 /D y
c:\Firewire\channel -f -v -a0 %1 %2
I found that anything less than a four second delay in the commands produces unreliable results.

My main issue now is while the batch file is running, the command console window comes up, and that is the ugly part. Must go try and fix that issue next.
Reply With Quote
  #7  
Old 06-11-2010, 07:47 AM
rrhorer rrhorer is offline
Sage Advanced User
 
Join Date: Nov 2008
Posts: 211
You can try writing a simple stand-alone program (e.g., in Visual Basic) to execute channelw.exe from the command line w/o opening the console window, using the Windows API function "ShellExecute". In the simple Delphi program that I wrote, the relevant line was as follows:

ShellExecute(Handle, 'open', PChar('cmd.exe'), PChar(s), Pchar(s2),SW_HIDE);

-- where the PChar(s) and Pchar(s2) parameters allowed input of the actual command ("channelw -f -a6 2") and the channelw.exe path ("c:\STBFirewire"). The actual command with parameters filled in for changing to channel 710 would be:

ShellExecute(Handle, 'open', PChar('cmd.exe'), PChar(/c channelw -f -a6 2 710), Pchar(c:\STBFirewire),SW_HIDE);

My Delphi program was about 7 lines of code and would change channels quickly and reliably. The command line part is the "/c" that precedes "channelw". I believe you could accomplish the same thing as above by substituting your own fwchange.exe for fwchange.bat in the above registry "command". For coding examples in Visual Basic or other programming languages, simply google "ShellExecute".
__________________
unRAID Basic Server, Sage & OpenDCT Dockers, Core i3-8100, 8G Memory, HDHR Prime, HD300 Extender, Shield & Android Miniclient, Harmony Hub/Remote
Reply With Quote
  #8  
Old 06-11-2010, 12:12 PM
Ender Ender is offline
Sage Advanced User
 
Join Date: Sep 2007
Location: Upsate New York
Posts: 175
That is my next endeavor, too bad my programming skills are a bit rusty. Haven't done much in many years. Thanks for the nudge in the right direction.
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
Possible to use STB Firewire for channel changing only? rob.sfo Hardware Support 30 12-15-2009 09:25 PM
Channel changing via Firewire showson1 Hardware Support 1 10-15-2008 02:08 PM
Did 6.4.5 break FireWire channel changing? mihooper SageTV Beta Test Software 3 07-24-2008 07:51 PM
Firewire channel changing gjvrieze Hardware Support 4 07-07-2008 03:05 PM
firewire channel changing question GbrNole Hardware Support 14 12-17-2007 11:21 PM


All times are GMT -6. The time now is 04:37 AM.


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