Night - 1.4.7 -Release/General Discussion

  Thread Rating:
  • 1 Votes - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Thread Closed
zwat Offline
Fan
Posts: 724
Joined: Jul 2009
Reputation: 2
Location: Norway
Post: #11
i used notepad++ and find in files for <label> and copied the result i could spot that had hardcoded strings. i would just try to make it a general coding habit to use strings.xml for labels. makes it easier when putting the file out to the public.

Currently addicted to Night. Watch this teaser and join the forum.
Get and request your ClearLOGOs from the ClearLOGO site and forum
Try my changes to the Night skin if u like how they looks
find
gabbott Offline
Team-XBMC Member
Posts: 1,547
Joined: Jul 2007
Reputation: 26
Post: #12
So the extrafanart when enabled... Will it only use the fanart in the extrafanart folder or will it also use the fanart in the movie folder itself as well?

Asking because it I want my default fanart for a movie to be in the rotation does it also need to be in the extrafanart folder as well?
find
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #13
gabbott Wrote:So the extrafanart when enabled... Will it only use the fanart in the extrafanart folder or will it also use the fanart in the movie folder itself as well?

Asking because it I want my default fanart for a movie to be in the rotation does it also need to be in the extrafanart folder as well?

Either/or...You can have just 1 movie with extarfanart and the rest will use the default fanart.

[Image: widget]

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
find
zepa24 Offline
Junior Member
Posts: 3
Joined: Mar 2009
Reputation: 0
Post: #14
Not sure if you already put it back, but on the previous release, the first Button (from the left) when displaying the Menu, was mapped to the Settings screen, you may want to map it back to the Subtitle Download Script

Regards
find
gabbott Offline
Team-XBMC Member
Posts: 1,547
Joined: Jul 2007
Reputation: 26
Post: #15
mcborzu Wrote:Either/or...You can have just 1 movie with extarfanart and the rest will use the default fanart.

Thanks.. for clarification, for a movie that is using extrafanart... will the fanart in the movie folder itself also be used in conjunction with the fanart in the extrafanart folder?
find
mcborzu Offline
Skilled Skinner
Posts: 3,381
Joined: Feb 2009
Reputation: 15
Location: dsf
Post: #16
gabbott Wrote:Thanks.. for clarification, for a movie that is using extrafanart... will the fanart in the movie folder itself also be used in conjunction with the fanart in the extrafanart folder?

If you want it as part of the cycling fanart then put it in the extarfanart folder also...

[Image: widget]

Check out The Carmichael - A Skin For XBMC

Check out Night - A Skin For XBMC

Check out Unfinished - A Skin For XBMC
find
teegee543 Offline
Junior Member
Posts: 15
Joined: Aug 2009
Reputation: 0
Post: #17
I'm writing a fanart fetcher for TMDB and would like to know the file/folder structure for extrafanart detection for movies. I know that you can have each movie in its own folder with the extrafanart folder in each. Is it possible to have all movies in one folder with an extrafanart folder containing extra art for all movies in the root folder?

It would be great if your skin could detect fanart from a structure like:
Code:
|--moviefolder
   |--movie1.mkv
   |--movie2.mkv
   |--extrafanart
      |--movie1-fanart1.mkv
      |--movie1-fanart2.mkv
      |--movie1-fanart1.mkv
      |--movie2-fanart2.mkv
find
GJones Offline
Fan
Posts: 438
Joined: Nov 2009
Reputation: 0
Post: #18
teegee543 Wrote:I'm writing a fanart fetcher for TMDB and would like to know the file/folder structure for extrafanart detection for movies. I know that you can have each movie in its own folder with the extrafanart folder in each. Is it possible to have all movies in one folder with an extrafanart folder containing extra art for all movies in the root folder?

It would be great if your skin could detect fanart from a structure like:
Code:
|--moviefolder
   |--movie1.mkv
   |--movie2.mkv
   |--extrafanart
      |--movie1-fanart1.mkv
      |--movie1-fanart2.mkv
      |--movie1-fanart1.mkv
      |--movie2-fanart2.mkv

This would actually result in issues from most scripts and skins. Most skins expect:
Code:
moviesfolder
|---movie A
     |---movie_A.mkv
     |---fanart.jpg
     |---extrafanart
           |---fanart1.jpg
           |---fanart2.jpg
           |---fanart3.jpg
           |---fanart4.jpg
|---movie B
     |---movie_B.mkv
     |---fanart.jpg
     |---extrafanart
           |---fanart1.jpg
           |---fanart2.jpg
           |---fanart3.jpg
           |---fanart4.jpg
find
stoli Offline
Skilled Skinner
Posts: 2,405
Joined: Nov 2008
Reputation: 31
Location: Florida
Post: #19
teegee543 Wrote:I'm writing a fanart fetcher for TMDB and would like to know the file/folder structure for extrafanart detection for movies. I know that you can have each movie in its own folder with the extrafanart folder in each. Is it possible to have all movies in one folder with an extrafanart folder containing extra art for all movies in the root folder?

It would be great if your skin could detect fanart from a structure like:
Code:
|--moviefolder
   |--movie1.mkv
   |--movie2.mkv
   |--extrafanart
      |--movie1-fanart1.mkv
      |--movie1-fanart2.mkv
      |--movie1-fanart1.mkv
      |--movie2-fanart2.mkv

As GJones mentioned, this would create all kinds of headaches in the end. Best practice is to have each movie in its own folder.
find
teegee543 Offline
Junior Member
Posts: 15
Joined: Aug 2009
Reputation: 0
Post: #20
Thanks for the feedback. I've updated my script to use the standard naming scheme.
find
Thread Closed