2007-07-12, 09:05 PM
I don’t know if the overlap/dupe listing problem happens in v1.0.8 and above, but when using prior versions.
I’ve avoided it by -only- scheduling reoccurring recordings using X-Record (CDKScheduler),
And running delete schedule, -onlyemptyepg, and a sql script that removes conflict & deleted recordings from the gbpvr database, in UpdateEPG.bat.
X-record will reschedule the reoccurring recordings after the epg update is complete, in PostUpdateEPG.bat.
Using this method, the only listings that could still have the problem are one-off recordings you schedule.
STATUS_PENDING = 0
STATUS_IN_PROGRESS = 1
STATUS_COMPLETED = 2
STATUS_COMPLETED_WITH_ERROR = 3
STATUS_PLACE_HOLDER = 4
STATUS_CONFLICT = 5
STATUS_DELETED = 6
UpdateEPG.bat
PostUpdateEPG.bat
I’ve avoided it by -only- scheduling reoccurring recordings using X-Record (CDKScheduler),
And running delete schedule, -onlyemptyepg, and a sql script that removes conflict & deleted recordings from the gbpvr database, in UpdateEPG.bat.
X-record will reschedule the reoccurring recordings after the epg update is complete, in PostUpdateEPG.bat.
Using this method, the only listings that could still have the problem are one-off recordings you schedule.
STATUS_PENDING = 0
STATUS_IN_PROGRESS = 1
STATUS_COMPLETED = 2
STATUS_COMPLETED_WITH_ERROR = 3
STATUS_PLACE_HOLDER = 4
STATUS_CONFLICT = 5
STATUS_DELETED = 6
UpdateEPG.bat
Code:
CD /d "%ProgramFiles%\devnz\gbpvr"
DeleteSchedule.exe
sqlite3 -separator ": " "C:\Program Files\DEVNZ\Gbpvr\GBPVR.DB3" " SELECT status, filename, manual_start_time FROM RECORDING_SCHEDULE where status = 5 or status = 6"
sqlite3 "C:\Program Files\DEVNZ\Gbpvr\GBPVR.DB3" " DELETE FROM RECORDING_SCHEDULE where status = 5 or status = 6"
gbpvr -OnlyEmptyEPG
PostUpdateEPG.bat
Code:
CD /d "%ProgramFiles%\devnz\gbpvr"
PriorityRecording.exe
rectracker -purge -subtitle
[SIZE="1"]HP e9240f| Phenom II X4-945| Radeon HD4650 1-gig | 8 gig ram | Blu-Ray
Windows 7 64bit | 1TB system | 1.5TB Recordings | 3-TB Library
HDMI >> Sony 40" 1080p LCD TV
HVR-2250 | HVR-1290 | WinTV PVR USB2 | WinTV HD-PVR | GBPVR 1.4.7[/SIZE]
Projects: I-xmltv (Unsupported at this time) |
Windows 7 64bit | 1TB system | 1.5TB Recordings | 3-TB Library
HDMI >> Sony 40" 1080p LCD TV
HVR-2250 | HVR-1290 | WinTV PVR USB2 | WinTV HD-PVR | GBPVR 1.4.7[/SIZE]
Projects: I-xmltv (Unsupported at this time) |