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 … 261 262 263 264 265 … 433 Next »
BBC HD changed to BBC2 HD now no EPG data - XMLTV

BBC HD changed to BBC2 HD now no EPG data - XMLTV
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,789
Threads: 769
Joined: Nov 2003
#81
2013-04-03, 04:56 AM
Croftie Wrote:Brilliant, I presume you have what you need now. What's the status of the patch you posted, shall I give it a go?
Yes, as far as I know it's working. It could do with some optimization for Freesat users, so that it doesn't waste time scanning unneeded frequencies.
imilne
Offline

Posting Freak

Posts: 2,423
Threads: 135
Joined: Feb 2008
#82
2013-04-03, 06:10 PM
A closer look at the data seems to suggest that a specific episode of something will get a unique value for its 0x31 programme-id (that stays the same each time that episode is shown), but the 0x32 season-id changes based on the various different times of day it may be shown. For example, "SomeShow, Ep 1" might always get programme-id "ABC", but its season-id might be "F3" when it's on in the morning and "T5" when it's repeated again later in the day.

Concatenating the two IDs together therefore doesn't seem to work.

Sub, how do you actually apply the information you get from <unique-identifier>? Does it work together with the actual programme title? If so, perhaps it's enough to just use the program-id and forget about the season one. The programme-id might not be unique across all programmes on a given channel, but (you'd hope) it would be unique across all programmes with the same name.

I'll continue to test in the meantime...

Iain
Croftie
Offline

Member

Posts: 114
Threads: 20
Joined: Jul 2010
#83
2013-04-03, 06:39 PM
sub Wrote:Yes, as far as I know it's working. It could do with some optimization for Freesat users, so that it doesn't waste time scanning unneeded frequencies.
You don't mess around do you mate. Good job!
bgowland
Offline

Posting Freak

West Yorkshire, UK
Posts: 4,589
Threads: 385
Joined: Dec 2004
#84
2013-04-03, 06:50 PM
imilne Wrote:A closer look at the data seems to suggest that a specific episode of something will get a unique value for its 0x31 programme-id (that stays the same each time that episode is shown), but the 0x32 season-id changes based on the various different times of day it may be shown. For example, "SomeShow, Ep 1" might always get programme-id "ABC", but its season-id might be "F3" when it's on in the morning and "T5" when it's repeated again later in the day.
Iain, PM me to to remind me of your email address - I've got something which might be of interest.

Cheers,
Brian
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,789
Threads: 769
Joined: Nov 2003
#85
2013-04-03, 07:21 PM
imilne Wrote:A closer look at the data seems to suggest that a specific episode of something will get a unique value for its 0x31 programme-id (that stays the same each time that episode is shown), but the 0x32 season-id changes based on the various different times of day it may be shown. For example, "SomeShow, Ep 1" might always get programme-id "ABC", but its season-id might be "F3" when it's on in the morning and "T5" when it's repeated again later in the day.

Concatenating the two IDs together therefore doesn't seem to work.

Sub, how do you actually apply the information you get from <unique-identifier>? Does it work together with the actual programme title? If so, perhaps it's enough to just use the program-id and forget about the season one. The programme-id might not be unique across all programmes on a given channel, but (you'd hope) it would be unique across all programmes with the same name.
Yes based on that, concatenating wouldn't work. A better option might be storing the showname + 0x31 CRID for the unique id.

It still does all of its locating of potential recordings using the other rules, like name, channel, timeslot etc. Currently the app only uses this info for filtering out duplicates.
imilne
Offline

Posting Freak

Posts: 2,423
Threads: 135
Joined: Feb 2008
#86
2013-04-03, 07:41 PM
sub Wrote:A better option might be storing the showname + 0x31 CRID for the unique id.

Good point.

As a more general question...say a show was on at 9am and then again at 9pm - it would mark the 9am one for recording. But if the PC was off in the morning, and then turned on again before 9pm, would it realise it still has another chance to record what it had missed earlier?

Iain
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,789
Threads: 769
Joined: Nov 2003
#87
2013-04-03, 07:47 PM
imilne Wrote:But if the PC was off in the morning, and then turned on again before 9pm, would it realise it still has another chance to record what it had missed earlier?
There isn't currently anything that'll attempt rescheduling a failed recording for a future airing, but I may end up adding this.
jcjefferies
Offline

Posting Freak

UK, North Gloucestershire
Posts: 1,220
Threads: 140
Joined: Jan 2011
#88
2013-04-04, 09:37 AM
"Concatenating the two IDs together therefore doesn't seem to work."

IMILNE- I have been using EPG Collector since last August to "Avoid Duplicate Recordings" on Freeview recordings. The problem was that it concatenates 0x32 and 0x31 to produce a Unique_ID in the format "xxxx.yyyy.0". On some channels the same episode can be repeated up to seven times per week all with the same 0x31 crid bit with different 0x32 crid. I do post processing on the XML file to change "xxxx" to "0" so NextPVR just loads the 0x31 data into the database. In my case "0.yyyy.0" gets loaded into the database.

Chris
imilne
Offline

Posting Freak

Posts: 2,423
Threads: 135
Joined: Feb 2008
#89
2013-04-04, 10:44 AM
jcjefferies Wrote:IMILNE- I have been using EPG Collector since last August to "Avoid Duplicate Recordings" on Freeview recordings. The problem was that it concatenates 0x32 and 0x31 to produce a Unique_ID in the format "xxxx.yyyy.0". On some channels the same episode can be repeated up to seven times per week all with the same 0x31 crid bit with different 0x32 crid. I do post processing on the XML file to change "xxxx" to "0" so NextPVR just loads the 0x31 data into the database. In my case "0.yyyy.0" gets loaded into the database.

The info from Brian confirms what we thought (and what you've said) so it does need to be a unique string based on the 0x31 ID only.

I don't actually have a "real" freeview or freesat box, so I can't confirm how they work with the series link stuff when the same repeats use a different series ID, eg, if you set up a series link using the 9pm showing of something, the data we've seen suggests it would only record from that timeslot and wouldn't fill in any missed recordings from other repeats. I guess this stuff assumes 24/7 operation of a PVR though.

Sub's title/channel/timeslot (+avoid duplicates) seems a far stronger implementation of this functionality to me, especially as the PVRs will discard a series link 13 weeks after the last episode. That means you need to be on your toes when the next series comes around otherwise you'll miss it. With NPVR you wouldn't.

Currently I have my (DVBGuide)xmltv-parser adding in the unique-identifier codes, fixing some formatting issues with the descriptions, adding in audio and aspect ratio information (to the description), merging two files together (eg freeview and freesat for easier bulk mapping in NPVR) and removing comments to reduce overall file size.

Iain
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (9): « Previous 1 … 5 6 7 8 9
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  No data received jcole998 1 315 2025-04-15, 03:08 PM
Last Post: mvallevand
  NextPVR - EPG Setup - XML/XMLTV EPG - Zap2it & Zap2xml Erdrick 126 142,494 2024-01-29, 01:07 AM
Last Post: stoenjes44
  EPG XMLTV problem DBHall 8 3,852 2021-01-01, 12:34 PM
Last Post: Graham
  xmltv and EPG channel icons HaTaX 5 4,194 2020-10-28, 04:25 AM
Last Post: sub
  EPG displaying small subset of xmltv file. Esteban 9 3,077 2020-07-18, 10:07 PM
Last Post: Esteban
  create my own xmltv with zap2it Brucek2839 23 9,519 2020-04-16, 07:57 AM
Last Post: Brucek2839
  No data delivered/failed to lock a signal? from Hauppauge HDHR/DCR-2650 bishoph 8 3,713 2020-04-13, 09:55 PM
Last Post: sub
  OTA EPG guide data only for 2 hrs acegolfer 6 3,647 2020-03-18, 08:30 PM
Last Post: mvallevand
  Changed Recording Directory - Previous Recordings Not Showing Enzpol 2 2,179 2019-11-28, 05:06 AM
Last Post: Enzpol
  Channles loosing EPG data Brucek2839 5 2,385 2019-11-21, 03:17 AM
Last Post: mvallevand

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

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

Linear Mode
Threaded Mode