How To Create A Video From PDF Files In Linux - OSTechNix
ostechnix.com › create-videoOct 04, 2017 · Please be patient. It will take a while depending on the number of pages in the input PDF file. Once all pages in the PDF converted into PNG format, run the following command to create a video file from the PNG files. $ ffmpeg -r 1/10 -i picture-%01d.png -c:v libx264 -r 30 -pix_fmt yuv420p video.mp4. Here,-r 1/10: Display each image for 10 seconds.