Z:\Genre - Action\1967 - Bonnie and Clyde (Arthur Penn).avi
Z:\Réalisateurs\Allen, Woody\1971 - Bananas.avi
Have a read of
http://www.videodb.info/forum_en/index.php?topic=1168.0The standard movie naming format is
<Movie name> (<year>) <mostly ignored stuff>
By putting the year first PVD sile scanner will have trouble finding the movie name.
Solutions
1) Rename your files. If you pipe a directory listing to a text file. Edit it in excel or other program into a sequence of rename dos lines, then run the bat file.
2) Modify your regex in PVD to recognize your format.
It normally uses
(?i)^.+\\(?P<title>[^\\]+)[^\\]+(?P<year>(19|2\d)\d{2})
or
(?i)^.*\\(?P<title>.*)\\.{0,2}\..{3,4}
You need something with the year first earlier in search order (BTW this is not tested, follow instructions in referenced thread to do so)
(?i)^.+\\(?P<year>(19|2\d)\d{2}) - (?P<title>[^\\]+)