私は異なる形式の 2 つの pdf を持っています。それらをビデオに変換する必要があります。両方とも異なるスクリプトで動作しています。すべてに共通のスクリプトが必要です。任意の提案をいただければ幸いです。
以下のスクリプトで変換する1つのpdf
exec("convert -density 150 -quality 100 -resize 800x $pdf_path $temp_images ");
exec("ffmpeg -loop 1 -f image2 -r 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);
このスクリプトで動作する別の変換
exec("convert -geometry 1600x1600 -density 200x200 -quality 100 $pdf_path $temp_images ");
exec("ffmpeg -loop 1 -f image2 -r 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);
ありがとうプリート