Slashdot Mirror


New Terminator 3 Trailer Released

An anonymous reader writes "Sony has just released a fantastic Terminator 3 trailer on the Apple trailer site. After several ho hum WB trailers I was feeling like this movie was going to be a re-tread, but the Sony trailer really raised my blood temperature. Also I checked out the official Terminator 3 website. Although it's flash only (major sin), it is full of good stuff. The time travel forum could use a bit of filling out."

2 of 457 comments (clear)

  1. Why is Flash-only a sin? by pubjames · · Score: 5, Interesting

    Although it's flash only (major sin)

    Why is it a "major sin" that it is Flash only?

    The producers of this site wanted to make an impressive multi-media rich site to make people want to go see their film. The only way to really do that effectively is with Flash. The vast majority of people have the Flash plug-in, and won't really care (or even know) what format the site is in.

    Yes, the world would be a better place if multimedia web sites could be practically developed using open tools and open file formats such as SVG. But they can't. So people use Flash. Live with it.

    I still don't understand why SVG isn't default in all OSS browsers. You can complain about Flash or you can try to change the status quo. Many people in the OSS community like to complain...

  2. Re:Direct Link... by Pathwalker · · Score: 5, Interesting

    Ok - when you look at the page, you want to find the EMBED tag that holds the movie, so try the following command:
    curl http://www.apple.com/trailers/columbia/charliesang elsfullthrottle/large_trailer.html | grep EMBED
    Looking at the embed tag, you will see that it references two quick time movies, one as a SRC argument, and one as a HREF argument. If both are given, you want the HREF, otherwise, you want the SRC.
    here is the link from the HREF option. It is the reference file for the movie.

    Now, download it and run strings on it. You will see several instances of "url" on one line, and a url on the next line. These are the movies that the reference movie points to. Almost always, the first several will be to inform users that they have too old of a version of quick time (they usually have a quicktime version embedded in the name. ) skip over them.

    at the end of the file, you will see this: ca2_fullthrottle-tlr_m480.mov - that is the relative path to the real movie file.

    Take the URL for the reference file, and replace ca2_fullthrottle-tlr_481.mov with ca2_fullthrottle-tlr_m480.mov, and you will have this - the url for the actual movie data file.

    This technique should work, even if Apple changes their convention of just adding a m before the size of the movie, to indicate the real file.

    This also only works if the movie is being served over http. If it is over rtsp, you will need some extra tools.

    I hope this helps. If you get confused, here is a decompiled version of the reference file, so that you can see in plain text what all of the embedded urls are for.