2021-07-25 20:51:10 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
povray bounce.ini
|
|
|
|
|
2021-07-26 20:46:01 +00:00
|
|
|
ffmpeg -f image2 -i bounce%04d.png -r 30 -filter_complex "color=black,format=rgb24[c];[c][0]scale2ref[c][i];[c][i]overlay=format=auto:shortest=1,setsar=1" -b:a 64k -ar 44.1k -movflags faststart -c:v libx264 -strict -2 -preset veryslow -tune psnr -tune ssim -crf 28 dvdbounce_candidate.mp4
|
2021-07-26 14:59:04 +00:00
|
|
|
ffmpeg -f image2 -i bounce%04d.png -r 30 -c:v prores_ks -shortest -profile:v 4 dvdbounce_candidate.mov
|
2021-07-25 20:51:10 +00:00
|
|
|
|
2021-07-26 20:46:01 +00:00
|
|
|
rm bounce*.png
|