1

I use to open .gif file with

 eog -f myfile.gif

The gif animation is however running in loop.

What I want is to display the animation once and then quit.

How to avoid this?

Please also help in case you would have any better utility to open .gif,

user123456
  • 4,758
  • 11
  • 52
  • 78
  • It loops forever as that's how your `gif` was animated... If you unpack it with e.g. `convert myfile.gif frames%02d.gif` and then recreate another animated gif with `convert -delay 30 frames*.gif -loop 1 loop_once.gif` and run `eog loop_once.gif` it will "play" the animation only once – don_crissti Oct 19 '16 at 19:22

0 Answers0