Saving a movie using fCheck (command line)

Hello, I cannot find the command to create a movie file in fcheck. I was looking at the docs and there was nothing there. Anybody has similar problems or better yet, found a solution for this?

currently falling back to the old but trusted virtualDub…
it is not as elegant, but it works. still looking for ideas…

Hi,
I use ffmpeg in our pipeline to make image-sequence to movie.

you can find good documentation in below links.
https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images
https://ffmpeg.org/ffmpeg.html

Simple example:
#image-sequence to movie
ffmpeg.exe -y -f image2 -start_number 0 -framerate 25 -i “c:/test.%04d.tif” -pix_fmt yuv420p -c:v libx264 -preset veryslow -qp 10 “c:/test.mov”

#convert from one format to another
ffmpeg.exe -i input.mp4 out.mkv

#convert movie to image-sequence
ffmpeg.exe -i “input.mov” -an -f image2 “output.%04d.tif”

hi! that looks interesting…

i coded something in Python that would post process my images and turn them to any format using virtualdub.

ok, this looks a lot simpler than virtualdub. thanks for sharing!