From 8e8b96152ccf4747dd2cd62b8389c14d3b513d54 Mon Sep 17 00:00:00 2001 From: mattmcw Date: Sun, 9 May 2021 14:04:50 -0400 Subject: [PATCH] Render neural video as h264, prores is not liking it --- python/neural.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/neural.sh b/python/neural.sh index d75c326..43cd7e0 100644 --- a/python/neural.sh +++ b/python/neural.sh @@ -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