Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Lordfinarfin

Pages: [1] 2
1
Support / Re: TV-series filename structure
« on: May 06, 2010, 09:59:05 am »
If the file scanner has detected a change in the file, it should update the information as I described. I can only guess you're still asking NMM to add files—so when the scanner is run afterwards, no changes are detected.

Thanks for your help, The problem was that I am asking NMM to add files.

2
Support / Re: TV-series filename structure
« on: May 05, 2010, 02:50:30 pm »
Setting a field to not be overwritten only makes a difference if something is already there. If NMM runs the download plugin first, it's going to get the English episode title. If you run the file scanner after downloading the series, it will replace the episode titles with those from the filenames. If you then update the episodes, with the overwrite setting off for Title and on for Original title, you should end up with a Spanish Title and English Original title—as in the attached screen shot.

If I first run NMM it get episode tittle from IMDB. Then If I launch the file scanner, this tool do not detect any change, so the episode tittle remain in english. DO you know why?

3
Support / Re: TV-series filename structure
« on: May 04, 2010, 04:57:44 pm »
Rememenber that Im a spanish user, so, sometimes I have the episode names in spanish, and IMDB return the name in english, that is why I prefer this way.

I was commenting for the benefit of others reading this as well. In your circumstance, where the IMDb record is in English, you'll probably do better updating the series than attempting to update each episode as it is added—using a Spanish episode title it will not be able to find. By setting the plugin not to overwrite Title, you should end up with a Spanish Title and English Original title. And, for a Spanish series, adding the episode title from the filename is only going to help.

Well. Now I test with Babylon 5 (english serie). I have the episode title in spanish.

If I add a this TV serie using "New movie master (CTRL+M)", setting:
Movie Information > IMDB
Movie Poster > nothing
cover > nothing
File information > "active"
Tittle > Babylon 5
Original Tittle > "nothing"
File(s) > I browse to the main folder Babylon 5

I desactivate the option in the pluggin to not allow to replace the Tittle.

The  result is that PVD get the episode tittle from IMDB in english.

4
Support / How to use Find & replace
« on: May 04, 2010, 03:48:02 pm »
How can I use this tool under the file scanner section?

5
Support / Re: TV-series filename structure
« on: May 04, 2010, 12:49:45 pm »
Rememenber that Im a spanish user, so, sometimes I have the episode names in spanish, and IMDB return the name in english, that is why I prefer this way.

I was commenting for the benefit of others reading this as well. In your circumstance, where the IMDb record is in English, you'll probably do better updating the series than attempting to update each episode as it is added—using a Spanish episode title it will not be able to find. By setting the plugin not to overwrite Title, you should end up with a Spanish Title and English Original title. And, for a Spanish series, adding the episode title from the filename is only going to help.

I will try it.

My regex is ok?

6
Support / Re: TV-series filename structure
« on: May 04, 2010, 09:42:49 am »
Rememenber that Im a spanish user, so, sometimes I have the episode names in spanish, and IMDB return the name in english, that is why I prefer this way.

7
Support / Re: TV-series filename structure
« on: May 03, 2010, 01:00:16 pm »
Continue with my last Thread about it......

To test de regex I delete all the regex availables.

File name example >
<tv serie tittle> - <season - episode> - <episode tittle>

Example: Aqui no hay quien viva - 1x01 - Erase una mudanza.avi


(?i)^.*\\(?P<title>.*)(s|\b)(?P<season>[0-9]{1,3})e(?P<episode>[0-9]{1,3}) > original > Result > "Aqui no hay quien viva - 1x01 - Erase una mudanza"

(?i)^.*\\(?P<title>.*)(s|\b)(?P<season>[0-9]{1,3})x(?P<episode>[0-9]{1,3}) > result: "1"

(?i)^.*\\(?P<title>.*).?-.?(?P<season>[0-9]{1,3})x(?P<episode>[0-9]{1,3}).?-.?(?P<eptitle>\w*\b) > Original > Result: "Erase"

(?i)^.*\\(?P<title>.*).?-.?(?P<season>[0-9]{1,3})x(?P<episode>[0-9]{1,3}).?-.?(?P<eptitle>)\..{3,4} > suggested by rick.ca > result: "Aqui no hay quien viva - 1x01 - Erase una mudanza"


At this point I started trying several combinations found trough internet, due to my lack of experiense with code or language

(?i)^.*\\(?P<title>.*).?-.?(?P<season>[0-9]{1,3})x(?P<episode>[0-9]{1,3}).?-.?(?P<eptitle>*\W)$ > Result: "Aqui no hay quien viva - 1x01 - Erase una mudanza avi" it doesnt remove the file extention

(?i)^.*\\(?P<title>.*).?-.?(?P<season>[0-9]{1,3})x(?P<episode>[0-9]{1,3}).?-.?(?P<eptitle>[^\\/]*[.avi$]) > Result: "Aqui no hay quien viva - 1x01 - Erase una mudanza avi" it doesnt remove the file extention


I manage to solve the problem, "WITH MY FILE STRUCTURE" with next expresion.

(?i)^.*\\(?P<title>.*).?-.?(?P<season>[0-9]{1,3})x(?P<episode>[0-9]{1,3}).?-.?(?P<eptitle>[^.]+) > ok > result: "Erase una mudanza"

The problem I found with it is that I cant put a dot into the episode title

8
Support / Re: TV-series filename structure
« on: May 01, 2010, 10:14:41 am »
(sory for my english xD) I did that at work xD, so i dont have all the structures that I tried.  My expression exclude all the words that appear after a dot. Problem? you cant put a dot in the middle of an episode tittle. This formula is to remove the file the file extension.

9
Support / Re: TV-series filename structure
« on: April 30, 2010, 03:42:08 pm »
I found the solution >

(?i)^.*\\(?P<title>.*).?-.?(?P<season>[0-9]{1,3})x(?P<episode>[0-9]{1,3}).?-.?(?P<eptitle>[^.]+)

10
Support / Re: TV-series filename structure
« on: April 29, 2010, 11:09:43 am »
I didnt change nothing.

Do you mean this?

(?i)^.*\\(?P<title>.*)(s|\b)(?P<season>[0-9]{1,3})e(?P<episode>[0-9]{1,3})

(?i)^.*\\(?P<title>.*).?-.?(?P<season>[0-9]{1,3})x(?P<episode>[0-9]{1,3}).?-.?(?P<eptitle>\w*\b)


11
Support / Re: TV-series filename structure
« on: April 29, 2010, 09:26:23 am »
Problem adding TV series from HDD.

I have all the filenames of my Tv series like this > Modern Family - 1x02 - The Bicycle Thief.avi

When I use the tool "scan folders for new movies/changed path...." all the tittles of the episodes appear only with the first word, in this example > "The".

So, when I tried to get info from IMDB, the software return a lot of results.

How can I resolve this problem? I must changed the structure of the filename?

12
Support / Re: FilmAffinity issue
« on: April 20, 2010, 09:27:19 am »
Im trying to fix the problem but I cant find the script for filmaffinity (I dont know nothing about Pascal but I think that the only problems is to fix some address that could be changed on the web pages). Im using the portable version of PVD.

13
Support / FilmAffinity issue
« on: April 19, 2010, 12:55:55 pm »
There are problems with filmaffinity, its not getting info like sinopsys, film genre, etc. .  Can you take a look?

14
Support / TV-series filename structure
« on: April 16, 2010, 03:24:21 pm »
Which is the best structure to edit the file name of an episode?

TVSERIE NAME + 1x01 + Episode name?

15
Feature Suggestions / Re: Split custom from skin
« on: March 31, 2010, 12:34:14 pm »
PVD language > English

Screen resolution > 1366x768

The problema is that it doesnt show all the rating stars with this resolution.

16
Feature Suggestions / Re: Split custom from skin
« on: March 31, 2010, 08:37:46 am »
I love your skin, but i have a suggestion.

For example, I batch info from Filmaffinity and IMDB so the stars of the rating doesnt show completly (sorry for my english) in some screen resolution. Can you expand the box of rating taking as reference Filmaffinity?

17
Feature Suggestions / Re: Manual Search
« on: March 31, 2010, 08:35:07 am »
If you search for "familia" on Filmaffinity the search return 104 movies, but PVD only show 20.

Manual Search > I think is what you said, searching with the URL. I will tried it.

18
Support / Re: FilmAffinity issue
« on: March 30, 2010, 03:44:42 pm »
thanks for your time.

19
Feature Suggestions / Re: Manual Search
« on: March 30, 2010, 03:38:55 pm »
Title and AKA title, I tried with 9,99 > 9.99 > $9.99 > $9,99.
In IMDB only 20 results but not the correct movie.
With Filmaffinity > ok.

Today I saw that there is no limits, as you said, but with this movie is impossible.
I also remember another problem with the film FAMILIA by Fernando León de Aranoa. I can search it on IMDB but the same problem as 9,99 in filmaffinity.

20
Feature Suggestions / Manual Search
« on: March 30, 2010, 09:33:36 am »
A good thing to add could be a manual search, because?

For example search this movie on IMDB.com > $9.99.

PVD return a list of 20 possible movies, but the movie didnt appear on the list. It appear to be a limit in the search of 20 movies.

Pages: [1] 2
anything