Render neural video as h264, prores is not liking it

This commit is contained in:
Matt McWilliams 2021-05-09 14:04:50 -04:00
parent 96f3dbbdea
commit 8e8b96152c
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ for frame in ${FRAMES}; do
bash python/style_transfer.sh "${frame}" "${STYLE}" "neural-${frame}"
done
ffmpeg -f image2 -i neural-frames/frame-%06d.png -r 24 -c:v prores_ks -profile:v 3 -an "${OUTPUT}"
ffmpeg -i neural-frames/frame-%06d.png -r 24 -c:v libx264 -crf 12 -an "${OUTPUT}"
# cleanup frames directories when done
rm -rf frames