|
|
|
|
|
by nly
4499 days ago
|
|
For anyone wondering how to dump gif loop time. curl -s http://imgs.xkcd.com/comics/frequency/turnsignal1.gif |
giftext | grep DelayTime | cut -d':' -f 2 | awk '{s+=$1} END {print s/100}'
The results seem to correspond with authors table. |
|