Kodi Community Forum
Media Info Plus - Manage your Movies, Shows, Tunes, NFO and more (Open Source VB.NET) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116)
+--- Thread: Media Info Plus - Manage your Movies, Shows, Tunes, NFO and more (Open Source VB.NET) (/showthread.php?tid=47071)



- revoman - 2009-07-16

fekker Wrote:Test build 2906 up on the website for download (http://www.mediainfoplus.com)
- fixed expression so that they are now pulled correctly

Great job ! Big Grin

Thank you very much ! Nod

Would it be possible to pull the director for the movies too ?

I tried it with face/off. Actors are added correctly now.
But i'm missing the director of each movie that i tried.

That would be great Nod

Thx in advance

Martin


- hikaricore - 2009-07-16

fekker Wrote:command line assumes that you are using aired order if no seasonXX.nfo exists

Assuming Season 1 is using DVD order, add the following .nfo file to the tv show directory.

create a file called season01.nfo
put in the following for DVD order
Code:
<?xml version="1.0" encoding="utf-8"?>
<xbmcTvSeries xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xbmctvseriesNumber>0</xbmctvseriesNumber>
  <xbmctvseriesUseDVDOrder>true</xbmctvseriesUseDVDOrder>
  <xbmctvseriesUseAiredOrder>false</xbmctvseriesUseAiredOrder>
  <xbmctvseries />
</xbmcTvSeries>

Doesn't seem to be working Sad I'm using 2906.
I've placed the file in the series root as well as the season root and nothing changes.
I'm using firefly as an example each and every time it uses aired order instead of proper order.
Now I have the episodes in the correct order, but they're given the info upon scanning.

Anything you think I may have missed?


- rflores2323 - 2009-07-16

where do I get the auto updaterHuh i see the article on the website however do not see where to download it from.


- fekker - 2009-07-16

Test build 2907

Fixed dvd order for cmd line (still needs testing in xbmc), not sure if i have the episode number correct in the .nfo file, the information itself is pulled based on order.

Fixed director parse for movies

http://mediainfoplus.com/index.php?option=com_phocadownload&view=category&id=1:2.0.1&download=17:mip-2907-test-build&Itemid=54


- rflores2323 - 2009-07-16

rflores2323 Wrote:where do I get the auto updaterHuh i see the article on the website however do not see where to download it from.


DOH.. on the top of the page... Oo feel like a dumb@$$ now... :o


- hikaricore - 2009-07-17

fekker Wrote:Test build 2907

Fixed dvd order for cmd line (still needs testing in xbmc), not sure if i have the episode number correct in the .nfo file, the information itself is pulled based on order.

Fixed director parse for movies

http://mediainfoplus.com/index.php?option=com_phocadownload&view=category&id=1:2.0.1&download=17:mip-2907-test-build&Itemid=54

Alright so now miptvupdate IS associating the correct episode with the correct info.
However it is still giving it the wrong episode number.

Example:

star.trek.tos.remastered.s02e01.catspaw.dvdrip.fs.mp3.xvid-LLP.nfo
Code:
<title>Catspaw</title>                                                                                                
  <season>2</season>                                                                                                    
  <episode>7</episode>                                                                                                  
  <rating>4.0</rating>                                                                                                  
  <plot>When a landing party disappears and one man is beamed up dead, Kirk and Spock investigate and meet a pair of aliens who seem capable of performing magic.</plot>

It recognizes the order but it's still numbering them wrong for some reason.
I've tested this in xbmc by removing the items and rescanning with xbmc set to use dvd order which no change.
Is this proper below or do i need to change the seriesNumber? This option was unclear to me as to its purpose.

season02.nfo
Code:
<?xml version="1.0" encoding="utf-8"?>
<xbmcTvSeries xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xbmctvseriesNumber>0</xbmctvseriesNumber>
  <xbmctvseriesUseDVDOrder>true</xbmctvseriesUseDVDOrder>
  <xbmctvseriesUseAiredOrder>false</xbmctvseriesUseAiredOrder>
  <xbmctvseries />
</xbmcTvSeries>



- fekker - 2009-07-17

hikaricore Wrote:Alright so now miptvupdate IS associating the correct episode with the correct info.
However it is still giving it the wrong episode number.

Example:

star.trek.tos.remastered.s02e01.catspaw.dvdrip.fs.mp3.xvid-LLP.nfo
Code:
<title>Catspaw</title>                                                                                                
  <season>2</season>                                                                                                    
  <episode>7</episode>                                                                                                  
  <rating>4.0</rating>                                                                                                  
  <plot>When a landing party disappears and one man is beamed up dead, Kirk and Spock investigate and meet a pair of aliens who seem capable of performing magic.</plot>

It recognizes the order but it's still numbering them wrong for some reason.
I've tested this in xbmc by removing the items and rescanning with xbmc set to use dvd order which no change.
Is this proper below or do i need to change the seriesNumber? This option was unclear to me as to its purpose.

season02.nfo
Code:
<?xml version="1.0" encoding="utf-8"?>
<xbmcTvSeries xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <xbmctvseriesNumber>0</xbmctvseriesNumber>
  <xbmctvseriesUseDVDOrder>true</xbmctvseriesUseDVDOrder>
  <xbmctvseriesUseAiredOrder>false</xbmctvseriesUseAiredOrder>
  <xbmctvseries />
</xbmcTvSeries>

I'll see what I can do with that part, it's abit tricky but i'll sort it out.


- revoman - 2009-07-17

fekker Wrote:Test build 2907

Fixed director parse for movies

http://mediainfoplus.com/index.php?option=com_phocadownload&view=category&id=1:2.0.1&download=17:mip-2907-test-build&Itemid=54

GREAT JOB !!! Big Grin

Thx a lot

Martin


- hikaricore - 2009-07-17

fekker Wrote:I'll see what I can do with that part, it's abit tricky but i'll sort it out.

Thanks for all your hard work and sorry to be a pain. ^_^


- fekker - 2009-07-17

hikaricore Wrote:Thanks for all your hard work and sorry to be a pain. ^_^

no problem.. here's 2908, this should do the trick, not sure about multi-part episodes as I didn't test, but it should work fine.

http://mediainfoplus.com/index.php?option=com_phocadownload&view=category&id=1:2.0.1&download=18:mip-2908-test-build&Itemid=56

Change log since 2902
includes the use DVD order option
fixes problem pulling actor information for movies
fixes problem pulling director information for movies
additional changes for DVD order option

Full 2908 patch is up on sourceforge, i'll put it on mipupdate after a few more have used it the new dvd order prompts when loading a show for the first time might need some tweaking


- Flook - 2009-07-17

Using 2908 and needed to add a directory to the movies - file level. I add the directory and it shows up in the movies - folder level and not in the file level. No matter what directory I choose it only shows up in the folder level.

This is my first time using this app. I always used media companion. I did the full install and then used the updater to 2902. I then replaced the exe files with the 2908 test and ran it. I then tried to add the movie directory by file level since all of my movies are in one large folder and it keeps putting the directory in the folder level.


- BroChaos - 2009-07-17

@Flook, yea i notice that too. i just cancel that, and then when the program loads, on the right side go to settings and then set your folders there and they will go to the right places.


i also have a question. i somehow managed to make a background/fanart for slumdog the default background for all my new movies and i can't for the life of me figure out how to make it stop.


- Flook - 2009-07-17

Thanks for the help BroChaos.


- fekker - 2009-07-17

BroChaos Wrote:@Flook, yea i notice that too. i just cancel that, and then when the program loads, on the right side go to settings and then set your folders there and they will go to the right places.


i also have a question. i somehow managed to make a background/fanart for slumdog the default background for all my new movies and i can't for the life of me figure out how to make it stop.

might just be a visual glitch, ensure you have show fanart for movie enabled in the settings (can't remember the exact name of setting)

working on adding cast member information to the gui (it's already in .nfo files) next as I never did put that in

i'll double check the wizard and the list it's adding the movies too, that should have been fixed awhile back, but i'll re-check.


- BroChaos - 2009-07-17

the movies don't even have a fanart/background associated with them, or in the folder. where in the mip directory would this picture be stored? maybe i can try to remove it or something...

fekker Wrote:might just be a visual glitch, ensure you have show fanart for movie enabled in the settings (can't remember the exact name of setting)

working on adding cast member information to the gui (it's already in .nfo files) next as I never did put that in

i'll double check the wizard and the list it's adding the movies too, that should have been fixed awhile back, but i'll re-check.