How to use FFmpeg to turn into a video picture _ turn pictures into video

Video to picture command

ffmpeg -i input.flv -r 1 -f image2 image-%3d.jpeg
-i : 指定输入文件
-r : 帧数 1
-f : 指定格式化的格式为image2
生成的结果 image-%3d.jpeg  %3d是指3位数字

Pictures turn video

ffmpeg -i image-%3d.jpeg out.mp4
-i : 指定图片内容
最终结果输出为out.mp4

Guess you like

Origin www.cnblogs.com/fandx/p/12122625.html