Timeline for Remove nth frames of a gif (remove a frame every n frames)
Current License: CC BY-SA 3.0
7 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Nov 4, 2017 at 2:55 | comment | added | Scott | I was able to use this answer, except I had to modify the line that gets the original delay value ($orig_delay), as the animated gifs I was working with, had a 0.05 s delay between MOST frames, but 0.50s delay between one of the frames. I decided to only retain the most common delay value, and I did so by using the line: local orig_delay=$(gifsicle -I "$orig_gif" | sed -ne 's/.*delay \([0-9.]\+\)s/\1/p' | sort | uniq -d | head -n 1) | |
| Oct 14, 2014 at 12:28 | history | edited | Lucas Cimon | CC BY-SA 3.0 | added 323 characters in body |
| Oct 10, 2014 at 3:01 | review | Late answers | |||
| Oct 10, 2014 at 3:37 | |||||
| Oct 10, 2014 at 2:59 | history | edited | HalosGhost | CC BY-SA 3.0 | fix syntax highlighting |
| Oct 10, 2014 at 2:50 | history | edited | Lucas Cimon | CC BY-SA 3.0 | added 20 characters in body |
| Oct 10, 2014 at 2:46 | review | First posts | |||
| Oct 10, 2014 at 2:59 | |||||
| Oct 10, 2014 at 2:44 | history | answered | Lucas Cimon | CC BY-SA 3.0 |