[Request] Trailer Addicts Plugin

  Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Post Reply
XBMCG33K Offline
Skilled Skinner
Posts: 1,252
Joined: Dec 2008
Reputation: 4
Location: 4 8 15 16 23 42
Post: #1
I have tried and tried making one myself and have given up as of right now, anyone wanna try it?

http://www.traileraddict.com/
find quote
stacked Offline
Skilled Python Coder
Posts: 792
Joined: Jun 2007
Reputation: 17
Post: #2
Use the Firefox addon, Live HTTP headers. It helps you find the direct link to the trailer videos.

For example, for the movie Taken
link to page: http://www.traileraddict.com/trailer/tak.../trailer-b

If you view the source of that page searching for /emb/, you will find the trailer id in which you can use in the below link. So for Taken, the id is 8535.

http://www.traileraddict.com/fvar.php?tid=####

if you go to
http://www.traileraddict.com/fvar.php?tid=8535

you will find the direct link to the trailer:
http://media5.traileraddict.com/taken-trl2.flv


All you need to do now is use regex to filter out the info you want and build it into a plugin.
find quote
xeonicxpression Offline
Senior Member
Posts: 236
Joined: May 2008
Reputation: 0
Post: #3
stacked Wrote:Use the Firefox addon, Live HTTP headers. It helps you find the direct link to the trailer videos.

For example, for the movie Taken
link to page: http://www.traileraddict.com/trailer/tak.../trailer-b

If you view the source of that page searching for /emb/, you will find the trailer id in which you can use in the below link. So for Taken, the id is 8535.

http://www.traileraddict.com/fvar.php?tid=####

if you go to
http://www.traileraddict.com/fvar.php?tid=8535

you will find the direct link to the trailer:
http://media5.traileraddict.com/taken-trl2.flv


All you need to do now is use regex to filter out the info you want and build it into a plugin.

Just wanted to say thanks for that info. With it I was able to roll a quick python program to automatically download trailers for my movies based on folder name. I chose to use their HD quality, so the link changes to http://www.traileraddict.com/fvarhd.php?tid=#### and the file is a mp4 instead. I thought it was going to take a lot longer. It only took ~25 lines to download the trailer and put it in the correct folder.Cool I'm sure it could be done in less.
find quote
myyra Offline
Junior Member
Posts: 10
Joined: Jan 2010
Reputation: 0
Post: #4
xeonicxpression Wrote:Just wanted to say thanks for that info. With it I was able to roll a quick python program to automatically download trailers for my movies based on folder name. I chose to use their HD quality, so the link changes to http://www.traileraddict.com/fvarhd.php?tid=#### and the file is a mp4 instead. I thought it was going to take a lot longer. It only took ~25 lines to download the trailer and put it in the correct folder.Cool I'm sure it could be done in less.

Hey,

feel like sharing the script?
find quote