Schischu / project-valerie

Automatically exported from code.google.com/p/project-valerie
0 stars 1 forks source link

Effect of pre.conf (?) #90

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In order to help sync process to grab correctly (especially for my collection 
of Walt Disney classical movies that are all failing when the words Walt Disney 
appears in the title), I tried to modify the pre.conf file with the goal to 
suppress the words "Walt" and "Disney" that seems to disturb, but this seems 
unfortunately to have no effect on the sync results.

This is now the content of my pre.conf:

"^\_*-."=" "
" (720p|1080i|1080p)( |$)+"=" "
" (x264|blu-ray|hdtv|xvid|divx)( |$)+"=" "
" (eng|rus|french)( |$)+"=" "
" (walt)( |$)+"=" "
" (disney)( |$)+"=" "
" (miniseries)( |$)+"=" "
" (dts|dd5|ac3|stereo)( |$)+"=" "

NB: I tried also:
" (Walt)( |$)+"=" "
" (Disney)( |$)+"=" "
and also:
" (walt|disney)( |$)+"=" "
" (Walt|Disney)( |$)+"=" "

All apparently without success...

What version of the product are you using? r445 for sh4
Revision?

Please provide any additional information below.
Box= ipbox9000hd
Firmware= E2 PKT 1.0.233 based on Tideglo r1.0.0

Original issue reported on code.google.com by mdot...@gmail.com on 30 Dec 2010 at 2:22

GoogleCodeExporter commented 9 years ago
what you want is:
"[^\w\d]"=" "
"[\.]"=" "
"[\[\]-_]"=" "
"^[^-\s]*-"=" "
" (720p|1080i|1080p)( |$)+"=" "
" (x264|blu-ray|hdtv|xvid)( |$)+"=" "
" (eng|rus)( |$)+"=" "
" (oar)( |$)+"=" "
" (miniseries)( |$)+"=" "
" (dts|dd5|ac3|stereo)( |$)+"=" "
" (walt|disney)( |$)+"=" "

Note: You dont have to take care of upper letters as all is being converted to 
lower letters.

Original comment by schischu65 on 30 Dec 2010 at 2:29

GoogleCodeExporter commented 9 years ago
Thanks, I tried with your file here above, but I really don't understand why if 
I put for title:
Walt Disney- Cars.avi it fails, but if I put
Cars.avi, it find the correct info !!??

So my question: are you shure that the sync process takes correctly into 
account the content of pre.conf ??

Original comment by mdot...@gmail.com on 31 Dec 2010 at 12:09

GoogleCodeExporter commented 9 years ago
Well actually for ths filename you have to use something like this

"^(walt)( )+"=" "
" (disney)( |-)+"=" 

or alternatively:
"^walt disney"=" "

Original comment by schischu65 on 31 Dec 2010 at 8:12

GoogleCodeExporter commented 9 years ago

Original comment by schischu65 on 4 Jan 2011 at 7:59