xboxscene.org forums

Author Topic: Movie Trailers  (Read 135 times)

grogger13

  • Archived User
  • Full Member
  • *
  • Posts: 101
Movie Trailers
« on: January 27, 2006, 03:28:00 PM »

it just comes up with no connection basicly
Logged

Qu-Bit

  • Archived User
  • Jr. Member
  • *
  • Posts: 68
Movie Trailers
« Reply #1 on: February 07, 2006, 03:12:00 PM »

My answer from a prior post, (not my fix)

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")
 

Logged