NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Kodi / XBMC v
« Previous 1 … 10 11 12 13 14 … 43 Next »
Skining Manual

 
  • 0 Vote(s) - 0 Average
Skining Manual
Paulo
Offline

Member

Posts: 50
Threads: 4
Joined: Jan 2020
#11
2020-01-15, 01:42 AM
coreelec is 3.3.17.1 and looks like this,and seems to be the correct version it contains (Real Time,Extended Timeshift & Timeshift)

[Image: screenshot004.png]

Unfortunately, today I can not check what version 3.3.18 looks like in libreelec I will do it tomorrow
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,970
Threads: 956
Joined: May 2006
#12
2020-01-15, 01:51 AM
There was a fix in 3.3.18 of an initialized variable that only seems to impact Android.

Martin
Paulo
Offline

Member

Posts: 50
Threads: 4
Joined: Jan 2020
#13
2020-01-15, 02:01 AM
and last question! if this is how your folder should look like after using the following command

[Image: 2020-01-15-01h55-19.png]


Code:
docker image pull nextpvr/nextpvr_arm32v7
mkdir /storage/nextpvr
mkdir /storage/nextpvr/livetv
docker run -d \
    --name=nextpvr \
    --restart unless-stopped \
    --volume /storage/nextpvr/config:/config \
    --volume /storage/tvshows:/recordings \
    --volume /storage/videos:/movies \
    --volume /storage/nextpvr/livetv:/buffer \
    --volume /etc/localtime:/etc/localtime:ro \
    --publish 8866:8866 \
    nextpvr/nextpvr_arm32v7:latest

do I have to give some permissions
chmod +x /folder/location ???

I still have the impression that it is not working properly
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,970
Threads: 956
Joined: May 2006
#14
2020-01-15, 02:36 AM
I don't know post your logs in the correct forum here and explain what isn't working with your logs.

Martin
Paulo
Offline

Member

Posts: 50
Threads: 4
Joined: Jan 2020
#15
2020-01-18, 06:44 PM
I have another question regarding

ListItem.IsNew

I'm in the process of adding this option to the skin and I'm not sure which of the options in xmltv is responsible for reading this.

Here I have enough information:
https://github.com/xbmc/xbmc/commit/9d52...96a296f9c6

but I still don't know how and what to configure the guide

in the title like this?

Code:
<title lang="en">PREMIERE: Moon</title>

or

Code:
<country lang="pl">Wielka Brytania</country>
    <rating>
      <value>12</value>
    </rating>
    <rating>
      <value>12+</value>
    </rating>
    <star-rating>
      <value>5/10</value>
    </star-rating>

add something here but I don't know how to sign
  </programme>

in v5 they won't show up in my guide either

I have never used versions older than v5 and I have no idea whether it works or not , also in every timeline I have "New" icons, but it's not New)

thx.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,729
Threads: 767
Joined: Nov 2003
#16
2020-01-18, 06:54 PM
Are you using an xmltv EPG source? There is a lot of variability in how different xmltv sources try to do stuff.

NextPVR set its new flag (FirstRun) based on the <new> or <previously-shown> tags. I remember Kodi does some weird stuff around new indicator though, basing it on the original air date if known.

NextPVR does collect <star-rating>, but doesn't show it anywhere in it's own UI, and doesn't send it to Kodi.

It does not collect <country> or <rating>.

'significance' like "Series Premiere" and "Season Premiere" are derived from season/episode numbers. These can also supported as a genre, which some xmltv sources use. It will not see your "PREMIERE" that is part of title as anything special - it'll just be part of the title. 'significance' is sent to kodi.

I've always treated these items like star-rating, country and rating as not very important, and I don't think any nobody has ever asked for them in the last 10 years, so there had never been a need to change my view on them.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 52,970
Threads: 956
Joined: May 2006
#17
2020-01-18, 07:06 PM
4,3.0 of the addon which right now is not officially released is the only one that implements this code

Currently Kodi Matrix interprets the new flag from the original air date but that will be changing as flags are changing.

I don't know how sub extracts the original air date from xmltv the values I have seen are

<date><date>
<episode-num system="original-air-date"></episode-num>

Also if sub extracts new the xmltv perhaps from <premiere></premiere> the addon code sets the original air date to the start time.

Martin
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,729
Threads: 767
Joined: Nov 2003
#18
2020-01-18, 07:10 PM
(2020-01-18, 07:06 PM)mvallevand Wrote: I don't know sub extracts the original air date from xmltv the values
It's the optional 'start' date attribute that is included with the <previously-shown> attribute.

In general xmltv is such a dog's breakfast. (not sure if that saying means anything sensible in the rest of the world)
Paulo
Offline

Member

Posts: 50
Threads: 4
Joined: Jan 2020
#19
2020-01-18, 07:39 PM (This post was last modified: 2020-01-18, 07:41 PM by Paulo.)
looking for more info on tmat (FirstRun), thx

I have something like this in seasons and episodes
Code:
<episode-num system = "onscreen"> S1E12-ost. </episode-num>


where "-ost." = last one in short and I suppose the sticker must have the same name,


"In general xmltv is such a dog's breakfast. (not sure if that saying means anything sensible in the rest of the world)"

"dog on the doghouse"


I like to have all the information and hence it asks
I thought PVR has similar labels in kodi or the same
and that each pvr addon has the same information, only a different use (one records, another connects to enigma 2 etc ... but uses the same windows and descriptions)
"I hope you know what I mean"


I can solve it differently but I will receive information only for some movies and series
Code:
<Onclick>RunScript(script.extendedinfo,info=extendedinfo,name=$INFO[ListItem.Title])

no matter, it's better to focus on functionality rather than appearance

thanks for the information and explanation
Paulo
Offline

Member

Posts: 50
Threads: 4
Joined: Jan 2020
#20
2020-01-18, 07:50 PM
(2020-01-18, 06:54 PM)sub Wrote: Are you using an xmltv EPG source?
no no, i use .xml from webgrab
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

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


Possibly Related Threads…
Thread Author Replies Views Last Post
  Adding/editing timer to one time (manual) recording from Kodi guide has no effect mmortal03 6 1,162 2024-06-25, 09:30 PM
Last Post: mmortal03
  Manual insert to EPG_EVENT not showing in Kodi bzellinger 3 1,555 2023-10-25, 09:48 AM
Last Post: George2
  Set one time manual recording from Kodi. biggoronjon 10 2,211 2021-08-17, 07:40 PM
Last Post: mvallevand
  Changing Name Field on Manual Recording ElihuRozen 0 902 2021-05-17, 04:31 AM
Last Post: ElihuRozen

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

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

Linear Mode
Threaded Mode