SageTV Community  

Go Back   SageTV Community > General Discussion > General Discussion
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

General Discussion General discussion about SageTV and related companies, products, and technologies.

View Poll Results: How's the response of your remote control?
Faster than the keyboard. 2 2.74%
Same speed as the keyboard. 23 31.51%
Slower than the keyboard. 48 65.75%
Voters: 73. You may not vote on this poll

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 01-25-2005, 12:02 PM
stanger89's Avatar
stanger89 stanger89 is offline
SageTVaholic
 
Join Date: May 2003
Location: Marion, IA
Posts: 15,188
How's your remote's response time?

Hey all, got another poll for you. Been using Sage for a long time with my Streamzap and girder, and never gave much thought to response time when using my remote, just assumed it was normal. Anyway after watching the Bill Gates CES keynote and all the comments about the speed at which MCE navigates it got me thinking. The other day I tried navigating Sage with a keyboard instead, and wow, it's way faster.

So the question of the day is, how is your remote's response time?

Please post the model of your remote, and more importantly remote receiver, and anything else pertinent, like if you're using Girder.

Thanks.
Reply With Quote
  #2  
Old 01-25-2005, 12:03 PM
stanger89's Avatar
stanger89 stanger89 is offline
SageTVaholic
 
Join Date: May 2003
Location: Marion, IA
Posts: 15,188
FWIW, I use a Streamzap via Girder, and it's noticeably slower than using the keyboard.
Reply With Quote
  #3  
Old 01-25-2005, 12:07 PM
ToxMox's Avatar
ToxMox ToxMox is offline
Sage Icon
 
Join Date: Oct 2003
Location: NJ
Posts: 1,980
I'll vote after I've tested when I get home but my remote response time has always been pretty much instant.
Using HTM MX-700 remote with USB-UIRT.
Reply With Quote
  #4  
Old 01-25-2005, 12:19 PM
Blue's Avatar
Blue Blue is offline
Sage Advanced User
 
Join Date: Sep 2004
Location: DC
Posts: 130
Using the Niveus remote with THR software, and it's slower than the keyboard.
Reply With Quote
  #5  
Old 01-25-2005, 01:52 PM
Outvit Outvit is offline
Sage Advanced User
 
Join Date: Jan 2005
Posts: 187
Slower...

USB-UIRT + Phillips MCE Remote.
Reply With Quote
  #6  
Old 01-25-2005, 01:53 PM
JUC's Avatar
JUC JUC is offline
Sage Icon
 
Join Date: May 2004
Location: Vermont, USA
Posts: 1,399
ATI remote wonder with actisys---noticeably slower. I recently tried the demo of sage client on my laptop and used the keyboard for the first time and was amazed at how responsive and quick the keyboard on my laptop was compared to my remote.
Reply With Quote
  #7  
Old 01-25-2005, 02:00 PM
Cayars Cayars is offline
Sage Icon
 
Join Date: Nov 2003
Posts: 2,029
I stopped using Girder when i noticed how much slower it was. I went back to using the IR hardware/software that came with the Hauppauge boards and it's noticable faster.
Reply With Quote
  #8  
Old 01-25-2005, 02:03 PM
rich_l rich_l is offline
Sage User
 
Join Date: Sep 2004
Posts: 66
Slower with the regular hauppage remote. But its not surprising that the remote is slower.
Reply With Quote
  #9  
Old 01-25-2005, 02:22 PM
thatdude90210 thatdude90210 is offline
Sage Aficionado
 
Join Date: Feb 2004
Posts: 385
That was my thought too for a while now, that the keyboard was faster. With the keyboard (logitech wireless), it's always instantaneous. With my Hauppauge silver remote before, and now with an X10 lola + girder, I can feel a slight lag.
Reply With Quote
  #10  
Old 01-25-2005, 02:52 PM
Opus4's Avatar
Opus4 Opus4 is offline
Administrator
 
Join Date: Sep 2003
Location: NJ
Posts: 19,624
It wouldn't surprise me if the remote input is slower -- the keyboard input may still be interrupt driven (I don't remember that part of internal Widows), so Windows gets it & can process it almost immediately. Plus, the keyboard repeat rate is probably faster.

With a remote, you are adding extra layers to deal with. I don't know about the other remote software, but the Hauppauge IR code, I believe, is poll driven, so it only checks for remote input every so often, then it processes it & finally either sends a key code or event message to SageTV. If you hold the button down, there will be a delay as it skips a few polls before entering repeat mode. Once in repeat mode, it can only process repeats as often as it polls the IR receiver. The poll rate time can be adjusted, as can the repeat delay, but even if it could poll every millisecond, the remote will still emit its code at some rate that isn't that fast.

- Andy
__________________
SageTV Open Source v9 is available.
- Read the SageTV FAQ. Older PDF User's Guides mostly still apply: SageTV V7.0 & SageTV Studio v7.1.
- Hauppauge remote help: 1) Basics/Extending it 2) Replace it 3) Use it w/o needing focus
- HD Extenders: A) FAQs B) URC MX-700 remote setup
Note: This is a users' forum; see the Rules. For official tech support fill out a Support Request.
Reply With Quote
  #11  
Old 01-25-2005, 03:25 PM
ToxMox's Avatar
ToxMox ToxMox is offline
Sage Icon
 
Join Date: Oct 2003
Location: NJ
Posts: 1,980
OK so I just got home and tested. Other than the obvious delay between commands due to the built in delay to avoid double presses my setup is the same speed as using a keyboard.
Reply With Quote
  #12  
Old 01-25-2005, 03:44 PM
sudipto sudipto is offline
Sage Advanced User
 
Join Date: Nov 2003
Posts: 239
MX500 + IRMan

Speed is slower than the keyboard, but I have deliberately set it that way so that it is comfortable to use without having to worry about double presses of a remote key.
Reply With Quote
  #13  
Old 01-25-2005, 03:50 PM
nielm's Avatar
nielm nielm is offline
SageTVaholic
 
Join Date: Oct 2003
Location: Belgium
Posts: 4,496
Same as keyboard (using Girder with ATI RW (X10 plugin), and Igor generic serial IR receiver on a 600Mhz P3 equivalent EPIA M10000).

If you are using girder, part of the responsiveness depends on how (whether) you have your GML set up to handle multiple programs...

If you have (pseudocode)
Code:
Remote Event->
  if ( sageTV window has focus )
     send event to sage
  if ( other program has focus ) 
     send event to other program
Then girder could be slower at passing the event as it has to query active windows before sending events. I have seen some other GML which could be even slower with double event processing:
Code:
Remote event ->
  if ( sageTV window has focus )
     generate Girder event  xyz
  if ( other program has focus ) 
     generate other Girder event abc
Girder event xyz->
    send event to Sage
The more performant alternative in Girder is to use the Task Switch plugin to enable and disable whole groups in Girder depending on which program is active, then in the enabled/disabled groups just have simple RC event->command mappings which require minimal processing.
Code:
Task switch event ->
  disable all program-specific groups
  if ( sageTV has focus )
    enable SageTV group
  if ( other program has focus)
    enable othet program group

SageTV group {
  Remote Event ->
    send event to SageTV
}
Reply With Quote
  #14  
Old 01-25-2005, 06:15 PM
stanger89's Avatar
stanger89 stanger89 is offline
SageTVaholic
 
Join Date: May 2003
Location: Marion, IA
Posts: 15,188
My GML is roughly like your example 3, but I'd have to look at it again and see if there's any optomization I can do. Of course before I do that, I'll probably just try disabling girder and see if it helps.
Reply With Quote
  #15  
Old 01-25-2005, 06:16 PM
stanger89's Avatar
stanger89 stanger89 is offline
SageTVaholic
 
Join Date: May 2003
Location: Marion, IA
Posts: 15,188
Quote:
Originally Posted by ToxMox
OK so I just got home and tested. Other than the obvious delay between commands due to the built in delay to avoid double presses my setup is the same speed as using a keyboard.
Yeah, it's a rather complicated issue. I wrote this with the thought in my head that the Sage UI "feels" slower when using my remote vs the keyboard, so I'll have to do some experimentation and see what I figure out.
Reply With Quote
  #16  
Old 01-25-2005, 07:36 PM
Wakecrash Wakecrash is offline
Sage Aficionado
 
Join Date: Aug 2004
Posts: 265
On a client PC I use an Imon remote that sends KB commands and have not noticed any delays, certainly none compared to say using a remote to directly control a TV. Now on the MVP their is a delay, something less than 1 second, perhaps 1/2 second.
My client PC is an T-bird 1400
My server running MVP client is a AMD Sempron 2500.
Both 512Meg
Reply With Quote
  #17  
Old 01-25-2005, 07:57 PM
g808's Avatar
g808 g808 is offline
Sage Advanced User
 
Join Date: Sep 2004
Posts: 101
Firefly is instant (just as fast as keyboard).

My Harmony remote with USB-UIRT is much slower.

Is there any setting on the USB-UIRT, so the Harmony's signals are interpretted faster?

I love using my Harmony to control everything, but I find myself going back to the Firefly since it's so much faster.
__________________
Sage v7.0.16, Win7 Ultimate, Asus A8N-SLI Premium, AMD X2 3800+ Dual Core, 2GB PC3200, 2 x HD-PVR, 2 x Motorola DCT6200, HDHomeRun w/ QAM, USB-UIRT, Seagate 250GB PATA (system), WD 2TB (recordings), Gigabyte 6600GT fanless, HD300 extender
Reply With Quote
  #18  
Old 01-25-2005, 09:23 PM
turak's Avatar
turak turak is offline
Sage Expert
 
Join Date: Sep 2003
Location: Miami
Posts: 560
I get instant response from Tivo remotes with USB-UIRT on my server and one of my clients.
Reply With Quote
  #19  
Old 01-25-2005, 11:52 PM
jptaz's Avatar
jptaz jptaz is offline
Sage Fanatic
 
Join Date: May 2003
Location: Detroit Michigan
Posts: 991
My StreamZap remotes are slower at times (Using the built in software), where as my ATI Remote Wonder is very fast and responsive or at least as fast as I allow it in Girder to prevent repeat presses. I spent a lot of time trying to find a happy medium between too slow and too prone to double hits.

At some point I may use Girder for my Streamzaps that way I can allow some buttons to repeat faster than others.

John
Reply With Quote
  #20  
Old 01-26-2005, 03:55 AM
taltman taltman is offline
Sage User
 
Join Date: Nov 2004
Posts: 69
Seems about the same as the remote - maybe a touch slower. I'm using the Streamzap remote with the bundled hardware. My usb-uirt isn't being used yet....need more software...

My system is hidden around my tv so i don't use a keyboard enough to notice how "slow" it might be...its rather annoying to do tasks with the keyboard. Maybe I need a good wireless keyboard and mouse...

/Tdogg
__________________
XP Pro, SageTV v4, 2.8 Ghz Pentium 4 (FSB 800 MHz), 512 MB DDR400 Dual Channel Memory, 80 GB WD SATA (internal), 250 GB WD SATA (external - usb 2.0), Gainward Nvidia FX5200, Shuttle XPC SB61G2 V3, NEC 3500A 16x DVD Single Layer, 4x DL, PVR 250 MCE, PVR USB2, USB-UIRT, StreamZap remote
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


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


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