[19. April 2013] A-400 Advanced Network Setup now available | [11 Jan. 2013] Customize your A-400 Home Screen

Firmware: A-400 [13 May 2013] | C-300 [30 Nov. 2012] | A-300 [30 Nov. 2012] | C-200 [21 Jan. 2013] | A-200/A-210 [10 Aug. 2012]

Just got your NMT | WIKI has the answers | Search the forum | Forum Rules/Policy | Firmware & Official NMT News | Popcornhour manuals



User(s) browsing this thread: jluc2808, sonic_xig, 1 Guest(s)
Post Reply 
[200/300] [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
08-21-2012, 09:37 AM
Post: #331
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
I wouldn't follow sickbeard, it's not well written. I generally code for 2.7 and have others that tell me when 2.6 doens't work. not really sure what is on the pch but the format(variable) standalone should do what you need.
Find all posts by this user
Add Thank You Quote this message in a reply
08-21-2012, 11:11 AM
Post: #332
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
(08-21-2012 09:37 AM)accident Wrote:  I wouldn't follow sickbeard, it's not well written. I generally code for 2.7 and have others that tell me when 2.6 doens't work. not really sure what is on the pch but the format(variable) standalone should do what you need.

I didn't use any code from sickbeard, just looked through its and other python programs code. When i first tried to solve this error i thought about using .decode/.encode but every time i tried it wold error out no matter what syntax i used. After looking through the other apps i noticed calls to the system encoding, pchtrakt had none. I added default system encoding set to utf-8 and my first idea of using .decode/.encode worked first time. So in the end i only had to add 2 new lines and modify 1.

I am still learning python but am please with what i have learnt so far, but i also know i am way off writing a program from scrach. BTW it is 2.7 on the nmt's

If you want to see my changes and offer any advice Big Grin it can be found HERE

My Popcorn Hour A110 Trakt.tv (TESTING)
[Image: watched-fanart.jpg]
Community Software Installer - For All Your User Apps
PchTrakt - Millers Mods Download

A-400 - Onkyo TX SR608 AV receiver, C-200, A110
Find all posts by this user
Add Thank You Quote this message in a reply
08-21-2012, 07:48 PM
Post: #333
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
(08-17-2012 01:17 AM)jhmiller Wrote:  I may have a fix for this error. I have tried it and works for me.

Open /share/Apps/pchtrakt/pchtrakt/pch.py

with notepad++ or other unix editor

add this line under the last from statment
from xml.sax.saxutils import unescape

should look like
Code:
from xml.etree import ElementTree
from string import split
from urllib2 import Request, urlopen, URLError, HTTPError
from lib.utilities import Debug
from xml.sax.saxutils import unescape
import math

Then find

Code:
response = response.replace('&','')

and replace it with

Code:
response = unescape(response)

restart pchtrakt from csi and check by playing a file with an '

If it works ok for you please report back so that maybe this can be added to the main code.

Miller

Yes Yes it's works for me to on mine PCH C-200
Find all posts by this user
Add Thank You Quote this message in a reply
08-22-2012, 01:40 AM
Post: #334
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
(08-18-2012 05:06 PM)JamesTF Wrote:  Question, is it possible the changes you made to fix the symbols error could affect the "Ignored Keywords"? I have that set in the .ini file as: Ignored Keywords = Trailer,TRAILER,trl,tlr
Or do I need spaces after the comma's?

Thanks,
James

I remembered your settings and noticed that your ignored keywords had upper and lower case, i changed the code so you only need to use lower case and it will still match.

Miller

My Popcorn Hour A110 Trakt.tv (TESTING)
[Image: watched-fanart.jpg]
Community Software Installer - For All Your User Apps
PchTrakt - Millers Mods Download

A-400 - Onkyo TX SR608 AV receiver, C-200, A110
Find all posts by this user
Add Thank You Quote this message in a reply
[+] 1 user says Thank You to jhmiller for this post
08-22-2012, 08:35 PM
Post: #335
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
(06-15-2012 10:05 PM)JamesTF Wrote:  
(05-16-2012 07:17 PM)JamesTF Wrote:  
(05-11-2012 10:47 AM)Bazrah Wrote:  Hi John, Can we take this to the next level and get it to adjust the xml to show watched? I think the watched monitor might do this so you could collaborate?

+1 When time permits of course!
I was wondering if this was still something you may implement?

Thanks for a great program.
James

Iv'e bee going throught the thread seeing what users want adding and found this. I have got a basic setup in place that can change the xml file but unsure as to what xml file this is refering to. I have tested with a tv show that has an xml file Jukebox/TV_SHOW.S01E01.Episode.1.xml. Whilst i can update the file from
Code:
<watched>false</watched>
to
Code:
<watched>true</watched>
I dont belive this is the correct file as refered to in the quote above as there is no Jukebox/TV_SHOW.S01E02.Episode.2.xml file or any other episodes.

If you want see feature added please give me some more info and ill try to get it added while jlauwers is playing his games Wink

My Popcorn Hour A110 Trakt.tv (TESTING)
[Image: watched-fanart.jpg]
Community Software Installer - For All Your User Apps
PchTrakt - Millers Mods Download

A-400 - Onkyo TX SR608 AV receiver, C-200, A110
Find all posts by this user
Add Thank You Quote this message in a reply
[+] 1 user says Thank You to jhmiller for this post
08-23-2012, 02:07 AM (This post was last modified: 08-23-2012 02:11 AM by JamesTF.)
Post: #336
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
Hello jhmiller,

Thank you for the upper/lower case changes to the code. I will change it and test. One thing I noticed a couple of days ago I played a trailer, I am sure it was less than 90 seconds, but the watched file was still created. I did down load and installed the links you provided beforehand. But I will double check tomorrow and post back.

In regards to changing the xml file, I am glad I am not the only one who thought it was odd there was only one xml per season. I just did some checking on one season that we have only watched episode 1-7. Further down in the xml it lists "first part 1" "first part 2" etc. and I believe those are actually episodes (first part 1 = episode 1). And in the same section of each episode is a "watched date" where the time and date are entered once it has been watched. Notice in episode 8 though that "watched date" is missing. So that entire line is added once it has been watched.
There may be other differences as well that I have missed, I am not even close to beginning to know/understand how this all works...just some observations.
The xml is in the jukebox folder as; Army Wives S04E01.xml

Here is a section of the xml, episode 7 has been watched, 8 has not been.

</file>
<file firstPart="7" lastPart="7" season="4" size="276174807" subtitlesExchange="NO"
title="Heavy Losses"
vod=""
watched="true">
<fileLocation>Z:\Movies\(123) TV Shows\Army Wives\Season 4\Army Wives S04E07.mkv</fileLocation>
<fileURL>file:///opt/sybhttpd/localhost.drives/NETWORK_SHARE/Media/Movies/%28123%29%20TV%20Shows/Army%20Wives/Season%204/Army%20Wives%20S04E07.mkv</fileURL>
<fileTitle part="7">Heavy Losses</fileTitle>
<airsInfo afterSeason="0" beforeEpisode="0" beforeSeason="0" part="7">7</airsInfo>
<firstAired part="7">2010-05-23</firstAired>
<watchedDate>2012-07-23 09:55:11</watchedDate>
<filePlot part="7">Chase returns home and appears to be making an effort in reprioritizing his life with Pamela and the kids. Claudia Joy, eager to finish her law degree, has an interview with Alex Miller, the Dean of Admissions at Carolina Law School. Denise is faced with a difficult choice in regard to Jeremy.</filePlot>
<fileRating part="7">70</fileRating>
<fileImageURL part="7">http%3A%2F%2Fthetvdb.com%2Fbanners%2Fepisodes%2F80231%2F2094761.jpg</fileImageURL>
<fileImageFile part="7">Army%20Wives%20S04E07.videoimage.jpg</fileImageFile>
</file>
<file firstPart="8" lastPart="8" season="4" size="275485358" subtitlesExchange="NO"
title="Over and Out"
vod=""
watched="false"> <fileLocation>Z:\Movies\(123) TV Shows\Army Wives\Season 4\Army Wives S04E08.mkv</fileLocation>
<fileURL>file:///opt/sybhttpd/localhost.drives/NETWORK_SHARE/Media/Movies/%28123%29%20TV%20Shows/Army%20Wives/Season%204/Army%20Wives%20S04E08.mkv</fileURL>
<fileTitle part="8">Over and Out</fileTitle>
<airsInfo afterSeason="0" beforeEpisode="0" beforeSeason="0" part="8">8</airsInfo>
<firstAired part="8">2010-06-06</firstAired>
<filePlot part="8">Joan is very anxious to return home after rebuilding schools in Iraq she hopes the news she will receive will be orders that she will be allowed to go back with her unit before she got injured. A broken leg could end Emmalin's dreams of being a professional hockey player. Pamela and Chase take the steps to change something in their marriage after their children began to sense that that thing is very bad. </filePlot>
<fileRating part="8">73</fileRating>
<fileImageURL part="8">http%3A%2F%2Fthetvdb.com%2Fbanners%2Fepisodes%2F80231%2F2203311.jpg</fileImageURL>
<fileImageFile part="8">Army%20Wives%20S04E08.videoimage.jpg</fileImageFile>
</file>

Thanks,
James
Find all posts by this user
Add Thank You Quote this message in a reply
08-23-2012, 03:12 AM (This post was last modified: 08-23-2012 03:13 AM by jhmiller.)
Post: #337
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
Thanks James, I think what i have done so far will be ok for movies as they have 1 xml for each 1. Tv stuff looks a little harder to do but i will have a go.

The 90 seconds limit should work as when i tested it, it would not output anything (scrobble, log or watched file). As for the case changes, i have not committed them yet as started other changes and thought that was to small a change. If you would like to change it, you need to replace

Code:
if keyword in title:
to
Code:
if keyword.lower() in title.lower():
in /Apps/pchtrakt/pchtrakt/scrobble.py
then restart. Its only a small change but saves typing Trailor,trailor,TRAILOR etc.

Miller

My Popcorn Hour A110 Trakt.tv (TESTING)
[Image: watched-fanart.jpg]
Community Software Installer - For All Your User Apps
PchTrakt - Millers Mods Download

A-400 - Onkyo TX SR608 AV receiver, C-200, A110
Find all posts by this user
Add Thank You Quote this message in a reply
08-23-2012, 03:18 AM
Post: #338
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
I have been playing with changing the movie xml trying to figure out which watched setting to change in order for it to show as watched without running yamj (I am using Eversion). Can you tell me what you are changing in the xml? I have been beating my head up against the wall.

Thanks,
James
Find all posts by this user
Add Thank You Quote this message in a reply
08-23-2012, 03:26 AM
Post: #339
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
Code:
<showStatus>UNKNOWN</showStatus>
      <rating>63</rating>
      <ratings>
         <rating moviedb="imdb">63</rating>
      </ratings>
      <watched>false</watched>
      <watchedNFO>false</watchedNFO>
      <watchedFile>false</watchedFile>
      <watchedDate>2012-08-22 17:09:17</watchedDate>

Like i said, im not sure if correct, thats why i asked about it. I just wanted to see if i could change it from false to true. How the jukebox then works with this info, i have no idea Sad

Sorry

My Popcorn Hour A110 Trakt.tv (TESTING)
[Image: watched-fanart.jpg]
Community Software Installer - For All Your User Apps
PchTrakt - Millers Mods Download

A-400 - Onkyo TX SR608 AV receiver, C-200, A110
Find all posts by this user
Add Thank You Quote this message in a reply
08-23-2012, 03:28 AM
Post: #340
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
Movie is the same as tv, eversion uses the index for movie list like other_01.xml and such. But each skin is a little different. If you want it to show in the index wall you would have to change it in the inex if you want to show in details you have to change in per movie details.
Find all posts by this user
Add Thank You Quote this message in a reply
[+] 1 user says Thank You to halfelite for this post
08-23-2012, 03:34 PM (This post was last modified: 08-23-2012 04:35 PM by JamesTF.)
Post: #341
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
Thanks halfelite, I get what you are saying. If you want to change a movie, say "127 Hours" to watched in the "Unwatched" index then you have to find that movie in "Other_Unwatched_1.xml" index and change "<watched>false</watched>" to "<watched>true</watched>".
If you also want to change that movie to watched in "All" then you have to find that movie in "Other_All_1.xml" and change it the same way.

Following the above I was able to manually change an unwatched movie and it works perfectly, the watched flag is shown on the box cover without re-running yamj.

I have not figured out how to change an episode to watched however. I have tried making the same change to "Other_TV Shows_1.xml" and "Other_Unwatched_1.xml" but neither will change the tv show episode to watched. Does anyone know what I am missing?

Thanks,
James

edit:

Ah...In order to change a tv episode to watched (for instance Army Wives S04E08) you need to go into "Set_Army Wives_1.xml" and find:

<file firstPart="8" lastPart="8" season="4" size="275485358" subtitlesExchange="NO"
title="Over and Out"
vod=""
watched="false">

and change:

watched="false">
to
watched="true">

Once that is changed the episode will show as watched without running yamj. As long as a watched file is created at the same time when yamj is run the movie or episode will remain as watched.
Find all posts by this user
Add Thank You Quote this message in a reply
08-25-2012, 09:07 PM (This post was last modified: 08-25-2012 09:08 PM by Bazrah.)
Post: #342
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
Hi again,

I reinstalled python then restarted pchtrakt and the log gives me:

Code:
2012-08-25 21:04:05,664 INFO Pchtrakt START
2012-08-25 21:04:11,440 INFO File: Hellraiser (1987).mkv
2012-08-25 21:04:11,442 ERROR This should never happend! Please contact me with the error if you read this
Traceback (most recent call last):
  File "pchtrakt.py", line 218, in <module>
    doWork()
  File "pchtrakt.py", line 176, in doWork
    videoStatusHandle(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 232, in videoStatusHandle
    pchtrakt.Ignored = isIgnored(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 275, in isIgnored
    file = unicode(myMedia.oStatus.fileName.rsplit('.',1)[0] + '.xml', errors='replace')
TypeError: decoding Unicode is not supported
2012-08-25 21:04:11,470 ERROR /opt/sybhttpd/localhost.drives/NETWORK_SHARE/share1/_esata3/Hellraiser/Hellraiser (1987)/Hellraiser (1987).mkv
Traceback (most recent call last):
  File "pchtrakt.py", line 218, in <module>
    doWork()
  File "pchtrakt.py", line 176, in doWork
    videoStatusHandle(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 232, in videoStatusHandle
    pchtrakt.Ignored = isIgnored(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 275, in isIgnored
    file = unicode(myMedia.oStatus.fileName.rsplit('.',1)[0] + '.xml', errors='replace')
TypeError: decoding Unicode is not supported
2012-08-25 21:04:11,473 ERROR decoding Unicode is not supported
Traceback (most recent call last):
  File "pchtrakt.py", line 218, in <module>
    doWork()
  File "pchtrakt.py", line 176, in doWork
    videoStatusHandle(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 232, in videoStatusHandle
    pchtrakt.Ignored = isIgnored(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 275, in isIgnored
    file = unicode(myMedia.oStatus.fileName.rsplit('.',1)[0] + '.xml', errors='replace')
TypeError: decoding Unicode is not supported

Odd thing is that TV seems to be scrobbling fine, just not movies.
I'm on version 22.

PchTrakt | YAMJ wiki
trakt.tv
Find all posts by this user
Add Thank You Quote this message in a reply
08-25-2012, 09:23 PM (This post was last modified: 08-25-2012 10:44 PM by jhmiller.)
Post: #343
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
(08-25-2012 09:07 PM)Bazrah Wrote:  Hi again,

I reinstalled python then restarted pchtrakt and the log gives me:

Code:
2012-08-25 21:04:05,664 INFO Pchtrakt START
2012-08-25 21:04:11,440 INFO File: Hellraiser (1987).mkv
2012-08-25 21:04:11,442 ERROR This should never happend! Please contact me with the error if you read this
Traceback (most recent call last):
  File "pchtrakt.py", line 218, in <module>
    doWork()
  File "pchtrakt.py", line 176, in doWork
    videoStatusHandle(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 232, in videoStatusHandle
    pchtrakt.Ignored = isIgnored(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 275, in isIgnored
    file = unicode(myMedia.oStatus.fileName.rsplit('.',1)[0] + '.xml', errors='replace')
TypeError: decoding Unicode is not supported
2012-08-25 21:04:11,470 ERROR /opt/sybhttpd/localhost.drives/NETWORK_SHARE/share1/_esata3/Hellraiser/Hellraiser (1987)/Hellraiser (1987).mkv
Traceback (most recent call last):
  File "pchtrakt.py", line 218, in <module>
    doWork()
  File "pchtrakt.py", line 176, in doWork
    videoStatusHandle(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 232, in videoStatusHandle
    pchtrakt.Ignored = isIgnored(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 275, in isIgnored
    file = unicode(myMedia.oStatus.fileName.rsplit('.',1)[0] + '.xml', errors='replace')
TypeError: decoding Unicode is not supported
2012-08-25 21:04:11,473 ERROR decoding Unicode is not supported
Traceback (most recent call last):
  File "pchtrakt.py", line 218, in <module>
    doWork()
  File "pchtrakt.py", line 176, in doWork
    videoStatusHandle(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 232, in videoStatusHandle
    pchtrakt.Ignored = isIgnored(myMedia)
  File "/opt/sybhttpd/localhost.drives/SATA_DISK/Apps/pchtrakt/pchtrakt/scrobble.py", line 275, in isIgnored
    file = unicode(myMedia.oStatus.fileName.rsplit('.',1)[0] + '.xml', errors='replace')
TypeError: decoding Unicode is not supported

Odd thing is that TV seems to be scrobbling fine, just not movies.
I'm on version 22.

Should not file name be Hellraiser.(1987), rename and try it again.

XML Update:

Ive done a lot on this so far and can change a few of the xml files, however im stuck on a few things if any 1 wants to try and help out.

1. need to strip out all but episode title, Game.of.Thrones.S01E02.The.Kingsroad.mkv --> The Kingsroad also Game.of.Thrones.S01E as need to get Game.of.Thrones.S01E01.xml, its ok for episode 1 but not for others. (my regex is rubbish)
2. to find the files i use glob.glob(PATH) but this gives errors if file path has a ' in it, i cant find a work around for that

If i put these in myself it works fine but need at least 1. so can change tv shows to watched as each file has lots of entries so need to find the matching show title. I was doing it by season and episode untill i found out that all shows matching S01E02 were set to watched lol

My Popcorn Hour A110 Trakt.tv (TESTING)
[Image: watched-fanart.jpg]
Community Software Installer - For All Your User Apps
PchTrakt - Millers Mods Download

A-400 - Onkyo TX SR608 AV receiver, C-200, A110
Find all posts by this user
Add Thank You Quote this message in a reply
08-26-2012, 02:44 AM
Post: #344
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
Update again Smile

Almost finished with th Tv side of things
Code:
2012-08-26 02:22:30,112 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Game of Thrones - S02E01 - The North Remembers.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:22:39,024 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Certification_TV-MA_1.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:22:55,818 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Genres_Action and Adventure_1.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:23:02,381 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Genres_Drama_6.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:23:07,382 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Genres_Fantasy_2.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:23:15,091 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Other_All_12.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:23:21,731 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Other_HD_6.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:23:34,141 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Other_New-TV_1.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:23:43,838 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Other_New_1.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:23:59,907 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Other_Rating_1.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:24:09,516 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Other_TV Shows_2.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:24:14,382 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Other_Unwatched_12.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:24:17,371 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Set_Game of Thrones_1.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:24:26,528 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Title_G_1.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv
2012-08-26 02:24:33,817 INFO /share/Storage/PC/HD-E/Jukeboxes/YAMJ/Jukebox4/Year_Last Year_4.xml has been modified as watched for Game of Thrones - S02E09 - Blackwater.mkv

I do not know how each of these effects the display of watched files - maybe some one does or could say what are the best ones to change.
I hope to have the movie (easier to do then Tv) side of things done by tomorrow

Miller

My Popcorn Hour A110 Trakt.tv (TESTING)
[Image: watched-fanart.jpg]
Community Software Installer - For All Your User Apps
PchTrakt - Millers Mods Download

A-400 - Onkyo TX SR608 AV receiver, C-200, A110
Find all posts by this user
Add Thank You Quote this message in a reply
08-26-2012, 04:21 AM
Post: #345
RE: [Apps] PchTrakt 0.4.22 - Trakt.tv scrobbling
tv and movies are the same exact thing as far as watched in the xml files. you have each file, once all the files are marked watch then the standalone watched gets enabled.
Find all posts by this user
Add Thank You Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [100/200/300/400] Wanted! How to install apps without CSI mabdewn 7 1,092 04-20-2013 05:37 PM
Last Post: TReneR
  [200] Installing apps on USB not working ted34 9 1,990 04-17-2013 05:55 PM
Last Post: ted34
  [200] A-210 error installing apps from Csi bartvanl 4 513 03-06-2013 03:15 PM
Last Post: bartvanl
Video [200] [Apps] multicast IPTV Player (FlashLite) ikovrigin 38 16,602 02-17-2013 12:23 AM
Last Post: sunny1081
  [200/300] [Apps] QtWebKit - Web Browser - Updated 23rd Sep vaidyasr 269 113,630 02-12-2013 12:41 PM
Last Post: Willem53
  [300] Guidance needed for using CSI apps mjccox 3 572 01-14-2013 01:16 AM
Last Post: jhmiller
  [200] [Apps] NMT CSI IPTV Player romanr 34 12,158 12-31-2012 07:57 PM
Last Post: romanr
  [200/300/400] Qt 5.0.0-rc1 for NMT - GUI Apps/Games/Utilities vaidyasr 2 915 12-23-2012 06:03 PM
Last Post: vaidyasr
  [200] HELP! No apps/csi Atinkler 22 1,844 11-08-2012 07:58 PM
Last Post: Atinkler
  [300] 300 series and Pchtrakt info pace508 8 2,286 10-18-2012 01:31 PM
Last Post: jhmiller

Forum Jump: