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 … 87 88 89 90 91 … 433 Next »
Repeat episodes not recognised in UK using OTA EPG

Repeat episodes not recognised in UK using OTA EPG
silverblade
Offline

Junior Member

Posts: 7
Threads: 1
Joined: Feb 2016
#11
2016-02-22, 01:38 PM
jcjefferies Wrote:In UK Freeview & Freesat broadcast "Unique Programme ID" and "Series ID" which PVRs use to Avoid duplicate Recordings and record a programme series. NextPVR dosnt use the Series ID to detect programmes in a series but relies on the title in the EPG. NextPVR can use the "Unique Programme ID" transmitted but is not able to extract the data from the broadcast data. I use EPG Collector to extract the EPG data into an XML file which NextPVR can read. Included in the file for each programme is a field called "episode-num" which contains the "Series_ID and "Programme_ID" used by PVRs. As NextPVR does not understand the "Series_ID" I process the XML file to remove it from the file before importing it.

I have used this for about three years and it works well. The only other method I know of is to use XMLTV GUIthe Radio Times EPG data.

Chris

thanks, some more stuff to try. What a great forum this is, so many helpful replies in such a short time!

I have messed around with the xmltv.radiotimes.com feed, mainly just as a personal viewing guide rather than for EPG. That definitely does have the Repeat field in it but it returns tilda seperated value dat files rather than XML so guess I could have to write some code to convert it and then import into NextPVR? Also I did read that it may be discontinued (there were a few days last week when it never got updated) just leaving the http://atlas.metabroadcast.com offering that is the replacement (I did look at that as well but don't think it's what I want).

cheers
Graham
Offline

Posting Freak

UK
Posts: 4,058
Threads: 102
Joined: Dec 2005
#12
2016-02-22, 02:39 PM
silverblade Wrote:... it returns tilda seperated value dat files rather than XML so guess I could have to write some code to convert it ...

The .dat files are read and converted by ... http://www.birtles.org.uk/xmltv/

I don't know about now but when Atlas first appeared it was using data from Radio Times and produced the same results as Birtles.
silverblade
Offline

Junior Member

Posts: 7
Threads: 1
Joined: Feb 2016
#13
2016-02-22, 03:50 PM
Graham Wrote:The .dat files are read and converted by ... http://www.birtles.org.uk/xmltv/

I don't know about now but when Atlas first appeared it was using data from Radio Times and produced the same results as Birtles.

cheers. Looks like it's not been updated since 2011 so the problem could be if they pull the plug on the radiotimes feed - the site redirects to Atlas already as the "official" replacement. I looked at Atlas and it seemed to be aimed at app developers more than personal users I thought.
Graham
Offline

Posting Freak

UK
Posts: 4,058
Threads: 102
Joined: Dec 2005
#14
2016-02-22, 04:05 PM
Did you find this ... http://forums.nextpvr.com/showthread.php...post434477

~It works for me!
bilbopvr
Offline

Member

Posts: 57
Threads: 10
Joined: Sep 2014
#15
2017-01-06, 09:22 AM (This post was last modified: 2017-01-06, 10:01 AM by bilbopvr.)
jcjefferies Wrote:In UK Freeview & Freesat broadcast "Unique Programme ID" and "Series ID" which PVRs use to Avoid duplicate Recordings and record a programme series. NextPVR dosnt use the Series ID to detect programmes in a series but relies on the title in the EPG. NextPVR can use the "Unique Programme ID" transmitted but is not able to extract the data from the broadcast data. I use EPG Collector to extract the EPG data into an XML file which NextPVR can read. Included in the file for each programme is a field called "episode-num" which contains the "Series_ID and "Programme_ID" used by PVRs. As NextPVR does not understand the "Series_ID" I process the XML file to remove it from the file before importing it.

I have used this for about three years and it works well. The only other method I know of is to use XMLTV GUIthe Radio Times EPG data.

Chris

Hi Chris, is this still the case? I have been experimenting with big brother trying both new and all options but the lunch time next day repeats are getting scheduled with the try to avoid duplicates ticked under recordings.

I actually use epg collector aswell, do you remove episode_num within epg collector, or just series id and how ?
jcjefferies
Offline

Posting Freak

UK, North Gloucestershire
Posts: 1,220
Threads: 140
Joined: Jan 2011
#16
2017-01-06, 05:33 PM
The relevant data is stored in the database in the EPG_EVENT table under unique_id. The data is used by Freeview and Freesat PVRs to avoid duplicate recordings. Also broadcast is the Series_ID to identify programmes in the same series which NextPVR cannot use so has to be removed.

At EPG update time if a matching Recurring Recording is found in the EPG NexPVR searches the "RECENTLY_DELETED" and the "SCHDULED_RECORDING" tables for the unique_id and if not found will schedule the recording.

This is a typical entry from EPG Collector from a Sky channel on a Freeview signal:-

<episode-num system="crid">G_SKYB1475581 . G_S32915255 . </episode-num>

Its a while since I looked at it and have done it different ways over the years but it is slowly coming back! The Series_id has to be removed so this is what it needs to be changed to so NextPVR can import the value into the database.

<episode-num system="dd_progid">G_S32915255</episode-num>

The exact format you use is unimportant as long as it is consistent. At one time I reduced the Series ID to "0" and kept the leading and trailing " " and ".".

At one time I used FAR (Find And Replace) to convert "crid" to "dd_progid" and also to tidy up the episode number entry.

Something like "Find" <episode-num system="crid">* .
"Replace" <episode-num system="dd_progid>

Which as well as changing "crid" to "dd_progid" should remove the series id but not certain of the exact syntax!

I will have to look at my current pre processing to remember exactly what I now do.

Chris
NextPVR Server - HP N54L Microserver, Windows 10 - Storage 2 X 3TB - Tuners DVBSky S952 Twin DVB-S/S2 PCIe, Hauppauge Twin DVB-T2 USB, Telestar Digibit R1 Sat>IP Server.
Clients:- 2 X RPi3, 1 X RPi4 and Acer RL80 Celeron Nettop all running NextPVR New Client on LibreElec.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,677
Threads: 767
Joined: Nov 2003
#17
2017-01-06, 05:53 PM
Quote:<episode-num system="crid">G_SKYB1475581 . G_S32915255 . </episode-num>

Its a while since I looked at it and have done it different ways over the years but it is slowly coming back! The Series_id has to be removed so this is what it needs to be changed to so NextPVR can import the value into the database.
Why would this have to be removed? As long as the broadcaster always uses "G_SKYB1475581 . G_S32915255 ." to identify that show, that is all NextPVR needs to be able to tell that one airing of a show is the same as another airing. You'd only need to remove this "SKYB1475581" if they're changing continuously, in effect making one airing look like it's not the same as another airing.
bilbopvr
Offline

Member

Posts: 57
Threads: 10
Joined: Sep 2014
#18
2017-01-06, 06:00 PM
Thanks Chris, I am using a sat card for the info, do you only use the freeview dvb-t signal to get the epg or use your dvb-s card aswell?

What do you have for the episode format on the output tab?

Also, when you record all new for celeb big brother (wife!) on 5HD does it skip the repeats?

Bregards
Bill
bilbopvr
Offline

Member

Posts: 57
Threads: 10
Joined: Sep 2014
#19
2017-01-06, 06:02 PM
Thanks sub, I will have a look at the xml later to see what is produced for the episodes of that particular show.
bilbopvr
Offline

Member

Posts: 57
Threads: 10
Joined: Sep 2014
#20
2017-01-06, 09:26 PM
I think in this particular instance the ota listings are borked some episodes ahave similar to this:

<episode-num system="xmltv_ns">0 . 3 . 0/1</episode-num> freesat not all have episode num

and some have no episode-num entry.

For those that dont even the descriptions aren't consistent, eg some have s1 ep3 and the repeat just ep3 or sometimes s1 ep2[s] so I dont think any pvr could cope with this!
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (4): « Previous 1 2 3 4 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Episodes Recorded - Sort By Season and Episode dsaunders 9 2,605 2019-04-05, 09:56 AM
Last Post: dsaunders
  Record - Record Season (All episodes on this channel) fails dbfs 11 3,241 2019-02-19, 03:23 PM
Last Post: Stanno
  How to get proper names for French episodes recording? virtualpaul 25 5,579 2018-06-28, 01:00 PM
Last Post: mvallevand
  unable to successfully record full episodes with IPTV drlusid 1 985 2018-04-30, 11:47 PM
Last Post: bicbasher
  New Episode In Future Shown as "Repeat" imadunatic 4 1,899 2018-01-13, 07:30 PM
Last Post: imadunatic
  shows with 2 episodes in 1 recording TeleFragger 1 1,139 2017-11-18, 05:37 PM
Last Post: sub
  4.0.4 All Episodes, All Channels fails to record more than one an hour. GuruSR 12 4,114 2017-10-23, 01:41 AM
Last Post: GuruSR
  Auto delete episodes when keeping a limited number dinki 10 3,851 2017-08-22, 09:49 PM
Last Post: johnsonx42
  How to limit timer to "Only New Episodes" MikeM 3 1,582 2017-03-05, 04:20 AM
Last Post: mvallevand
  USB tuner in VMware ESXi recognised but no channels scan snorlaxtogo 10 5,202 2017-02-24, 08:52 PM
Last Post: Reddwarf

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

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

Linear Mode
Threaded Mode