|
#1
| ||||
| ||||
| Where does QuickTime cache files played in browser? I listen to 1-hour long radio shows streamed via Flip4Mac (.wma files) through QuickTime in Safari. A progress bar indicates that the file is being downloaded, so it must be stored somewhere, but I haven't been able to find it. I note in QuickTime's Preference Pane, Browser tab, is a setting "Save movies in disk cache", and it's checked. Where does QuickTime put the file? I've looked in all the invisible folders (/private, /var, etc.) but don't see it; it's not in /Library/Caches or ~/Library/Caches/Safari either -- unless it's been cut into pieces (should be ~27MB in size, and I find no files, visible or invisible, that size). Anyone know where QuickTime caches files it plays in browsers? |
|
#2
| ||||
| ||||
| [yourusername] /Library/Caches/Safari/ in there [subfolder]/[subfolder]/[number.cache] In which if opened in a code editor etc the .cache files don't show all the requested information. |
|
#3
| ||||
| ||||
| Quote:
Quote:
|
|
#4
| ||||
| ||||
| Safari caches in ~/Library/Caches/Safari, but QuickTime (whether loaded in Safari or as a standalone app) caches in ~/Library/Caches/QuickTime/downloads. You should find your 27 MB file as a single cache file (.qtch) in a subdirectory. Something like this should give you a full listing: % find ~/Library/Caches/QuickTime/downloads/ -name "*.qtch" -exec ls -l {} \;
__________________ Matt (billbaloney) 1.67GHz "October 2005" G4 Aluminum 1.5 GB RAM, OS 10.5.2 Lots of other things around Helen Marie Holford Industries |
|
#5
| ||||
| ||||
| Quote:
I also did a file search for 25MB+ size files, including invisible files, but didn't find it. Used a clever utility to make everything visible and looked in all the usually-invisible folders, didn't find it. I can only surmise either (a) the "download" is only to RAM, not to disk; or (b) the 27MB of download is divided into smaller bits, so no single 27MB file shows. A curious mystery. I can live without knowing, I guess, but it intrigues me. |
|
#6
| ||||
| ||||
| Have you tried loading any other remote file in QuickTime and checked in the cache directory? Just wondering whether you can duplicate this mysterious behavior, or whether it's something particular to that WMA file. One other approach, if you feel like getting brute-force on this problem: shut down all apps besides QuickTime (just to make this simpler). Download the file. Then run a find on everything that's changed recently on your hard drive: % sudo find / -newerct '10 minutes ago' -print If it's stored anywhere visible, you should be able to see it.
__________________ Matt (billbaloney) 1.67GHz "October 2005" G4 Aluminum 1.5 GB RAM, OS 10.5.2 Lots of other things around Helen Marie Holford Industries |
|
#7
| ||||
| ||||
| Quote:
Quote:
Thanks again for your time. |
|
#8
| ||||
| ||||
|
__________________ Matt (billbaloney) 1.67GHz "October 2005" G4 Aluminum 1.5 GB RAM, OS 10.5.2 Lots of other things around Helen Marie Holford Industries |