I have a set of PNG images and want to create a video file from them that can be opened by ImageJ or Fiji. To do so I use the following command:
ffmpeg -i *.png -c:v ayuv -r 25 outvideo.avi
It works good, ImageJ\Fiji opens this video, but the resulted AVI is huge.
How to create a video with smaller size that can be opened by ImageJ\Fiji?
For those who prefer to see code, here is the ImageJ-macro code that converts images in a directory to a JPG-compressed AVI-video:
The video-file "test.avi" is saved to the directory of its images.