Trying to locate ALL video files on my iMac G4. Please Help.

So I pulled my old iMac g4 flat-panel out of the garage this past weekend, and I've been searching for a certain video file. The "movies" tab in finder doesn't have even close to all my video files in it; it only has a few. So I've been searching in finder for '.mov' '.avi' '.mpg' '.dv'....etc. I've been able to locate some of them that way, but definitely not all of them. So my question is this--how do I get all video files of all formats into one place so I can click through them to find the one I'm looking for? Is there some type of Mac trick to do this? Or a certain software? Any help would be greatly appreciated.

iMac, Mac OS X (10.4)

Posted on Apr 11, 2013 10:37 AM

Reply
4 replies

Apr 13, 2013 11:36 AM in response to Tmur03

The syntax is rather cryptic, but:

Macintosh-HD -> Applications -> Utilities -> Terminal

# press return to run the command.


# in your home folder

find ~ \( -iname "*.mov" -o -iname "*.avi" -o -iname "*.mpg" -o -iname "*.dv" \) -type f -exec ls -l {} \;


I suggest copying & pasting this.

Edit in text edit.

Blanks between tokens. Blank before and after \)

-o -iname "*.avi" or filename ends with .avi


# on every volumn and all folders

sudo find / \( -iname "*.mov" -o -iname "*.avi" -o -iname "*.mpg" -o -iname "*.dv" \) -type f -exec ls -l {} \;


The sudo command will ask for your administration password. No characters will appear when typing your password. Press return when done typing. sudo stands for super user do. It's just like root. Be careful.


Robert

This thread has been closed by the system or the community team. You may vote for any posts you find helpful, or search the Community for additional answers.

Trying to locate ALL video files on my iMac G4. Please Help.

Welcome to Apple Support Community
A forum where Apple customers help each other with their products. Get started with your Apple Account.