I am watching some quicktime apple trailers from the website they open up automatically in quicktime. How do I download it at that point. I am assuming that they are cached temporally somewhere. Any ideas?
4 Answers
You can download them directly from the website you know? Just hold down the button for a little longer and then you can select your download format!

- 9,875
- 9
- 44
- 84
You can use http://savedeo.com which allows you to download the videos directly. No additional plugins or software is required.

- 1
The easiest way will be using KeepAndPlay.com!
- Go to Apple's trailer site
- Find the trailer you would like to download and copy the URL of the trailer
- Go to KeepAndPlay.com
- Paste the trailer on the search field (the one with the big red "Download" button)
What is also cool from KeepAndPlay is that you can download videos or just the audio in HD from youtube, Facebook, instagram, vimeo, soundcloud... and many other sites
Here is an example for the trailer The Revenant

- 101
Open terminal and type lsof
This will list all of the files opened by all of your processes. The process playing the movie will either be Safari or QuickTimeHelper. The move file will be one of the last ones listed for that process and will have a large size. It will probably be in a "/tmp/" folder.
When you think you've found the right file, you can verify that it is a quicktime move by typing file "pathname"
where pathname is the file path given in lsof
. Assuming its actually a move file, you can then copy it by doing cp "pathname" ~/Desktop/mymovie.mov
There are a number of variations of the above instructions, depending on the type of file and what is actually playing it, but hopefully you get the idea.

- 1,114
~/Library/Caches/Quicktime
Then the actual files are distributed in random folders (from 01, 02, 03, etc.). – Jan 11 '12 at 03:39