• 1
  • 11
  • 12
  • 13(current)
  • 14
  • 15
  • 43
Release service.subtitles.subscene
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"
Reply
I has 1.5.0 version and they not show me any result

How can I fix this problem Plz?
Reply
If you provide a debug log (wiki), I will look into it.
Reply
(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?
Reply
You can use the Kodi Log Uploader addon, as described here: http://kodi.wiki/view/Log_file/Easy
Reply
(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
Reply
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.
Reply
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
Reply
(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 ^^
Reply
nothing when i search also nothing if i search manualy
Reply
(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).
Reply
http://xbmclogs.com/p7tipicli
Reply
(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.
Reply
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
Reply
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
Reply
  • 1
  • 11
  • 12
  • 13(current)
  • 14
  • 15
  • 43

Logout Mark Read Team Forum Stats Members Help
service.subtitles.subscene8