Search code examples
phppdfvideoffmpeg

Is this possible to create video from PDF files?


I want to make video from pdf file.Is it possible? I created video from images with ffmpeg but not able to create video from PDF files.


Solution

  • here is script to convert pdf to video:

    exec("convert -geometry 1600x1600 -density 200x200 -quality 100 -resize 800x $pdf_path $temp_images");
    exec("ffmpeg -loop 1 -f image2 -framerate 0.5 -b 1800 -i $temp_images_wildcard -c:v libx264 -preset slow -tune stillimage -r 5 -t 22 -y $frame_target 2>&1",$output);