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?
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,117
Threads: 957
Joined: May 2006
#11
2016-05-04, 09:15 PM
BrettB Wrote: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).

I tried it here and it works as expected with matching filename. The actual setting is "Update XBMC library after play" so it is there just not good text

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#12
2016-05-05, 04:05 PM
mvallevand Wrote:I tried it here and it works as expected with matching filename. The actual setting is "Update XBMC library after play" so it is there just not good text

Martin,

Thanks for helping me troubleshoot this! I'm a little confused about this comment.

I do have the "Update XBMC library after play" option selected in the add-on settings. And I found the syncXBMC value in the settings.xml file (in /storage/.kodi/userdata/addon_data/script.xbmc.x-newa/) where the active settings are stored which was already set to true. The one I was looking at/changed yesterday was apparently the add-on default file (in /storage/.kodi/addons/script.xbmc.x-newa/resources/) So, I think that part has always been setup OK on my system. And, when I looked in my Kodi database, at that ID 3329 entry, it does have a "lastPlayed" date value set (although the "playCount" is Null--I'm guessing that you aren't updating that field only the "lastPlayed" one). Which does seem to indicate to me that at least part of X-NEWA is using that setting to update the Kodi database.

When you did your testing, did you use the original details.py from X-NEWA (in /storage/.kodi/addons/script.xbmc.x-newa/resources/src/nextpvr/) or did you use one with the changes you suggested yesterday:
Code:
if self.settings.XNEWA_EPISODE == 'Yes'

should be

if self.settings.XNEWA_EPISODE == true
(FYI, I'm attaching the details.py which I modified yesterday after I got that message.) If it did need to be modified, maybe I changed it incorrectly.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,117
Threads: 957
Joined: May 2006
#13
2016-05-06, 02:38 AM
I changed both to

if self.settings.XNEWA_EPISODE == True

The first one is the important one, when it works you should see

Code:
17:14:08 T:10024   DEBUG: {'operator': 'is', 'field': 'filename', 'value': u'The Americans (2013).S03E06.Born Again.ts'}
17:14:08 T:10024   DEBUG: VideoLibrary.GetEpisodes
17:14:08 T:10024   DEBUG: {'filter': {'operator': 'is', 'field': 'filename', 'value': u'The Americans (2013).S03E06.Born Again.ts'}, 'properties': ['tvshowid', 'showtitle', 'file', 'lastplayed', 'resume']}
17:14:08 T:10024   DEBUG: CVideoDatabase::RunQuery took 0 ms for 0 items query: select * from episode_view  WHERE ((episode_view.strFilename LIKE 'The Americans (2013).S03E06.Born Again.ts'))
17:14:08 T:10024   DEBUG: {u'jsonrpc': u'2.0', u'id': 1, u'result': {u'limits': {u'start': 0, u'total': 0, u'end': 0}}}
17:14:08 T:10024   DEBUG: {u'limits': {u'start': 0, u'total': 0, u'end': 0}}
17:14:08 T:10024   DEBUG: VideoLibrary.Scan
17:14:08 T:10024   DEBUG: {'directory': u'K:\\The Americans\\'}
17:14:08 T:10024   DEBUG: {u'jsonrpc': u'2.0', u'id': 1, u'result': u'OK'}
...
17:14:08 T:7732   DEBUG: VideoInfoScanner: Adding new item to tvshows:K:\The Americans\The Americans (2013).S03E06.Born Again.ts
...
17:14:13 T:7988   DEBUG: started player
17:14:13 T:7988   DEBUG: {'season': 3, 'tvshowtitle': 'Born Again', 'episode': 6, 'Title': 'The Americans'}

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#14
2016-05-08, 06:34 PM
Martin,

I'm just now having time to get back to this project... :-)

mvallevand Wrote:I changed both to

if self.settings.XNEWA_EPISODE == True

The first one is the important one, when it works you should see

In my details.py file, the first instance appears to be for deleting/cancelling a recording not playing a recording. So, I'm wondering if I have an old file or something... I notice in my log file
Code:
13:15:57 142294.359375 T:1365242784  NOTICE: X-NEWA Version: 2.4.8 Date: 2015-12-05

But when I go to the X-NEWA add-on in Kodi, it is showing the version as 2.4.9. I think that you just made a slight change from version 2.4.8 to 2.4.9, so I'm guessing that you just didn't change the version number in the debug printing in the code. But your comment about the important change to details.py has me wondering. Maybe I'll try uninstalling and re-installing the add-on.
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,117
Threads: 957
Joined: May 2006
#15
2016-05-08, 06:44 PM
I rushed out 2.4.9 so yeah the lack of internal logging for 2.4.9 was an oversight. It is quite possible this feature doesn't work in web client, I only tested in x-newa mode.

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#16
2016-05-08, 07:07 PM
mvallevand Wrote:It is quite possible this feature doesn't work in web client, I only tested in x-newa mode.

I just tried turning off the web client, began playing "The Catch" from the native X-NEWA "What's New" list. And I still didn't see any VideoLibrary .GetEpisodes or .Scan messages in the attached log file. :-(
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,117
Threads: 957
Joined: May 2006
#17
2016-05-08, 11:16 PM
BrettB Wrote:I just tried turning off the web client, began playing "The Catch" from the native X-NEWA "What's New" list. And I still didn't see any VideoLibrary .GetEpisodes or .Scan messages in the attached log file. :-(

It's going to be a linux file system issue. I expect from a Windows client it would work.

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#18
2016-05-14, 09:15 PM
mvallevand Wrote:It's going to be a linux file system issue. I expect from a Windows client it would work.

Humm... Here's a log file from Kodi on a Windows client. I'm still getting the same results (no episode information getting loaded/read by the player). :-(
mvallevand
Offline

Posting Freak

Ontario Canada
Posts: 53,117
Threads: 957
Joined: May 2006
#19
2016-05-15, 01:59 PM
BrettB Wrote:Humm... Here's a log file from Kodi on a Windows client. I'm still getting the same results (no episode information getting loaded/read by the player). :-(

Did you change those two self.settings.XNEWA_EPISODE == 'Yes' to == True

If so you likly need to map E: in Windows not in advanced settings.

Martin
BrettB
Offline

Posting Freak

Saint Paul, MN, USA
Posts: 2,668
Threads: 170
Joined: Jun 2007
#20
2016-05-15, 04:26 PM
mvallevand Wrote:Did you change those two self.settings.XNEWA_EPISODE == 'Yes' to == True

Yes. And I selected the "Update XBMC library after play" option.
« 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
  X-NEWA client problem jcjefferies 2 1,160 2023-04-11, 05:01 PM
Last Post: jcjefferies
  x-newa new install wheemer 14 4,789 2020-09-15, 02:21 AM
Last Post: mvallevand
  New repository for KNEWC and X-NEWA mvallevand 8 8,934 2020-05-09, 02:19 AM
Last Post: jksmurf
  Changing the KNEWC UI Client Skin cweseloh 5 2,725 2020-05-04, 04:45 PM
Last Post: mvallevand
  X-NEWA keeping host PC awake lost@c 6 2,850 2020-04-03, 04:26 AM
Last Post: lost@c
  File Links Broken vintdiesel 3 2,056 2020-01-19, 06:10 PM
Last Post: mvallevand
  X-NEWA End of Life mvallevand 39 16,189 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,944 2019-06-15, 01:33 AM
Last Post: mvallevand
  X-NEWA 2.5.4 Release mvallevand 4 2,977 2019-03-11, 05:57 PM
Last Post: mvallevand
  X-NEWA Web Client Not Acting On Keypresses BrettB 4 3,124 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