NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Legacy (v4.x and earlier) v
« Previous 1 … 370 371 372 373 374 … 433 Next »
2.0.3 Problem with status

2.0.3 Problem with status
Nistrod
Offline

Member

Posts: 243
Threads: 45
Joined: Jul 2010
#1
2011-03-22, 08:37 AM
Something weird is happening....

I have attached a screenshot of the System plugin. This shows three shows being recorded.

ABC2 is on a different frequency to SBS2, but is shown on the same tuner.
SBS HD is on the same frequency as SBS2, but is shown recording on a separate tuner.

The logs say The Moon was recorded on the tuner WinFast DTV 2000 DS, and dont seem to state what tuner is used for the other two shows.

I have also attached a screenshot of the Status screen. This shows the same shows, but on different tuners.

I have also attached the logs. All shows appear to have recorded correctly (subject to pre-padding issues)

Ummm, whats going on?
[SIZE="1"]NPVR 2.6.2;Windows 7 Enterprise SP1;i5 750; 8GB mem;Geforce 210;Winfast DTV100 S, Winfast DTV Dongle Gold; 2 x Winfast DTV2000DS
[/SIZE]
imilne
Offline

Posting Freak

Posts: 2,423
Threads: 135
Joined: Feb 2008
#2
2011-03-22, 12:35 PM
It's possibly the System plugin getting its custom names mixed up. Can you confirm if the shows shown are definitely on those channels (ie Is There Life On Mars=SBS2, Rake=ABC2, The Moon=SBS2)?
Nistrod
Offline

Member

Posts: 243
Threads: 45
Joined: Jul 2010
#3
2011-03-22, 09:39 PM
Yes, Is There Life On Mars=SBS2, Rake=ABC2, The Moon=SBS2.

But even the regular status is showing two shows on different frequencies on the same tuner.
[SIZE="1"]NPVR 2.6.2;Windows 7 Enterprise SP1;i5 750; 8GB mem;Geforce 210;Winfast DTV100 S, Winfast DTV Dongle Gold; 2 x Winfast DTV2000DS
[/SIZE]
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,671
Threads: 170
Joined: Jun 2007
#4
2011-03-23, 02:19 AM
Nistrod Wrote:But even the regular status is showing two shows on different frequencies on the same tuner.

Is one of the shows in its post-padding period?

I have seen this when npvr decides not to honor the post-padding for one recording in favor of using that tuner for another recording. The original show continues to be "recording" on the tuner, although with 2.0.3 it no longer continues writing data out to the .ts file. Once the post-padding period is past, the recording service with then remove it from "using" the tuner and run the PostProcessing.bat file. This behavior does cause the tuner status display to be confusing.
Nistrod
Offline

Member

Posts: 243
Threads: 45
Joined: Jul 2010
#5
2011-03-23, 09:24 AM
"Is There Life on Mars" 7.30 - 8.30 ... SBS TWO ... 60 mins recorded (i.e. no post padding)
"The Moon" 8.30 - 9.30 ... SBS TWO ... 80 mins recorded (i.e pre and post padding)
"Rake" 8.30 - 9.30 ... ABC2 ... 60 mins ( no pre or post padding)

Pre = 5 min, post = 15 mins

The screenshots were taken at 8.35, so yes, it would seem so.

It looks like the System display is getting the tuners wrong.
The DS2000 twin tuners are at the top of the list, so were the ones that were probably used, as shown in the Status.

It looks like the sequence was....
  • NPVR starts "Is there life on mars" at 7.30 from SBS on DTV2000 (1).
  • It started "The Moon" at 8.25 from SBS on DTV2000 (2).
  • At 8.30 it switched DTV2000 (1) to the ABC to record "Rake"

Surely, it would have made more sense to leave tuner 1 on SBS and record both shows with pre- and post-padding, and use tuner 2 for the ABC.
[SIZE="1"]NPVR 2.6.2;Windows 7 Enterprise SP1;i5 750; 8GB mem;Geforce 210;Winfast DTV100 S, Winfast DTV Dongle Gold; 2 x Winfast DTV2000DS
[/SIZE]
imilne
Offline

Posting Freak

Posts: 2,423
Threads: 135
Joined: Feb 2008
#6
2011-03-23, 10:37 AM
Well I'm completely lost :confused:

Perhaps sub can check the logic that System uses, but it's basically:

Code:
foreach (CaptureSource cs in CaptureSource.LoadAll())
{
  foreach (ScheduledRecording rec in ScheduledRecording.LoadAll(true))
  {
    if (rec.CaptureSourceOID == cs.OID)
    {
      // decide if it's an active recording and display

If the tuner that was assigned to record something changes part way through a recording (does that happen?) and then the info in the database doesn't update to say a recording's capture source has changed, then there's not much I can do about it.

But I'm not even sure I understand what's going on here anyway...
Nistrod
Offline

Member

Posts: 243
Threads: 45
Joined: Jul 2010
#7
2011-03-25, 04:22 AM
OK, one problem at a time.
It seems that System is always getting my tuner names wrong. I've never really looked at that bit, but with a single recording, its got the wrong tuner listed.
Looking in config.xml, it seems that the tuner names are screwed up. I have no idea how.

I currently have:
[INDENT]<Tuners>
<Tuner oid="23" name="WinFast DTV Dongle Gold BDA Filter (DVB-T)" />
<Tuner oid="22" name="WinFast DTV1000 S BDA DVBT Tuner (DVB-T)" />
<Tuner oid="20" name="WinFast DTV Dongle Gold BDA Filter (DVB-T)" />
<Tuner oid="21" name="WinFast DTV1000 S BDA DVBT Tuner (DVB-T)" />
</Tuners>[/INDENT]

which aint so!

As a result:
  1. Can I change these manually?
  2. How do I match them with Settings idea of tuners?
  3. Why is there are list in config.xml if the database also has one?
[SIZE="1"]NPVR 2.6.2;Windows 7 Enterprise SP1;i5 750; 8GB mem;Geforce 210;Winfast DTV100 S, Winfast DTV Dongle Gold; 2 x Winfast DTV2000DS
[/SIZE]
imilne
Offline

Posting Freak

Posts: 2,423
Threads: 135
Joined: Feb 2008
#8
2011-03-25, 07:38 AM
Nistrod Wrote:[*] Can I change these manually?

Yes, if you want. Although I'd suggest deleting the <Tuners> section entirely which will let the System plugin recreate the list automatically the next time it runs. I'd like to know if it gets them correct or not.

Nistrod Wrote:[*] How do I match them with Settings idea of tuners?

If System was doing its job properly, you wouldn't have to Rolleyes
But if you want to be sure, you could always peek at the OIDs for the actual tuners in npvr.db3

Nistrod Wrote:[*] Why is there are list in config.xml if the database also has one?
It's because people wanted the ability to rename their tuners. Some names as reported by Windows (which is all NPVR uses) can be very verbose and don't display very well with a 4:3 skin for example.

At one point in time I just let the System plugin rename the actual entries in npvr.db3 but then decided that might not be safe, which is why it now maintains its own list of custom names, which is supposed to be matched back to the actual tuners via their ID. But something obviously isn't working quite right with that. I'm not sure if the IDs change if you reorder tuners, or if you add or remove them from the PC itself. It's all stuff I need to investigate.

Iain
Nistrod
Offline

Member

Posts: 243
Threads: 45
Joined: Jul 2010
#9
2011-03-25, 08:59 AM
OK, I deleted the section.
The next recording showed the correct tuner, but config.xml was not updated.
[SIZE="1"]NPVR 2.6.2;Windows 7 Enterprise SP1;i5 750; 8GB mem;Geforce 210;Winfast DTV100 S, Winfast DTV Dongle Gold; 2 x Winfast DTV2000DS
[/SIZE]
imilne
Offline

Posting Freak

Posts: 2,423
Threads: 135
Joined: Feb 2008
#10
2011-03-25, 09:39 AM
Perhaps it only rewrites that if you visit the Rename Tuners tab that forms part of the System plugin's Settings screen. I can't recall for sure (and don't have the source code to hand).
« 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
  NPVR4 and MPC-HC problem The Solutor 29 7,471 2021-07-27, 03:45 PM
Last Post: The Solutor
  Problem locking on to a tuner? time_lord 7 3,277 2021-01-09, 12:06 PM
Last Post: Graham
  EPG XMLTV problem DBHall 8 3,924 2021-01-01, 12:34 PM
Last Post: Graham
  Problem with Intel 4600 graphics driver pol098 1 1,517 2020-12-01, 12:44 PM
Last Post: romdl
  Problem setting up recording for some programmes LeoL 5 2,151 2020-10-21, 09:34 PM
Last Post: LeoL
  Replayed recording problem Tj.2 25 9,844 2020-09-22, 04:51 PM
Last Post: baj1
  Recurring recording problem Dave48167 18 4,579 2020-09-10, 08:26 PM
Last Post: Dave48167
  Problem with 1 device and 1 frequency lost@c 6 2,193 2020-08-21, 04:11 AM
Last Post: lost@c
  Audio Problem jrockow 11 4,925 2020-04-22, 12:07 PM
Last Post: jrockow
  Audio/video sync problem on playback and program freeze when resuming zer 34 13,979 2019-12-21, 02:49 PM
Last Post: HarryH3

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

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

Linear Mode
Threaded Mode