Hi, I need some help with Blink again.
I am trying to make a video with 360 images. It worked perfectly with the following command for .avi extension using ffmpeg
-y -r 18 -i Blink%05d.png -qscale 1 Blink.avi
But I need the video in .mp4 and webm. Then use the following command
-y -r 18 -i Blink%05d.png -qscale 1 Blink.mp4
and beside the quality is lower than .avi, it is good enough for what I need. The problem here is that it seems that some frames disappear, at least the latest are not present. Am I using the correct command for mp4?
For .webm, If use:
-y -r 18 -i Blink%05d.png -qscale 1 Blink.webm
the result is very low in quality. I changed -qscale values and also delete it, but the result is allways the same. Any help in which command line should I use?
Thanks,
Alejandro.