2015-07-11, 22:52
2015-08-21, 08:16
Great Addon,
Can you implement automatically multiple languages check and auto download subtitle by the priority? For example, first language is french, second is italian, and third is english. If for some reason subtitle for video file in first language isn't available move to second language and then on third?
Best regards
Can you implement automatically multiple languages check and auto download subtitle by the priority? For example, first language is french, second is italian, and third is english. If for some reason subtitle for video file in first language isn't available move to second language and then on third?
Best regards
2015-08-27, 14:49
After upgrading to Isengard and Windows 10, this add-on started popping up subtitle search every time I start a movie even if there are already subtitles. It used to work great. Any ideas?
2015-08-28, 13:27
(2015-07-11, 00:05)schumi2004 Wrote:(2015-07-09, 14:00)Loewkie Wrote: First off, brilliant add on. But could you add an option where it automatically picks the top subtitle without interrupting the video? I often find that the top option is the best anyway. This way it would be even more streamlined. You could even set up with which series to do this with by making an exception list (this way it will only do it on popular shows/movies where the proper subtitle is always on top anyway). Would be an amazing feature
Pausing video is a Kodi setting under Video Settings - Subtitles.
For the rest i'm so full of ideas that i'm lost in where to start and pick the best method.
Keep in mind that i'm not a diehard Python expert but did a fresh setup for the needed tools and started working on it again.
Most difficult i find now is how to respect both ignored and wanted settings and in which order.
The idea is to have a selection screen of your existing content (addons, series, movie folders etc) and make it selectable etc.
I did also noticed a few bugs that i would like to have fixed, for example it doesn't always detect if a subtitle is there or not when you use language settings and then it does nothing.
Any issues found please also grab corresponding portion of the log file
Maybe you can code it to auto pick the sub in a similar manner as you got it to auto-load the subtitle pop-up screen? I don't know, I don't know the first thing about python. I'll just let you do whatever you think is best here. You obviously know more about this than me. Thanks for your time!
2015-09-20, 20:28
Awesome addon!
Just a small request, can you add a Brazilian Portuguese language? Opensubtitles has it.
Just a small request, can you add a Brazilian Portuguese language? Opensubtitles has it.
2015-09-24, 00:37
First off: Thank you so much for this great piece!
I experienced also cases, where it pops up even with subs already present.
In my case, the already given subs are not language-tagged but marked as unknown.
My default language is english though.
Could this be the problem?
Ty in advance
I experienced also cases, where it pops up even with subs already present.
In my case, the already given subs are not language-tagged but marked as unknown.
My default language is english though.
Could this be the problem?
Ty in advance
2015-10-18, 20:54
I have noticed an issue that might be connected to TvTunes addon.
When I want to start a tv show and there is an theme playing in the background started by the TvTunes service the AutoSub service is busy working (checking on subs, exclusions, etc) on the audio theme and the subtitle search for the actual tv show doesn't start.
Maybe audio should be from the onPlayBackStarted event? I mean right away and not further in the code?
When I want to start a tv show and there is an theme playing in the background started by the TvTunes service the AutoSub service is busy working (checking on subs, exclusions, etc) on the audio theme and the subtitle search for the actual tv show doesn't start.
Maybe audio should be from the onPlayBackStarted event? I mean right away and not further in the code?
2015-10-19, 12:27
I made a pull request on amets github repo with a fix for the above described issue.
2015-10-20, 07:53
Found another similar issue, but that one I can't fix
When using service.nextup.notification addon which plays the next episode automatically no Subtitle Search is triggered.
Debug log shows no activity from AutoSubs.
service.nextup.notification plays the next episode by triggering the Player.Open JSON Method.
Maybe someone has an idea?
When using service.nextup.notification addon which plays the next episode automatically no Subtitle Search is triggered.
Debug log shows no activity from AutoSubs.
service.nextup.notification plays the next episode by triggering the Player.Open JSON Method.
Maybe someone has an idea?
2015-11-19, 10:06
Great addon.
I tried to make some exceptions for some folders but those folders are not chooseable. I need to add some exceptions for local network shares. I added them manually in the settings.xml but that doesn't work.
[/code]
Can this be added or can you tell me why my changes won't work?
Thanks.
I tried to make some exceptions for some folders but those folders are not chooseable. I need to add some exceptions for local network shares. I added them manually in the settings.xml but that doesn't work.
PHP Code:
<settings>
<setting id="ExcludeHTTP" value="false" />
<setting id="ExcludeLiveTV" value="true" />
<setting id="ExcludePath" value="\\HOME-SERVER\Series Astrid\" />
<setting id="ExcludePath2" value="\\HOME-SERVER\Filmcollectie\Home Video\" />
<setting id="ExcludePath3" value="" />
<setting id="ExcludePath4" value="" />
<setting id="ExcludePath5" value="" />
<setting id="ExcludePathOption" value="true" />
<setting id="ExcludePathOption2" value="true" />
<setting id="ExcludePathOption3" value="false" />
<setting id="ExcludePathOption4" value="false" />
<setting id="ExcludePathOption5" value="false" />
<setting id="ExcludeTime" value="15" />
<setting id="check_for_specific" value="true" />
<setting id="debug" value="false" />
<setting id="ignore_words" value="theme" />
<setting id="selected_language" value="Dutch" />
</settings>
Can this be added or can you tell me why my changes won't work?
Thanks.
2015-11-21, 11:24
(2015-11-19, 10:06)heula Wrote: Great addon.Nobody active here anymore?
I tried to make some exceptions for some folders but those folders are not chooseable. I need to add some exceptions for local network shares. I added them manually in the settings.xml but that doesn't work.
[/code]PHP Code:<settings>
<setting id="ExcludeHTTP" value="false" />
<setting id="ExcludeLiveTV" value="true" />
<setting id="ExcludePath" value="\\HOME-SERVER\Series Astrid\" />
<setting id="ExcludePath2" value="\\HOME-SERVER\Filmcollectie\Home Video\" />
<setting id="ExcludePath3" value="" />
<setting id="ExcludePath4" value="" />
<setting id="ExcludePath5" value="" />
<setting id="ExcludePathOption" value="true" />
<setting id="ExcludePathOption2" value="true" />
<setting id="ExcludePathOption3" value="false" />
<setting id="ExcludePathOption4" value="false" />
<setting id="ExcludePathOption5" value="false" />
<setting id="ExcludeTime" value="15" />
<setting id="check_for_specific" value="true" />
<setting id="debug" value="false" />
<setting id="ignore_words" value="theme" />
<setting id="selected_language" value="Dutch" />
</settings>
Can this be added or can you tell me why my changes won't work?
Thanks.
Thanks.
2015-12-04, 14:36
Anything in the log that will help fix this?
Still not working for me the network folder exceptions.
Thanks.
Still not working for me the network folder exceptions.
Thanks.
2015-12-04, 14:42