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) v
1 2 3 4 5 … 20 Next »
NextEnd Docker Install

 
  • 0 Vote(s) - 0 Average
NextEnd Docker Install
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,835
Threads: 954
Joined: May 2006
#41
2023-08-29, 06:38 PM
That recording oid in the basic example would be different use --oid not --eventoid. The sh file will also use --oid as passed by NextPVR.

Martin
Mark-McG
Offline

Member

Posts: 75
Threads: 8
Joined: Dec 2019
#42
2023-08-29, 08:43 PM
(2023-08-29, 06:38 PM)mvallevand Wrote: That recording oid in the basic example would be different use --oid not --eventoid.  The sh file will also use --oid as passed by NextPVR.

Martin

Okay great, I have done this and now get the result: Not recording

That ID was taken from the link you gave me earlier which lists all the scheduled recordings.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,835
Threads: 954
Joined: May 2006
#43
2023-08-29, 08:49 PM
That doesn't look correct it should start to monitor the race. Here is what my source look like you need to first id 26854 from this.

Code:
<recording>
<id>26854</id>
<name>Live: Formula 1</name>
<group>Live: Formula 1_01398338</group>
<desc>
Known as the Temple of Speed, Monza sets the stage for the 2023 Italian Grand Prix - the same stage Max Verstappen topped just a year ago.
</desc>
<subtitle>Italian Grand Prix: Race</subtitle>
<start_time>09/03/2023 12:55:00</start_time>
<start_time_ticks>1693745700</start_time_ticks>
<duration>02:05</duration>
<duration_seconds>7500</duration_seconds>
<status>Pending</status>
<reason/>
<quality>QUALITY_DEFAULT</quality>
<size>0</size>
<firstrun>true</firstrun>
<significance>Live</significance>
<genres>
<genre>Auto racing</genre>
</genres>
<pre_padding>1</pre_padding>
<post_padding>2</post_padding>
<red>False</red>
<blue>False</blue>
<green>False</green>
<yellow>False</yellow>
<epg_event_oid>143062817</epg_event_oid>
<significance>Live</significance>
<epg_end_time_ticks>1693753200</epg_end_time_ticks>
<channel>SKY Formula 1</channel>
<channel_id>9462</channel_id>
<recurring>false</recurring>
<recurring_parent>0</recurring_parent>
</recording>

Martin
Mark-McG
Offline

Member

Posts: 75
Threads: 8
Joined: Dec 2019
#44
2023-08-29, 08:57 PM
(2023-08-29, 08:49 PM)mvallevand Wrote: That doesn't look correct it should start to monitor the race.  Here is what my source look like you need to first id 26854  from this.

Code:
<recording>
<id>26854</id>
<name>Live: Formula 1</name>
<group>Live: Formula 1_01398338</group>
<desc>
Known as the Temple of Speed, Monza sets the stage for the 2023 Italian Grand Prix - the same stage Max Verstappen topped just a year ago.
</desc>
<subtitle>Italian Grand Prix: Race</subtitle>
<start_time>09/03/2023 12:55:00</start_time>
<start_time_ticks>1693745700</start_time_ticks>
<duration>02:05</duration>
<duration_seconds>7500</duration_seconds>
<status>Pending</status>
<reason/>
<quality>QUALITY_DEFAULT</quality>
<size>0</size>
<firstrun>true</firstrun>
<significance>Live</significance>
<genres>
<genre>Auto racing</genre>
</genres>
<pre_padding>1</pre_padding>
<post_padding>2</post_padding>
<red>False</red>
<blue>False</blue>
<green>False</green>
<yellow>False</yellow>
<epg_event_oid>143062817</epg_event_oid>
<significance>Live</significance>
<epg_end_time_ticks>1693753200</epg_end_time_ticks>
<channel>SKY Formula 1</channel>
<channel_id>9462</channel_id>
<recurring>false</recurring>
<recurring_parent>0</recurring_parent>
</recording>

Martin

How did you get this output? When I open the link I just get a load of text..

I will try again with that ID now
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,835
Threads: 954
Joined: May 2006
#45
2023-08-29, 08:59 PM (This post was last modified: 2023-08-29, 09:00 PM by mvallevand.)
Mine is from Firefox.

No don't bother with that, your IDs won't match mine.

Martin
Mark-McG
Offline

Member

Posts: 75
Threads: 8
Joined: Dec 2019
#46
2023-08-29, 09:01 PM
(2023-08-29, 08:59 PM)mvallevand Wrote: Mine is from Firefox.

No don't your IDs won't match mine.

Martin

okay understood. How did you get that output with the id in this format <id>xxx</id>?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,835
Threads: 954
Joined: May 2006
#47
2023-08-29, 09:01 PM
That's what is sent, maybe check view source.

Martin
Mark-McG
Offline

Member

Posts: 75
Threads: 8
Joined: Dec 2019
#48
2023-08-29, 09:05 PM
(2023-08-29, 09:01 PM)mvallevand Wrote: That's what is sent, maybe check view source.

Martin

I looked in the NextPVR logs, couldn't find the entry for the race but found practice session and used that ID.. appears to have worked!

Thanks again Martin, I will get to work on the script! 

Do I need to update the script for each event ID or is there a way to use some kind of wildcard for formula 1 listings?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,835
Threads: 954
Joined: May 2006
#49
2023-08-29, 09:15 PM (This post was last modified: 2023-08-29, 09:16 PM by mvallevand.)
I meant view source in the browser when the recording mess is on the screen.

Once you have ParallelProcessing.sh working then the recording ID (not the event ID!) is passed by NextPVR. The "wild card" is the SD name "Live: Formula 1" Here SD call it "Formula 1 Racing" one of the things I had to address for update.

I've never tested any of the pre race events, not sure how well the monitor works for them.

Martin
Mark-McG
Offline

Member

Posts: 75
Threads: 8
Joined: Dec 2019
#50
2023-08-29, 10:04 PM
(2023-08-29, 09:15 PM)mvallevand Wrote: I meant view source in the browser when the  recording mess is on the screen.

Once you have ParallelProcessing.sh working then the recording ID  (not the event ID!) is passed by NextPVR.  The "wild card" is the SD name "Live: Formula 1"  Here SD call it "Formula 1 Racing" one of the things I had to address for update.

I've never tested any of the pre race events, not sure how well the monitor works for them.

Martin

Thanks Martin. I will try and get the script going tomorrow.

I am not bothered about the other events to be honest. The race itself is what matters to me.

I am actually attending the race in Italy so I hope I can leave the UK and have the recording work as planned! Big Grin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (7): « Previous 1 … 3 4 5 6 7 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  NextEnd v5 trial release mvallevand 434 76,618 2024-12-29, 02:00 AM
Last Post: mvallevand
  Comskip + NextEnd VCR58 12 2,492 2023-06-30, 02:26 PM
Last Post: mvallevand
  Unable to install ssPlus larry5b6 12 2,265 2023-02-13, 07:38 PM
Last Post: sub
  NextEnd Extension Mechanism jcole998 7 2,889 2020-05-24, 03:39 PM
Last Post: jcole998
  NextEnd V4 jcole998 1 1,843 2020-05-18, 01:35 PM
Last Post: mvallevand
  NextEnd: "Sports event monitor did not start" antenna 37 12,680 2019-10-27, 12:22 AM
Last Post: mvallevand
  NextEnd Interruption jcole998 2 1,876 2019-09-02, 05:54 PM
Last Post: jcole998
  NextEnd Readiness jcole998 24 8,608 2019-06-01, 01:33 PM
Last Post: jcole998
  Nextend help CDinger 5 4,127 2018-11-05, 03:59 PM
Last Post: mvallevand
  NextEnd not extending sports event antenna 26 11,631 2018-10-11, 04:25 PM
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