Kodi Community Forum
Release service.subtitles.subscene - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27)
+---- Forum: Subtitle Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=143)
+---- Thread: Release service.subtitles.subscene (/showthread.php?tid=184854)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43


RE: service.subtitles.subscene - CrowleyAJ - 2015-05-01

Yeah, updates should still work. I just tried it and installed an old version from a zip file and it immediately showed me "update available"


RE: service.subtitles.subscene - kaitoked - 2015-05-15

I has 1.5.0 version and they not show me any result

How can I fix this problem Plz?


RE: service.subtitles.subscene - CrowleyAJ - 2015-05-15

If you provide a debug log (wiki), I will look into it.


RE: service.subtitles.subscene - kaitoked - 2015-05-15

(2015-05-15, 02:59)CrowleyAJ Wrote: If you provide a debug log (wiki), I will look into it.

How can i attached the debug log?


RE: service.subtitles.subscene - CrowleyAJ - 2015-05-15

You can use the Kodi Log Uploader addon, as described here: http://kodi.wiki/view/Log_file/Easy


RE: service.subtitles.subscene - kaitoked - 2015-05-15

(2015-05-15, 03:04)CrowleyAJ Wrote: You can use the Kodi Log Uploader addon, as described here: http://kodi.wiki/view/Log_file/Easy

Thanks i uploaded

ID: pgblwleje


RE: service.subtitles.subscene - CrowleyAJ - 2015-05-15

Thanks, I got the log.

As far as I see you got a movie which isn't in Kodi's library, and so the subtitle addon doesn't get a clear movie title, but a rather cluttered file name instead which doesn't match anything on subscenes search page. This might be a general shortcoming of the addon at the moment, since I mostly test it with library items.
I'll see if I can improve on that case in the next version.

As for now, you can try the manual search function, or include the movie into your library.


RE: service.subtitles.subscene - QuattroGam3r - 2015-05-15

Just wanted to say thank you for this great add-on. I tried using this a long time ago but decided to go straight to Subscene for my subs because I could't distinguish what subs were foreign parts only. I tried it again just a moment ago and see that that is no longer an issue. Thanks for adding the description in the title for people like me who only use subs for foreign parts, it makes it so much easier to complete a movie experience. Keep up the great work Cool


RE: service.subtitles.subscene - kaitoked - 2015-05-15

(2015-05-15, 03:35)CrowleyAJ Wrote: Thanks, I got the log.

As far as I see you got a movie which isn't in Kodi's library, and so the subtitle addon doesn't get a clear movie title, but a rather cluttered file name instead which doesn't match anything on subscenes search page. This might be a general shortcoming of the addon at the moment, since I mostly test it with library items.
I'll see if I can improve on that case in the next version.

As for now, you can try the manual search function, or include the movie into your library.

Thanks Man

I will Wait for the next Version ^^


RE: service.subtitles.subscene - maildeamon - 2015-07-22

nothing when i search also nothing if i search manualy


RE: service.subtitles.subscene - CrowleyAJ - 2015-07-22

(2015-07-22, 13:02)maildeamon Wrote: nothing when i search also nothing if i search manualy
I will look into it, if you can provide a debug log (wiki).


RE: service.subtitles.subscene - maildeamon - 2015-07-31

http://xbmclogs.com/p7tipicli


RE: service.subtitles.subscene - CrowleyAJ - 2015-07-31

(2015-07-31, 00:56)maildeamon Wrote: http://xbmclogs.com/p7tipicli
I see mostly errors in the service.subtitles.addic7ed addon in your log. Please deactivate that one first and see if that helps.
Also check if the folder C:\Users\webma_000\AppData\Roaming\Kodi\userdata\addon_data\service.subtitles.subscene\ exists and is writable.
If that doesn't help, please provide a new debug log.


RE: service.subtitles.subscene - amortin - 2015-09-07

Hi

Just wanted to share a workaround I had to apply to
the Kodi subtitle.subscene plugin

The plugin constantly failed to save the downloaded subtitles despite
having correct uid/gid on all (network) directories.

Applying the following patch resolved my issues and subtitles are now downloaded
and saved. To me, it looks like the original code mixes virtual path(s) with
os path(s). Perhaps that should work, but for me it did not

Patch:
.kodi/addons/service.subtitles.subscene/service.py

Function "download"
368c368
< local_file_handle = open(local_tmp_file, "wb")
---
> local_file_handle = xbmcvfs.File(local_tmp_file, "wb")
373,374c373,374
< myfile = open(local_tmp_file, "rb")
< myfile.seek(0)
---
> myfile = xbmcvfs.File(local_tmp_file, "rb")
> myfile.seek(0,0)
380c380
< myfile.seek(0)
---
> myfile.seek(0,0)
391c391
< os.rename(os.path.join(tempdir, "subscene.xxx"), local_tmp_file)
---
> xbmcvfs.rename(os.path.join(tempdir, "subscene.xxx"), local_tmp_file)

Patch is currently running on my
PXE booted debian / Kodi on NFS. NOT tested on
a disk based system !

Hope this can help others in the same situation

Shared as information, dont like it ? Dont use it !
/amortin


RE: service.subtitles.subscene - bukdiah - 2015-09-07

On my FireStick, Subscene version 1.5.0 works fine, but on my PC it does not. Here is my log.

http://xbmclogs.com/ppycqllua

Apparently, there is an error on line 463 of service.py