Mixed XML & URLl video NFO bug?

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
Aenima99x Offline
Member+
Posts: 1,036
Joined: Aug 2007
Reputation: 7
Location: California
Post: #21
spiff Wrote:after being overrun by all the tests results i obtained, i finally had a few spare moments to test it. commited at r21453. sho, please do your thing.

nicezia; you would want to add this to your library as well probably
Cool thanks Spiff!
Even though I just finished compiling 21452 about 2 hours ago Laugh
find quote
pletopia Offline
Fan
Posts: 737
Joined: Jul 2008
Reputation: 1
Post: #22
thanks for the update .. i'll give it a test in a bit .. need to grab the latest svn

jmarshall Wrote:Perhaps a <genre append="true"> might be a solution?

to enable it .. do i need to add lines like that to my advancedsettings.xml as outlined by jmarshall in a previous post ?

<genre append="false">
<director append="false">
<studios append="false">
(This post was last modified: 2009-07-07 11:20 by pletopia.)
find quote
spiff Offline
Grumpy Bastard Developer
Posts: 12,234
Joined: Nov 2003
Reputation: 82
Post: #23
spiff Wrote:hmm, i think the solution would be a <genre clear="true">. the specified xml information is applied after we have scraped. pletopia, you haven't quite grasped the problem yet if you think an advancedsetting will help Smile
i'm NOT explaining it again.

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
pletopia Offline
Fan
Posts: 737
Joined: Jul 2008
Reputation: 1
Post: #24
i guess i have to wait for sho to update the wiki with instructions on how to get this feature to work .. thx for the new feature though
find quote
Aenima99x Offline
Member+
Posts: 1,036
Joined: Aug 2007
Reputation: 7
Location: California
Post: #25
Pletopia - you need to edit your actual movie.nfo files and add the tags there.
Like this
<genre clear="true">Horror / Mystery</genre>
<director clear="true">someone / someone2</director>


Spiff - I have about 500 movies and use nfo's with mixed xml/url for all of them, is there a way to universally set these options so I don't have to manually edit all of my nfo's? Shocked
find quote
spiff Offline
Grumpy Bastard Developer
Posts: 12,234
Joined: Nov 2003
Reputation: 82
Post: #26
aenima99x; no.
it's simple to do with some scripting though, something along

for i in find . -name *nfo; do cat $i | sed -e 's/<genre/<genre clear="true"/g' > foo && mv foo $i; done

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
Aenima99x Offline
Member+
Posts: 1,036
Joined: Aug 2007
Reputation: 7
Location: California
Post: #27
Thanks Spiff.
(This post was last modified: 2009-07-08 18:54 by Aenima99x.)
find quote
Aenima99x Offline
Member+
Posts: 1,036
Joined: Aug 2007
Reputation: 7
Location: California
Post: #28
Sorry to bother Spiff, but what are all the fields that can use the "clear" tag?
Is it just genre, directors and studio? Thanks.
find quote
spiff Offline
Grumpy Bastard Developer
Posts: 12,234
Joined: Nov 2003
Reputation: 82
Post: #29
genre, director, studio, actor, credits, artist (for mvids)

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote
sho Offline
Team-XBMC Member
Posts: 4,133
Joined: May 2004
Reputation: 3
Post: #30
Docs updated:
http://wiki.xbmc.org/?title=Import_-_Exp...ML_and_URL

Always read the XBMC online-manual, FAQ and search the forum before posting.
Do not e-mail XBMC-Team members directly asking for support. Read/follow the forum rules.
For troubleshooting and bug reporting please make sure you read this first.
find quote