jmb295 wrote:i discovered that the name field is displayed in the main display box. if you change the meta tags from name to something like title, and then change eptitle to name you should be ok. i did this and it is working for me.
It didn't work for me.
I entered this for my Metatags:
- Code: Select all
\\(?<Series>.*)\\[S|s]eason\s(?<Season>\d*)\\.(?<EpNum>\d*)\s-\s(?<Name>.*)\..*
\\(?<Series>.*)\\[S|s]eason(?<Season>\d*)\\.(?<EpNum>\d*)\s-\s(?<Name>.*)\..*
But what I get is:
series>season> but then instead of the name of the ep, i just a blank space for most.
But here's the really weird part: even though most are blank, some have like a letter or something.
Some db entries have part of the titlename - i figured out these are the titles with a period in their name, like "303 - Mr. Griffin Goes To Washington.rm" becomes "Mr"; and "218 - E. Peterbus Unum.rmvb" becomes "E"; and "402 - Fast Times At Buddy Cianci Jr. High.rmvb" becomes "Fast Times At Buddy Cianci Jr"
Any titles without a period all come up blank.
This leads me to think there must be something wrong with the db code. So then I tried this metatags code for the import:
- Code: Select all
\\(?<Series>.*)\\Season\s(?<Season>\d*)\\.(?<EpNum>\d*)\s-\s(?<Name>.*)\.*
\\(?<Series>.*)\\Season(?<Season>\d*)\\.(?<EpNum>\d*)\s-\s(?<Name>.*)\.*
This is the closest I've gotten. Now all the titles show up as they should, except each title is missing the last word of the title.
For example, "408 - 8 Simple Rules For Buying My Teenage Daughter.rmvb" shows up as "8 Simple Rules For Buying My Teenage".
Interestingly, "402 - Fast Times At Buddy Cianci Jr. High.rmvb" still shows up as "Fast Times At Buddy Cianci Jr" (but probably for a different reason this time)
The periods seem to be the problem here - but I don't know how to fix it!
Can anyone help?