i tried manually editing db, but it won't stay! it just reverts to old data..
[just trying to change a date on a recording.]
i notice no oid ot correspond to epg data in scheduled_recording table, how does it cross reference it to title,etc?
sub, after installing 1.5.31 scanning of DVB-S2 channels is failing (no channels found). Using the same tuning file (attached) as I did when I scanned and found channels with 1.5.28. Since I do not longer have the 1.5.28 installation I can not verify that this is the problem. Logs are attached.
Scanning with an ini file with DVB-S frequencies results in channels found.
Hi,
I've just added a client PC to my setup. Everything is working except Net Radio, which never gets beyond 'buffering'. The machine gets on the internet with no problems, there's no firewall active at the moment.
Is there anything else that might cause Net Radio not to work?
Am I right in thinking that a client PC gets its own Net Radio streams from the internet, rather than going through the server?
Got this in the system logs:
The NPVR Recording Service service terminated unexpectedly. It has done this 1 time(s).
At around the same time I was trying to set a program to record in NEWA. I also got a message on the screen at the same time that a crash dump was being generated in /temp. I assume that was from the recording service crash so I've attached it along with logs.
here's a little something i cooked up to delete shows based on age..
just edit to select how many days old you want to keep.. [for GBPVR[pvrx2] only, see 3rd post for Npvr ver]
Auto-delete-old:
it will lookup and delete old files past a certain num days old..
also deletes associated files with different extensions, and cleans up database..
it gets db from registry, and allows a test funstion to query only..
edit the top for the number of days you want to keep, meaning older than chosen days will get deleted..
Requires: sqlite3.exe in gbpvr dir, and this batch file to be placed in gbpvr dir..
add into epgupdate.bat for running on a schedule.. [call delold.bat run]
to run as test to view would-be deleted files, type "delold.bat"
for scripts, to run 'hot' [deletes files], type "delold.bat run"
i recommend running test till you see what you expect to get deleted then a hot run to make sure all is well..it's pretty simple so shouldn't have any issues..
copy and save as delold.bat
Code:
@echo off
:: how many Days old to purge? Older than this will get deleted!
:: Shows must be in database, dates read from database. [file date doesn't matter]
set age=900
:detect gbpvr path and set as db path
for /f "usebackq skip=4 tokens=1,2,3,* " %%e in (`reg query hklm\SOFTWARE\devnz /v "GBPVR InstallDir"`) do set db=%%~hgbpvr.db3
cd /d "%~dp0"
for /f "usebackq tokens=1,2,3 delims=@" %%f in (`sqlite3.exe -separator "@" "%db%" "select manual_start_time, filename from recording_schedule where status = 2 and recording_type = 0 and manual_start_time < date('now','-%age% days') order by manual_start_time;"`) do (
echo.
echo "%%~g"
if "%1" EQU "run" call :delfiles "%%~g"
)
goto :eof
:delfiles
sqlite3.exe "%db%" "delete from recording_schedule where filename like '%~1';"
echo.
del /q "%~dpn1.*"
goto :eof
any suggestions, additions welcome, it hasn't been tested with regular daily use yet..
My current setup is a Dell Dimension 4600C (P4 2.4 GHz, with 512 MB RAM) running XP. I've got a PVR150 for capture, and an ATI Radeon 9000 Pro All-in-Wonder. The AIW came with the PC, and is what I'm currently using for TV-OUT. I am running this into an ancient CRT TV that only has coax, so it's running from S-Video on the AIW to an RF modulator, and out to the TV.
I know this is a pretty ghastly setup.
I'm happy with the PVR150. My issue is with the video quality on the TV. I realize that the RF modulator is degrading the signal. I'm wondering if upgrading the video card would make any difference. 95% of the time, video is perfectly watchable. It's just sometimes things are blurry enough that we can't read things on-screen like a handwritten note or a newspaper, for example.
We don't have the budget to upgrade to a new TV, so that's out of the question. I'm perfectly okay hearing "you're SOL" but I'd like to know if anyone has any suggestions?
What the equivalent NPVR code for this GBPVR code? I've tried various combinations of the methods available in the DatabaseHelperFactory but no joy to date:confused:
It seems to think the system is idle while I'm playing my video files. I've never had this issue with pvrx2, in fact it would use the GB-PVR screen saver when idle(while running the app).
Any ideas/workarounds besides turning windows screen saver off?