Page 4 of 18

Re: Argus-TV Guide Enhancer

Posted: Fri Dec 21, 2012 4:38 pm
by sjeffrey
tonitom wrote:Hello sjeffrey,
My problem was not the config, the problem was the episodescanner. I clean up the database and stop the episodescanner and everything works fine.

But now I have the same problem luetty have the schedule history does not work any more.

Tonitom
Glad it works for you tonitom. For the history, this is a planned feature and I hope to get to it soon.

Stephane

Re: Argus-TV Guide Enhancer

Posted: Fri Dec 21, 2012 8:00 pm
by MicF
Hi Stephane,

do you have an idea how these episode names could be matched?

Clickfinder Title: Abschied vom Heimwerkerkönig (1)
TheTVDB.com Title: Abschied vom Heimwerkerkönig - Teil 1

A Regex option within Episode Title Match would be great.
But if I understand you right, you won't continue developing just bug fixing.

Mic

Re: Argus-TV Guide Enhancer

Posted: Fri Dec 21, 2012 9:04 pm
by sjeffrey
MicF wrote:Hi Stephane,

do you have an idea how these episode names could be matched?

Clickfinder Title: Abschied vom Heimwerkerkönig (1)
TheTVDB.com Title: Abschied vom Heimwerkerkönig - Teil 1

A Regex option within Episode Title Match would be great.
But if I understand you right, you won't continue developing just bug fixing.

Mic
You can force a series ID in the config file, have you tried that?

As for development I try to add new features as time permits. Family and work is higher priority and both have been very busy for the last year or so. I just can't make promises as to when a bug or feature will be added/fixed.

Re: Argus-TV Guide Enhancer

Posted: Fri Dec 21, 2012 11:12 pm
by MicF
sjeffrey wrote: You can force a series ID in the config file, have you tried that?
I saw that, but that's for series ids only. I was talking about episode titles.
Family and work is higher priority and both have been very busy for the last year or so. I just can't make promises as to when a bug or feature will be added/fixed.
Of course family and work is higher priority.
If you would make it opensource other developer might jump in and give you some relief. :D

mic

Re: Argus-TV Guide Enhancer

Posted: Fri Dec 21, 2012 11:55 pm
by Kay Diefenthal
mic it is opensource

Re: Argus-TV Guide Enhancer

Posted: Sat Dec 22, 2012 2:13 pm
by Christoph21x
Just FYI: the tool has been added to the Wiki Section "Supplementary free tools which may complement ARGUS TV" under http://www.argus-tv.com/wiki/index.php? ... ated_Tools

If anyone of you would want to create a specialized article on purpose, way of working, download, constraints and/or usage & parameters, please let me know.

Thanks a lot for creating this... Christoph

Re: Argus-TV Guide Enhancer

Posted: Mon Dec 24, 2012 6:20 pm
by MicF
I still have an language issue.

Whereas the set language is used for looking up an episode title, it's not looking up for a series id.

Code: Select all

2012-12-24 17:10:11 [21] DEBUG GuideEnricher.tvdb.TvdbLibAccess - Language: de
2012-12-24 17:10:33 [21] DEBUG GuideEnricher.tvdb.TvdbLibAccess - SD-TvDb: Search for Die Simpsons return 0 results
I tested different series and all series, which are named exactly the same in english and in german it's working, for others not.

Example for a working series:
CSI: Miami

Example for not working series:
Die Simpsons > The Simpsons
Magnum > Magnum p.i.

Anybody second that?

Mic

Re: Argus-TV Guide Enhancer

Posted: Tue Dec 25, 2012 5:05 pm
by MicF
Hi,

found it!
Can't work for other languages than English, because the language isn't set in the SearchSeries Method.

this.language parameter needs to be added in TvdbLibAccess.cs:

Code: Select all

List<TvdbSearchResult> searchResults = tvdbHandler.SearchSeries(searchSeries, this.language);
log.DebugFormat("SD-TvDb: Search for {0} return {1} results", searchSeries, searchResults.Count);
Mic

Re: Argus-TV Guide Enhancer

Posted: Tue Dec 25, 2012 6:57 pm
by sjeffrey
Awesome Mic, thanks for finding the bug.
Are you able to compile? If not i can take the few minutes needed and post it. I was hoping to work on the code in next few days so i could wait until then if there's no rush.

Re: Argus-TV Guide Enhancer

Posted: Tue Dec 25, 2012 8:17 pm
by MicF
I can compile, but get errors on building the installer.
So I just changed the exe and it worked properly.

So better you make the change ;-)