summaryrefslogtreecommitdiff
path: root/stylize.sh
diff options
context:
space:
mode:
authorxAlpharax <42233094+xAlpharax@users.noreply.github.com>2024-01-03 19:05:20 +0200
committerxAlpharax <42233094+xAlpharax@users.noreply.github.com>2024-01-03 19:05:20 +0200
commit8b67c262af3a1780cf4192a2f2d22e45537d8ace (patch)
tree6b2a0a743f1d8aa8f7c45d112c94481a95cdfb5d /stylize.sh
parent447b6c6c921f912e5323af2ed18160d63931533f (diff)
Aesthetic changes to the README and a comment on using -crf in ffmpeg.
Changes to be committed: modified: README.md modified: stylize.sh
Diffstat (limited to 'stylize.sh')
-rwxr-xr-xstylize.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/stylize.sh b/stylize.sh
index 6e377b2..1dcbad5 100755
--- a/stylize.sh
+++ b/stylize.sh
@@ -38,4 +38,4 @@ python renderer.py --fix
#ffmpeg -y -framerate 60 -pattern_type glob -i 'Output/neural_art_*.png' -c:v libsvtav1 -pix_fmt yuv420p -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" $(basename ${2%.*})'_in_'$(basename ${1%.*})'.mp4' # AV1 weirddd
ffmpeg -y -framerate 60 -pattern_type glob -i 'Output/neural_art_*.png' -c:v libvpx-vp9 -pix_fmt yuv420p -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" $(basename ${2%.*})'_in_'$(basename ${1%.*})'.mp4' # VP9 quality
-# try -crf 10 (sane for vp9)
+# -crf defaults to 32 which is ok for vp9, change it to be lower with the -crf flag if you *really* need that higher fidelity and bigger filesize, i found it to be unnecessary