Just to see how it works. But if I wanted it to look better, I should have kept it on for longer, maby next time I will...
Photo every 10 seconds, encoded to avi at 30 fps with ffmpeg, intra frames only:
ffmpeg -f image2 -i img%04d.jpg -vcodec msmpeg4v2 -r 30 -intra out.avi
for future use, a nifty trick: not renaming, but creating links to images:
x=1; for i in *jpg; do counter=$(printf %03d $x); ln -s "$i" /tmp/img"$counter".jpg; x=$(($x+1)); done
najlepsze jest to pierwsze ujecie z Twoim ryjem :D
falktom 7 months ago