Reply to thread

I just did a Quick test.

 

[code]        public const bool API_IMDB_LOOKUP = true; //IMDB LookUp

        public const string API_KEY = "..."; //Inset API Key

        public const string API_LANG = "sv"; //Change it to change Language[/CODE]

 

On my first run I got no hits. The title passed to the script is on the form tt1234567 which the regexp didn't seem to catch. Since I don't really speak regexpish and didn't fully understand what you where doing I simplified it to

 

[CODE]System.Text.RegularExpressions.Regex rx = new System.Text.RegularExpressions.Regex(@"tt(?<jocker>\d*)");[/CODE]

 

Using this modified regexp I tested on a subset of my movies and it seems to work just fine. I'm currently doing a full scan which should be complete in the morning.

 

//W


Top Bottom