xboxscene.org forums

OG Xbox Forums => XboxMediaCenter => Software Forums => XBMC Python Scripting Forum => Topic started by: WalleO on February 05, 2006, 04:35:00 PM

Title: Quicktime Trailers
Post by: WalleO on February 05, 2006, 04:35:00 PM
I just recently updated my xbmc to the jan 29 ver. i had my quicktime working prior to the update with a little help from our sister site http://www.xboxmediaplayer.de/cgi-bin/foru...2;t=16148;st=60

however now, the file has been removed and i cant download the quicktime.py fix anymore. can someone please email or repost the file please? thanks
Title: Quicktime Trailers
Post by: Qu-Bit on February 07, 2006, 02:41:00 PM
I don't know who to credit with this, its not my fix but it works


You have to edit the Quicktimebrowser.py script at line 490
This is the default script
Code Sample  

if sel != -1:
link = movie.getMov(sel)
 

Change/add to:
Code Sample  

if sel != -1:
link = movie.getMov(sel)
link = link.replace("h.i320", "h320")
link = link.replace("h.i480", "h480")
link = link.replace("h.i640", "h640w")
link = link.replace("_240.mov", "_m240.mov")
link = link.replace("_320.mov", "_m320.mov")
link = link.replace("_480.mov", "_m480.mov")