NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Kodi / XBMC X-NEWA v
« Previous 1 … 5 6 7 8 9 … 13 Next »
What skin file(es) is/are used to layout the Info OSD when played via X-NEWA?

 
  • 0 Vote(s) - 0 Average
What skin file(es) is/are used to layout the Info OSD when played via X-NEWA?
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#1
2016-05-04, 03:33 PM
For a while, I've noticed a difference in the Info OSD displayed when playing a recording via X-NEWA and when playing the same recording via the native Kodi Videos or TV Shows listings.

Here's the X-NEWA one:
[ATTACHMENT NOT FOUND]

Here's the Kodi Videos/TV Shows listing one:
[ATTACHMENT NOT FOUND]

Notice how the X-NEWA one has a generic icon for the show image, the show name is the big, yellow name displayed, and neither the sub-title nor the series/episode numbers are displayed anywhere. I'm confused because it seems to me (from what Martin has said about X-NEWA just calling the regular Kodi player) that the OSD should be the same whichever way the player is called. But that doesn't seem to be happening for me. So are there different skin files defining the layout for the OSD? Or is there some other difference?

I definitely prefer the layout (and info) from the native Kodi playback with the show name smaller (the show is usually obvious) and the sub-title and episode numbers. (Ideally, I'd like to also be able to see the full episode description and the date it was recorded.)
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,106
Threads: 957
Joined: May 2006
#2
2016-05-04, 04:00 PM
BrettB,

For playback of recordings there is only the Kodi skin, the likely difference you are seeing is that the better one has already been scanned into Kodi so it has Kodi metadata One of the x-newa options is to scan a video library folder for changes before playback.

The filename does have to match the scan file name though, so you would want the video library name to match what x-newa uses. Logs would show any difference here.

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#3
2016-05-04, 04:28 PM
mvallevand Wrote:For playback of recordings there is only the Kodi skin, the likely difference you are seeing is that the better one has already been scanned into Kodi so it has Kodi metadata One of the x-newa options is to scan a video library folder for changes before playback.

I'm not sure where this option is. For the X-NEWA add-on, in the X-NEWA Client tab, I see options for "Update XBMC library after play", "Copy cover art", and "Permanent cache", and I've got all of those selected. I don't have the Web Client "Enable high quality screens (slower)" selected, but I don't think that would be it.

mvallevand Wrote:The filename does have to match the scan file name though, so you would want the video library name to match what x-newa uses. Logs would show any difference here.

kodi.log file (with debugging on) attached. I think that I see the difference in file names:
Code:
X-NEWA:
11:09:30 210.222046 T:1552503712   DEBUG: CSMBFile::Open - opened smb://192.168.143.10/Recordings/Chicago Med/Chicago Med.S01E13.Us.ts, fd=10000

Native:
11:10:07 247.837250 T:1624871840   DEBUG: CSMBFile::Open - opened smb://WALLY/NPVR Recordings/Chicago Med/Chicago Med.S01E13.Us.ts, fd=10000

I'll try changing my substitution in advancedsettings.xml.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,106
Threads: 957
Joined: May 2006
#4
2016-05-04, 04:40 PM
I guess I never but it in the config GUI. Edit the user settings.xml and set syncXBMC to true

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#5
2016-05-04, 04:44 PM
BrettB Wrote:I'll try changing my substitution in advancedsettings.xml.

New log file attached. The OSD is still the same. The open for the .ts file now matches.

Code:
11:34:22  90.626396 T:1555035040   DEBUG: CSMBFile::Open - opened smb://WALLY/NPVR Recordings/Chicago Med/Chicago Med.S01E13.Us.ts, fd=10000

However, further down I found:
Code:
11:34:22  91.014709 T:1964032000   DEBUG: GetMovieId (D:/NPVR Recordings/Chicago Med/Chicago Med.S01E13.Us.ts), query = select idMovie from movie where idFile=3329
11:34:22  91.015221 T:1964032000   DEBUG: GetEpisodeId (D:/NPVR Recordings/Chicago Med/Chicago Med.S01E13.Us.ts), query = select idEpisode from episode where idFile=3329
11:34:22  91.015694 T:1964032000   DEBUG: GetMusicVideoId (D:/NPVR Recordings/Chicago Med/Chicago Med.S01E13.Us.ts), query = select idMVideo from musicvideo where idFile=3329

So, it looks like the path substitution isn't being applied when it's querying for the Kodi database metadata????
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,106
Threads: 957
Joined: May 2006
#6
2016-05-04, 04:51 PM
No idea you'd have to look at what ID 3329 shows in the Kodi database

You might be able to manually add D:/NPVR Recordings/ as your Video Library source.

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#7
2016-05-04, 04:55 PM
mvallevand Wrote:I guess I never but it in the config GUI. Edit the user settings.xml and set syncXBMC to true

I changed that setting in the settings.xml file to true. No change to the OSD. Here're the logs.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,106
Threads: 957
Joined: May 2006
#8
2016-05-04, 05:09 PM
Just because it scans doesn't mean it scrapes when a Video Library isn't set up but I am not seeing the debug lines I'd expect for the forced scan. I thinks the line in details.py that shows as


if self.settings.XNEWA_EPISODE == 'Yes'

should be

if self.settings.XNEWA_EPISODE == true

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#9
2016-05-04, 05:24 PM
mvallevand Wrote:if self.settings.XNEWA_EPISODE == 'Yes'

should be

if self.settings.XNEWA_EPISODE == true

I found 2 instances of "if self.settings.XNEWA_EPISODE == 'Yes' " in details.py and changed them to end " == True" instead. (Is it case sensitive for True vs true? I used "True" because I saw that elsewhere in details.py, but now rereading your message see "true".)

No change to OSD. Attached logs. I did try with 3 different episodes because I have already view 2 of them before. I'm pretty sure the last one had never been played in X-NEWA before.
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#10
2016-05-04, 05:31 PM
mvallevand Wrote:No idea you'd have to look at what ID 3329 shows in the Kodi database

You might be able to manually add D:/NPVR Recordings/ as your Video Library source.

In my database, File ID 3329 has Path ID 879 which is "D:/NPVR Recordings/Chicago Med/" (and it's strContent and strScraper are Null).
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  X-NEWA client problem jcjefferies 2 1,152 2023-04-11, 05:01 PM
Last Post: jcjefferies
  x-newa new install wheemer 14 4,781 2020-09-15, 02:21 AM
Last Post: mvallevand
  New repository for KNEWC and X-NEWA mvallevand 8 8,920 2020-05-09, 02:19 AM
Last Post: jksmurf
  Changing the KNEWC UI Client Skin cweseloh 5 2,722 2020-05-04, 04:45 PM
Last Post: mvallevand
  X-NEWA keeping host PC awake lost@c 6 2,836 2020-04-03, 04:26 AM
Last Post: lost@c
  File Links Broken vintdiesel 3 2,051 2020-01-19, 06:10 PM
Last Post: mvallevand
  X-NEWA End of Life mvallevand 39 16,159 2019-11-16, 02:30 AM
Last Post: jksmurf
  X-NEWA 2.5.4 & knew4v5 2.6.6 both "Die" when pressing Previous Chapter in LE BrettB 3 2,939 2019-06-15, 01:33 AM
Last Post: mvallevand
  X-NEWA 2.5.4 Release mvallevand 4 2,976 2019-03-11, 05:57 PM
Last Post: mvallevand
  X-NEWA Web Client Not Acting On Keypresses BrettB 4 3,119 2019-02-02, 02:05 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