Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Save QuickTime 7 movies to disk' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Save QuickTime 7 movies to disk
Authored by: michaely on May 06, '05 09:08:31AM

Once you have the URL from Movie Info, just use curl to pull the movie file. e.g.

[code]curl http://images.apple.com/movies/us/hd_gallery/gl1800/kingdom_of_heaven_m720p.mov -o kingdom_of_heaven_m720p.mov[/code]



[ Reply to This | # ]
Save QuickTime 7 movies to disk
Authored by: eo on May 06, '05 11:17:03AM

Instead of curl, you can always paste the URL directly into Safari's download window, which will cause Safari to download the file.



[ Reply to This | # ]
A handy curl shortcut
Authored by: Peter Kappesser on May 06, '05 10:42:24PM
A handy shortcut with curl is to use the -O (letter O) option to save using the file name extracted from the URL. Thus:
curl -O http://images.apple.com/movies/us/hd_gallery/gl1800/kingdom_of_heaven_m720p.mov

[ Reply to This | # ]