[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: 1 Guest(s)
Thread Closed 
Yet Another MovieJukebox 1.0.12 beta Released
10-14-2008, 11:15 PM (This post was last modified: 10-14-2008 11:17 PM by Coljjw.)
Post: #61
RE: Yet Another MovieJukebox 1.0.12 beta Released
Does anyone know how I can select my own cover/fanart?

I used to just place the image I to use as a cover but now it just gets ignored and wants to source its own even when its named correctly.
Find all posts by this user
10-14-2008, 11:44 PM
Post: #62
Episode prefix naming
Regarding:
- Enhancement #127 TV Episode numbering scheme
There is only possibility to fix this issue by users themselves.
Episode name formatting was moved from java and XML to skin layout.

I've read the fix details in:
http://code.google.com/p/moviejukebox/is...ail?id=127

And I still don't understand how to change the details.xml for controlling this.

An example would be much appreciated.

Also if my file is named heroes.s03.e01 will the episode number be recognized from file name as was in .11, or is this another issue -
http://code.google.com/p/moviejukebox/is...ail?id=220
Find all posts by this user
10-14-2008, 11:49 PM
Post: #63
RE: Yet Another MovieJukebox 1.0.12 beta Released
C:\>moviejukebox H:\movies
'moviejukebox' is not recognized as an internal or external command,
operable program or batch file.

this is what i get when i enter the command prompt.what should i do to run it? its on my c dir
Find all posts by this user
10-15-2008, 12:00 AM
Post: #64
RE: Yet Another MovieJukebox 1.0.12 beta Released
if you want to just type moviejukebox you need to be in the directory that you put the jukebox stuff in like c:\program files\moviejukebox\
or you could type the whole path c:\program files\moviejukebox\moviejukebox h:\movies
(10-14-2008 11:49 PM)gizzz Wrote:  C:\>moviejukebox H:\movies
'moviejukebox' is not recognized as an internal or external command,
operable program or batch file.

this is what i get when i enter the command prompt.what should i do to run it? its on my c dir
Find all posts by this user
10-15-2008, 12:11 AM (This post was last modified: 10-15-2008 12:39 AM by gizzz.)
Post: #65
RE: Yet Another MovieJukebox 1.0.12 beta Released
ok got it ,its working now.

now i have the problem that doesnt find names but it finds 00001 00002 and on and on. no titles at all.
when i direct moviejukebox to tv libarary there is no problem but the movies directory has the numbering problem.
Find all posts by this user
10-15-2008, 06:30 AM
Post: #66
RE: Yet Another MovieJukebox 1.0.12 beta Released
(10-14-2008 05:36 PM)jtrosky Wrote:  ...Although, it sure does make it a pain re-implementing my "customizations" to the default skin each time you release a new version that modifies the default skin!!!

Get the sourceforge.net program WinMerge
It helps you do side-by-side diff and you can decide what to merge into each others' file.
Usually easier to add back in changes to whichever file had fewer new changes.
Find all posts by this user
10-15-2008, 06:31 AM
Post: #67
RE: Yet Another MovieJukebox 1.0.12 beta Released
can anyone confirm if the xml's created by the .10 version will work with .12? i get a lot of errors appearing on the page. some xmls work ok and some don't.

i made a lot of changes in some of the xml files using that gui interface that was somewhere on the forum.
Find all posts by this user
10-15-2008, 07:37 AM
Post: #68
RE: Yet Another MovieJukebox 1.0.12 beta Released
(10-14-2008 10:56 PM)sTyLeS Wrote:  
(10-14-2008 10:52 PM)Christophe Wrote:  I use the default skin "sd" which include the parameter "moviedb.fanart.download=true" in his parameter file... So I supposed that this skin had this feature too...

I'll try with the robinsjexcal skin but i have an SD tv and I think there is no SD skin for the robinsjexcal one...

Thanks for your reply Wink

Right, the moviedb.fanart.download parameter exists in the other skins because it is a valid parameter. It's just defaulted to false. If you enable it, you should see the fanart downloaded to the Jukebox dir if fanart was found. You can feel free to modify any of the current skins to use this fanart if you want if you are so inclined to play with the xsl files.

Hello, I checked in my jukebox dir and I saw the fanart jpg files...
But when I check in the HTML page code, I see it still use the default "picture\background.jpg". Should it be automatic or did we have to set it manualy ? What do you mean "to play with xsl files" ?
Find all posts by this user
10-15-2008, 07:41 AM
Post: #69
RE: Episode prefix naming
(10-14-2008 11:44 PM)duder Wrote:  Regarding:
- Enhancement #127 TV Episode numbering scheme
There is only possibility to fix this issue by users themselves.
Episode name formatting was moved from java and XML to skin layout.

I've read the fix details in:
http://code.google.com/p/moviejukebox/is...ail?id=127

And I still don't understand how to change the details.xml for controlling this.

An example would be much appreciated.

Code:
<xsl:choose>
    <xsl:when test="/details/movie/season != -1">
        <xsl:if test="@title!='UNKNOWN'">
            <xsl:if test="@part &lt; 10">0</xsl:if><xsl:value-of select="@part"/>[b]) [/b]<xsl:value-of select="@title"/>
        </xsl:if>
        <xsl:if test="@title='UNKNOWN'">[b]Episode[/b]
            <xsl:if test="@part &lt; 10">0</xsl:if><xsl:value-of select="@part"/>
        </xsl:if>
    </xsl:when>
    <xsl:otherwise>
        <xsl:value-of select="/details/movie/titleSort"/> (Part <xsl:value-of select="@part"/>)
    </xsl:otherwise>
</xsl:choose>

This will output
01) Description 1 from xml file
02) again for 2 from xml file
...
Episode 07
...
10) number 10 episode

-- note Episode 07 is printed because no value in XML file.
-- I have logged an issue to get episode description from filenames first
Find all posts by this user
10-15-2008, 07:47 AM
Post: #70
RE: Yet Another MovieJukebox 1.0.12 beta Released
(10-15-2008 07:37 AM)Christophe Wrote:  Hello, I checked in my jukebox dir and I saw the fanart jpg files...
But when I check in the HTML page code, I see it still use the default "picture\background.jpg". Should it be automatic or did we have to set it manualy ? What do you mean "to play with xsl files" ?
There is no official skin that will currently use the fanart files that are downloaded. The only skin that will do that is Robinsjexcal skin (see the this thread).
Downloading them with any other skin will not make the slightest difference except to slow down the run time.

Once again, if you didn't understand:

FANART IS NOT USED BY THE DEFAULT SKIN, GFB107 OR THE SD VERSIONS.
Visit this user's website Find all posts by this user
10-15-2008, 07:49 AM (This post was last modified: 10-15-2008 08:01 AM by Christophe.)
Post: #71
RE: Yet Another MovieJukebox 1.0.12 beta Released
Ow okay, sorry...

Thanks for your reply Omertron Smile
Find all posts by this user
10-15-2008, 07:58 AM
Post: #72
RE: Episode prefix naming
(10-14-2008 11:44 PM)duder Wrote:  Regarding:
- Enhancement #127 TV Episode numbering scheme
There is only possibility to fix this issue by users themselves.
Episode name formatting was moved from java and XML to skin layout.

I've read the fix details in:
http://code.google.com/p/moviejukebox/is...ail?id=127

And I still don't understand how to change the details.xml for controlling this.

An example would be much appreciated.

Fragment of detail.xsl file:
Code:
Episode <xsl:value-of select="@part"/>
<xsl:if test="@title!='UNKNOWN'">
  - <xsl:value-of select="@title"/>
</xsl:if>
You will get "Episode 1 - Episode title"

change to:
Code:
<xsl:value-of select="@part"/>
<xsl:if test="@title!='UNKNOWN'">
  - <xsl:value-of select="@title"/>
</xsl:if>
and you will get "1 - Episode title"

Quote:Also if my file is named heroes.s03.e01 will the episode number be recognized from file name as was in .11, or is this another issue -
http://code.google.com/p/moviejukebox/is...ail?id=220
This file should be named heroes.s03e01.mkv and the episode number will be recognized from file name.
Find all posts by this user
10-15-2008, 09:07 AM
Post: #73
RE: Yet Another MovieJukebox 1.0.12 beta Released
Great work guys! Smile
Find all posts by this user
10-15-2008, 09:56 AM
Post: #74
RE: Yet Another MovieJukebox 1.0.12 beta Released
(10-14-2008 10:24 PM)PrimaryMaster Wrote:  
(10-14-2008 10:07 PM)sTyLeS Wrote:  
(10-14-2008 10:01 PM)PrimaryMaster Wrote:  Like this:

The Move.DVDrip.Avi
The Move.DVDrip [Trailer].mov

Ooh, very interesting.
If you get rid of the space it works:
The Move.DVDrip[Trailer].mov

Can you please log it as a new defect? Thanks!

Its works now.. =)

one thing... is there a chance to NOT print out the hole file namn:
kabluey.2007.limited.dvdrip.xvid[Trailer]

Why not just Trailer?

http://code.google.com/p/moviejukebox/is...ail?id=224
Find all posts by this user
10-15-2008, 10:31 AM
Post: #75
RE: Yet Another MovieJukebox 1.0.12 beta Released
(10-14-2008 07:58 PM)Freakeao Wrote:  
(10-14-2008 07:48 PM)fimo Wrote:  Thanks for the answer, well this is the first time that i have to edit a value in this jukebox, so if my covers is in a folder on my
C:\covers
what would a "Update searchForExistingCoverArt and possibly the other values depending on how you store your images"

Just an example so i can see how am surpose to edit this in the future,
Blush

poster.scanner.searchForExistingCoverArt=moviename
poster.scanner.coverArtDirectory=c:\covers

I'm not sure if that will work for the coverArtDirectory, just because the comments say it should be a directory relative to the moviefile. I have not tested those values and I'm not sure if the java on windows likes an absolute path like that with the drive letter. I'm on linux for my jukebox

Hi again,
Sorry to ask again but i have just tried the above edit in the
"moviejukebox.properties"
poster.scanner.searchForExistingCoverArt=moviename
poster.scanner.coverArtDirectory=c:\covers

but i still cant get it to pick the covers i have on my PC in the folder
C:\covers
it still search on the internet ?
I dont know what i am doing wrong / how its possible to have it search for covers on my pc iso the internet ? Huh
Find all posts by this user
Thread Closed 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [plexNMT] Beta Release, Download and Install rip77 98 9,704 Today 08:00 AM
Last Post: rip77
  Dynamic Media Jukebox 0.021 Released cmgrant 376 176,858 08-15-2010 05:38 PM
Last Post: denli
  Media Menu Flow Released Today 8-06-2010 michael1t 13 4,568 08-10-2010 12:33 AM
Last Post: rgollar
  [XBMC] A Port By ejp. They Said It Couldn't Be Done. *PRIVATE BETA* *INVITE ONLY* ejp 475 257,832 06-21-2010 08:30 PM
Last Post: chris57
  UMCMusic Extension 2.0.321 released - Update from 24 April 2010 thica 23 6,429 06-06-2010 09:54 PM
Last Post: thica
  [Download] UMC V1.84 - Beta - NOW AVAILABLE DonGyros 349 93,476 04-11-2010 11:39 PM
Last Post: Alex2009
  beta Testing for Music Video Flow for X200 Users michael1t 2 2,023 03-17-2010 07:51 PM
Last Post: michael1t
  Beta Testers for Music Video Flow michael1t 0 1,504 02-16-2010 12:59 AM
Last Post: michael1t
  com.moviejukebox.plugin.AllocinePlugin Scorpys 0 1,061 10-20-2009 01:10 PM
Last Post: Scorpys
  SKIN - StarZ - Next release - beta 0.1b starz 31 10,185 10-09-2009 09:28 AM
Last Post: coendeurloo

Forum Jump: