nolenfelten / xbmc-addons

Automatically exported from code.google.com/p/xbmc-addons
0 stars 0 forks source link

AMT Lite patch for new trailer links. #28

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi,

Finally Apple issue solved..

For AMT Lite:
xbmcplugin_trailers.py line 89

trailer = re.findall("<large[^>]*>(.*?)</large>", preview[ 0 ])[ 0 ]
# replace with 1080p if quality == 1080p
if (self.settings[ "quality" ] == "_1080p"):

TO

trailer = re.findall("<large[^>]*>(.*?)</large>", preview[ 0 ])[ 0 ]
trailer = trailer.replace("movies" , "www").replace("/www/" , "/movies/")
# replace with 1080p if quality == 1080p
if (self.settings[ "quality" ] == "_1080p"):

For AMT Script:
Sorry I can't find it. But I'm sure @nuka take care of it :)

Best regards,
Ö.B.(queeup) 

Original issue reported on code.google.com by Ozgur.BASKIN@gmail.com on 5 Sep 2009 at 1:09

GoogleCodeExporter commented 9 years ago
Fixed on r1308 (v1.7.4)

Original comment by Ozgur.BASKIN@gmail.com on 20 Sep 2009 at 11:33