![]() |
|
[DEPRECIATED] XBMC Subtitles - Addon Script (previously OpenSubtitles OSD) - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Help and Support (/forumdisplay.php?fid=33) +--- Forum: Add-ons Help and Support (/forumdisplay.php?fid=27) +---- Forum: Subtitle Add-ons (/forumdisplay.php?fid=143) +---- Thread: [DEPRECIATED] XBMC Subtitles - Addon Script (previously OpenSubtitles OSD) (/showthread.php?tid=75437) 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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 |
- quisvir - 2011-03-04 01:31 mr_blobby Wrote:If you use libraries, then the plugin doesn't have to guess what kind of video it is. Thanks for the quick reply mr_blobby. I'm not using libraries mainly because many of the files played on my system are at rather random locations on computers in the network. I much prefer just browsing those computers through xbmc over first copying the files to my own system. But maybe I should find a way to use libraries anyway... although a fix might still be useful for the non-libraries-users among us
- mr_blobby - 2011-03-04 12:47 quisvir Wrote:Thanks for the quick reply mr_blobby. I'm not using libraries mainly because many of the files played on my system are at rather random locations on computers in the network. I much prefer just browsing those computers through xbmc over first copying the files to my own system. But maybe I should find a way to use libraries anyway... although a fix might still be useful for the non-libraries-users among usIf you can find the files by browsing from XBMC, then you can add these locations to a library. There is no need to copy them locally. XBMC support many networking protocols. - YaPaY - 2011-03-04 19:57 opensubtitles.org doesn't work for 2-3 days. - amet - 2011-03-04 20:10 YaPaY Wrote:opensubtitles.org doesn't work for 2-3 days. ok, works fine for me - orivar - 2011-03-04 23:42 So I had a small bug with the Sratim service. Fixed now - amet, I forked the code in github, made the changes on the website (after testing them locally of course) and sent a pull request. Sorry for the mess.
- YaPaY - 2011-03-05 01:14 amet Wrote:ok, works fine for me podnapisi works but opensubtitles seem to down. I'M using latest version 2.5.6? by the way, dou you any plan to add to subtitle sites to divxplanet.com. It's biggest subtitle site of the Turkey. It would be nice. Thanks for your great work. - orivar - 2011-03-05 13:09 OpenSubtitles comes and goes for me in the last few days but is mostly up. Either way there doesn't seem to be any problem with the addon or service, when it's down it either times out or says the site's overloaded and when it's up it works fine. - orivar - 2011-03-05 16:15 amet Wrote:without rewriting gui.py to accept it there is no way to do it. let me see what I can do... no promises So I decided to do it myself ![]() It's basically done and I tested it but again there's a problem I don't know how to get around: the files (.sub+.idx) are extracted and copied correctly, but when the video continues to play they aren't shown. Stopping and starting the video works. I'm pretty sure the problem is with "xbmc.Player().setSubtitles(file_to)": since the problem was the lack of .idx to begin with, I assume using setSubtitles() to select just the .sub has the exact same affect. I tried looking for the documentation of setSubtitles() but all I found is a one liner that says it sets the subtitles for the current video player. I have no idea how to set multiple files or if that's even possible. amet/mr_blobby, could you please help? I need someone familiar with xbmc's source this time... - amet - 2011-03-05 18:13 orivar Wrote:So I decided to do it myself have you tried sending the idx file to xbmc.Player().setSubtitles(file_to)? - orivar - 2011-03-05 19:44 After the .sub, instead of it or in a list together? I guess I can try all three myself. If only the test file wasn't so big and their website so slow... |