xboxscene.org forums

Author Topic: Quicktimebrowser 1.37, Does It Work Still?  (Read 88 times)

Djon

  • Archived User
  • Newbie
  • *
  • Posts: 13
Quicktimebrowser 1.37, Does It Work Still?
« on: March 13, 2006, 02:53:00 AM »

I cannot seem to get it to work. I can select Small, Medium or Large trailer and when choosing one it just goes back to the list of available trailers. Is it due to the new Apple site layout?
Logged

Qu-Bit

  • Archived User
  • Jr. Member
  • *
  • Posts: 68
Quicktimebrowser 1.37, Does It Work Still?
« Reply #1 on: March 16, 2006, 02:52:00 AM »

This solution was posted by someone else and I did not save the origninal posters name:

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