NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 883 884 885 886 887 … 1231 Next »
Hauppauge pvr350 tv-out and hibernate

 
  • 0 Vote(s) - 0 Average
Hauppauge pvr350 tv-out and hibernate
stu8080
Offline

Senior Member

Posts: 639
Threads: 52
Joined: Aug 2004
#41
2004-09-28, 08:48 PM
Nice one Sub, works fine. must have had IR.exe running when i tried it
GBPVR: A64 X2 6000+, ASUS M2A-VM HDMI, 4GB ram, 8800GT GFX, 2x Nova-T DVB-T, 1x D-Box2 Cable reciever, 2x Wired MVP's, 1.0.16. Vista.
Plugins: MusicLibrary2, Weather, Int Cinema Listings, Burn DVDX2, D-Box2 Plugin, DVD Ripper.
Dai
Offline

Member

Posts: 104
Threads: 15
Joined: Feb 2004
#42
2004-09-29, 12:47 PM
Just like to add my thanks for this functionality.

It's great to be able to use Standby proprerly at last.

Dai
Mikkel
Offline

Junior Member

Posts: 27
Threads: 9
Joined: Aug 2004
#43
2004-10-08, 05:50 PM
MaBo and Sub,

thanks for your great work on this. I have been away for a long time, and have not had the time to test this out, but I will as soon as I find time.

MaBo, I greatly appreciate the time you took to make a special guide for the programming illiterate (is that correct spelled??) people.

Thanks again,
Mikkel
Hauppage 350
MaBo
Offline

Senior Member

Posts: 346
Threads: 58
Joined: Dec 2003
#44
2004-10-11, 09:10 AM
Mikkel,
yo're welcome. I like things like that...

Greetz,
MaBo
ASUS pundit, pvr 350, celeron 2600, 512 MB, 160GB HD, winXP Pro, 12" touchscreen
MaBo
Offline

Senior Member

Posts: 346
Threads: 58
Joined: Dec 2003
#45
2004-11-14, 01:26 PM
Hello,
I've updated the wake.cmd file to the one below:
<table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">
ECHO OFF
REM This batchfile is executed in the first seconds
REM after waking the machine from hibernation.

REM This will re-activate the tv-out after hibernation
REM Version 0.3, 20040907 by MaBo
REM You can contact me at the GBPVR forums

REM changes:
REM 0.3.1: minor fixes. Now the recording service and ir.exe are
REM restarted also when restarting the pvr350 failed.
REM 0.3: now all in one file: wake.cmd
REM check whether a version of wake.cmd is already running

REM first check whether another version is running
SET checkfile=c:\syslog\wakingtvout.txt

IF EXIST %checkfile% GOTO EXIT

echo waking started > %checkfile%

REM An entry to the logfile is generated.
REM define the path to your system logfile here:
set logfile=c:\syslog\syslog.txt
REM If you don't want a logfile, please remove all lines containing
REM %logfile% in the file below

echo Wake from hibernation >> %logfile%
date /t >> %logfile%
time /t >> %logfile%
pushd "C:\Program Files\DevCon"
ECHO OFF

REM In order to restart the pvr350, it should not be in use.
REM Therefore, the remote control program has to be stopped
REM modify the path when you have not made a default install.
"C:\Program Files\WinTV\Ir.exe" /QUIT

REM Then the GB-PVR recordingservice has to be stopped.
REM This will stop any running recordings!!
REM This is assumed to be safe, as the computer has just
REM woken from hibernation/standby. So it was idle.
net stop "GB-PVR Recording Service"
REM echo Recording service stopped >> %logfile%
REM date /t >> %logfile%
REM time /t >> %logfile%

REM Then the program devcon is called to do the actual restarting
REM devcon.exe can be downloaded from microsoft.com
devcon.exe restart PCI\VEN_4444^&amp;DEV_0803
REM the entire identification of the PVR 350 was
REM in my case: PCI\VEN_4444&amp;DEV_0803&amp;SUBSYS_40000070&amp;REV_01\3&amp;61AAA01&amp;0&amp;70
REM However, the &amp;-signs posed problems.
REM By using only PCI\VEN_4444, any pvr250's are probably restarted as well.

IF ERRORLEVEL 3 GOTO SYNTAX
IF ERRORLEVEL 2 GOTO FAILURE
IF ERRORLEVEL 1 GOTO REBOOT
IF ERRORLEVEL 0 GOTO SUCCES

:SUCCES
echo pvr350 restarted succesfully >> %logfile%
date /t >> %logfile%
time /t >> %logfile%
GOTO END

:REBOOT
REM The pvr350 could not be restarted. Probably because it was in use
REM by some program. A reboot is needed.
echo The pvr350 could not be restarted. Reboot required >> %logfile%
date /t >> %logfile%
time /t >> %logfile%
REM You could add a command here to automatically reboot your machine.
GOTO END

:FAILURE
REM The pvr350 could not be restarted at all.
echo pvr350 could not be restarted succesfully >> %logfile%
date /t >> %logfile%
time /t >> %logfile%
GOTO END

:SYNTAX
REM Syntax error.
echo There is a syntax error in wake.cmd >> %logfile%
date /t >> %logfile%
time /t >> %logfile%
GOTO END

:END
REM The statements below are always performed. Even when
REM errors have occured.
REM Restart the recordingservice
net start "GB-PVR Recording Service"
REM echo Recording service started >> %logfile%
REM date /t >> %logfile%
REM time /t >> %logfile%

REM Restart remote control
START C:\Progra~1\WinTV\Ir.exe /QUIET
REM remove the checkfile to enable new restarts
REM start gbpvr.exe
del %checkfile%

popd
:EXIT
REM Commands below are performed, even when another wake.cmd is busy.
EXIT
[/QUOTE]

Only minor changes. Biggest one is that ir.exe and the recordingservice are started also when restarting the pvr has failed. Also I've inlcuded start gbpvr.exe at the end. However, I've commented it out.

Greetz,
MaBo
ASUS pundit, pvr 350, celeron 2600, 512 MB, 160GB HD, winXP Pro, 12" touchscreen
MaBo
Offline

Senior Member

Posts: 346
Threads: 58
Joined: Dec 2003
#46
2004-11-19, 09:25 AM
Hi,
[b Wrote:Quote[/b] ]Well, I've already read and posted several messages on this subject, but it appears that waiting for hauppauge to solve the problem of black-screen-on-tv-out-after-hibernate will last longer than the economic life-time of the pvr350...

I was wrong!!! I have installed the lateste hauppauge drivers recently. Now I've noticed (by accident) that when the computer wakes from hibernation and GBPVRWake is not running, the pvr35- tv-out does show a picture. In other words it appears Hauppauge has fixed the issue.

There is a minor chance that this improvement is due to the latest BIOS I've also installed, but I don't think that is true.

Nevertheless, I think I will keep on running gbpvrwake to log waking events.

Greetz,
MaBo
ASUS pundit, pvr 350, celeron 2600, 512 MB, 160GB HD, winXP Pro, 12" touchscreen
stefan
Offline

Posting Freak

Posts: 3,116
Threads: 81
Joined: Oct 2004
#47
2004-12-13, 11:32 AM
[b Wrote:Quote[/b] (MaBo @ Nov. 19 2004,10:25)]I was wrong!!! I have installed the lateste hauppauge drivers recently. Now I've noticed (by accident) that when the computer wakes from hibernation and GBPVRWake is not running, the pvr35- tv-out does show a picture. In other words it appears Hauppauge has fixed the issue.
Hi.

Which driver was the latest when you wrote this? :-D
I'm not always right
GB-PVR 1.2.9
Accent HT-400 Case, AMD Athlon 64 3800+ 1024MB, 1TB+300GB+180GB, WinXP Pro-SP2, NVidia 7600GT
Nova-T USB2, PVR-350 recording from Dilog 355 DVB-T box, USB-UIRT (receiving & transmitting)
MaBo
Offline

Senior Member

Posts: 346
Threads: 58
Joined: Dec 2003
#48
2004-12-14, 08:17 AM
Hi,
The ones I have installed now are:
pvr_1.18.22266_inf.zip
pvr48wdm_2.0.22287.exe
hcwSMD_5.0.22236.exe
wintv2k_4.6.22278.exe

Greetz,
MaBo
ASUS pundit, pvr 350, celeron 2600, 512 MB, 160GB HD, winXP Pro, 12" touchscreen
stefan
Offline

Posting Freak

Posts: 3,116
Threads: 81
Joined: Oct 2004
#49
2004-12-14, 08:35 AM
*doh*
I think I might have not read this properly. What I did was to remove Wake.cmd, hibernate, and then wake up. No picture (I have the same drivers as you). But now I read yuor post again and it states that GBPVRWake should not be running. So that's what I should remove? The reason I ask is that wake.cmd every so often fails to restart the pvr-350, for some reason or another. Not so wife friendly ;-)
I'm not always right
GB-PVR 1.2.9
Accent HT-400 Case, AMD Athlon 64 3800+ 1024MB, 1TB+300GB+180GB, WinXP Pro-SP2, NVidia 7600GT
Nova-T USB2, PVR-350 recording from Dilog 355 DVB-T box, USB-UIRT (receiving & transmitting)
MaBo
Offline

Senior Member

Posts: 346
Threads: 58
Joined: Dec 2003
#50
2004-12-14, 09:19 AM
Stefan,
Well, I discovered the new drivers apparantly support hibernate because GBPVRWake was not running. However, at this moment I have GBPVRWake running to log waking events with a very simple wake.cmd file (just typing the date and time to the syslog-file I maintain). So, if the drivers work in your system like in mine, you can keep gbpvrwake running, but just modify your wake.cmd file.

In short, I do not have a diagnosis of what is going on in your system.
Greetz,
MaBo
ASUS pundit, pvr 350, celeron 2600, 512 MB, 160GB HD, winXP Pro, 12" touchscreen
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (6): « Previous 1 2 3 4 5 6 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  GBPVR support for Hauppauge WinTV-HVR-1900 or Hauppauge HD-PVR (PAL) lchiu7 23 18,458 2014-05-15, 12:59 AM
Last Post: lchiu7
  Hauppauge 2250 MCE remote Jeckler 22 20,775 2013-03-26, 04:26 PM
Last Post: DonBrutto
  Composite Source using Hauppauge PVR500 gives sound but no video DukeBrymin 1 3,053 2012-02-03, 02:41 AM
Last Post: slowtech
  Start PC for recording, Sleep/Hibernate when done Basher52 6 4,983 2011-12-17, 02:52 PM
Last Post: Sykor
  Will A Hauppauge Colossus work in 1.4.7? hondophred 5 3,776 2011-06-29, 09:12 PM
Last Post: sub
  Recording problem with Hauppauge Nova-S USB2 ... softfoot 4 3,422 2011-06-27, 02:06 AM
Last Post: sub
  Hauppauge 1600 analog stopped working stoenjes 2 1,982 2010-11-16, 11:09 PM
Last Post: ryanmc
  Can I record two channels with a Hauppauge HVR-3000 DVB-T (FreeView UK)? philcooling 1 1,758 2010-11-02, 06:15 PM
Last Post: sub
  Internal Hauppauge WinTV MOD7700 ATSC -- what BDA do I use? h103 7 5,333 2010-10-08, 08:29 PM
Last Post: juanrod160
  Comcast DCI105COM1 DTA and Hauppauge IR Blaster not working DonP 6 7,289 2010-09-26, 03:46 AM
Last Post: pBS

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

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

Linear Mode
Threaded Mode