Page 1 of 1

Animated Gif's

Posted: Fri Aug 27, 2010 11:04 am
by pottster
Is there a way to search for animated gif's (excluding non-animated gif's)?

Re: Animated Gif's

Posted: Sat Aug 28, 2010 12:45 pm
by therube
Seemingly an animated GIF will have the string, "NETSCAPE2.0" in its header, so a search for that should turn up your wanted GIFs.

Code: Select all

grep -F "NETSCAPE2.0" *.gif
Or any other program that will search file contents.
Not something for Everything to do.

Re: Animated Gif's

Posted: Mon Aug 30, 2010 10:28 am
by pottster
Thanks for the suggestion. Much appreciated.

Would I have to use a Grep search tool to use this search?

Re: Animated Gif's

Posted: Mon Aug 30, 2010 5:11 pm
by therube
Doesn't have to be grep. There are a multitude of tools to search within files.

Or maybe even a picture viewer program, that can filter by .gif, & then further enumerate animated .gif?