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) XSuite (Xrecord, XSearch, XGuide, CDK Scheduler) v
« Previous 1 2 3 4 Next »
Xrecord wacky behavior- repetitive entries

 
  • 0 Vote(s) - 0 Average
Xrecord wacky behavior- repetitive entries
pvrtinkerer
Offline

Junior Member

Posts: 48
Threads: 9
Joined: Jan 2007
#1
2007-06-06, 01:44 PM
In the past month or so, a strange behavior has developed on my GB-PVR box, and the poking around I've done makes me think it might be connected to Xrecord.

It seems that when priorityrecordings runs, it plows through the EPG data and adds entries to the recording queue. BUT, it doesn't take account of the entries that are already in the recording queue for some programs. Consequently I find myself with 10 identical entries for the same program at the same time. This is not a real problem, since it only records one instance of it, but it is annoying to look at my Pending tab and find that I've got 54 episodes of a weekly show pending in the next 2 weeks.

Any ideas on how to make this behave? I've used the SQlite browser and looked at the gbpvr.db3 file, and there are not multiple entries in the recording queue there... but there must be somewhere that all of these entries are getting made...
Pentium D 925 underclocked to 2.0Ghz , 2GB DDR2 @ 533, 200 GB, 250GB, PVR-150, GeForce 6200, Win2k
fla
Offline

Posting Freak

Posts: 881
Threads: 46
Joined: Mar 2006
#2
2007-06-07, 02:09 AM
Most people run priorityrecording.exe in postupdateepg.bat like this: "PriorityRecording.exe > recording.log". What's the contents of recording.log?
pvrtinkerer
Offline

Junior Member

Posts: 48
Threads: 9
Joined: Jan 2007
#3
2007-06-07, 05:03 AM
Looks normal and unobjectionable, I think- see for yourself.
Pentium D 925 underclocked to 2.0Ghz , 2GB DDR2 @ 533, 200 GB, 250GB, PVR-150, GeForce 6200, Win2k
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#4
2007-06-08, 01:04 AM
It would also help to see your PriorityRecordings.xml file as well.

One other thing you can try as well is in UpdateEPG.bat, add in the deleterecordings.exe file as well. What this will do is delete any existing priority recordings that are in your PriorityRecordings.xml file that have been scheduled, and then reschedule them when PostUpdateEPG.bat runs.

Regardless, though it shouldn't schedule the same recording at the same time if it has already been scheduled.
pvrtinkerer
Offline

Junior Member

Posts: 48
Threads: 9
Joined: Jan 2007
#5
2007-06-08, 01:33 PM
Thanks for the help!

Here are 1) priorityrecordings.xml and 2) a screenshot of pending recordings demonstrating the problem.

Also, I don't seem to have a DeleteRecordings.exe, but I do have a DeleteSchedule.exe. Are these the same thing?
Pentium D 925 underclocked to 2.0Ghz , 2GB DDR2 @ 533, 200 GB, 250GB, PVR-150, GeForce 6200, Win2k
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#6
2007-06-08, 02:25 PM
Yes, DeleteSchedule.exe is what you want to add to UpdateEPG.bat.

I'll take a look at the priority recordings file and see if I see anything odd.
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#7
2007-06-08, 02:50 PM
I think I know what is happenning. For the program Mystery, you don't have it set for how you want to handle scheduling duplicates. I.e. programs that have already been scheduled.

Code:
<Recording priority="6">
    <ProgramName>Mystery!</ProgramName>
    <Quality>Medium</Quality>
    <Suspended>False</Suspended>
    <Padding>
      <PrePadding>1</PrePadding>
      <PostPadding>2</PostPadding>
    </Padding>
  </Recording>

Set it up similar to how you have the program Nova scheduled:

Code:
<Recording priority="7">
    <ProgramName>Nova</ProgramName>
    <Quality>Medium</Quality>
    <Suspended>False</Suspended>
    <Duplicates>
      <Recorded>No</Recorded>
      <Scheduled>No</Scheduled>
    </Duplicates>
    <Padding>
      <PrePadding>1</PrePadding>
      <PostPadding>2</PostPadding>
    </Padding>
  </Recording>

With the Scheduled item set to No. What the intent for the Scheduled item, was to allow scheduling of a program later in the week if there was a conflict earlier in the week. It doesn't seem to be taking into account that the program has already been scheduled at that time on that tuner, it really needs to look for scheduling later in the week.

Hope that helps. Having the DeleteSchedule.exe will also help in these situations. Plus DeleteSchedule.exe will help in the situations in which the episode guide has changed since the last download. Just make sure to set GBPVR to empty the episode guide before it reloads it.
pvrtinkerer
Offline

Junior Member

Posts: 48
Threads: 9
Joined: Jan 2007
#8
2007-06-08, 03:34 PM
Thanks for the diagnosis... but the Nova solution doesn't work. Nova is another problem program, so that change doesn't fix the issue. I'll give the deleteschedule.exe method a shot.

For what its worth, might some of the problem arise from the fact that the same Nova, Mystery, etc episodes are played on multiple channels in the EPG? I've got 3 PBS stations on my cable feed. But the problem arises in situations where there is only one guide entry on one channel too...
Pentium D 925 underclocked to 2.0Ghz , 2GB DDR2 @ 533, 200 GB, 250GB, PVR-150, GeForce 6200, Win2k
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#9
2007-06-08, 04:04 PM
Are the items that are scheduled for the same channel or for different channels? You might be able to handle it by putting a channel restriction on the shows.

But regardless, I'd open a bug at the Sourceforge site, so that fla can take a look at the code.

http://sourceforge.net/projects/cdkandxsuite/
pvrtinkerer
Offline

Junior Member

Posts: 48
Threads: 9
Joined: Jan 2007
#10
2007-06-09, 07:59 PM
IT seems that the deleteschedule.exe trick does the job. Thanks for pointing that out.
Pentium D 925 underclocked to 2.0Ghz , 2GB DDR2 @ 533, 200 GB, 250GB, PVR-150, GeForce 6200, Win2k
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  XRECORD for NPVR? jksmurf 15 19,657 2011-04-26, 11:12 PM
Last Post: isgdre
  Request for Xrecord - Multiple-Show Single-Action Archive? jksmurf 5 6,413 2010-03-28, 02:38 PM
Last Post: fla
  Xrecord doesn't comskip in Videos or Movies Screens? jksmurf 2 5,729 2010-02-21, 05:21 AM
Last Post: jksmurf
  XRecord - Watched too much? isgdre 3 5,915 2009-11-29, 03:58 AM
Last Post: isgdre
  XRecord-Fonts and password protection dshoup 39 26,443 2009-09-24, 12:12 PM
Last Post: dshoup
  XRecord - and Max Recordings to Keep? pmularien 5 6,822 2009-09-09, 04:05 AM
Last Post: KingArgyle
  Xrecord jumping up a level on wake from Screenaver? jksmurf 6 7,306 2009-07-18, 12:00 AM
Last Post: jksmurf
  Xrecord request SORT and VIEW jksmurf 13 12,399 2009-05-05, 05:29 AM
Last Post: jksmurf
  XRecord skinning-images & aspect ratio dshoup 6 7,625 2009-04-19, 12:08 PM
Last Post: dshoup
  QAM scheduling questions with Xrecord arkennedy75 1 5,537 2009-04-15, 12:46 PM
Last Post: fla

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

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

Linear Mode
Threaded Mode