From f380334fe2f45c7851414829541a7c56594d406f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 7 May 2023 01:35:43 -0700 Subject: [PATCH] undo the bf and adjust rates for small/large --- pack-set | 4 ++-- pack-vid | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/pack-set b/pack-set index 0d21ea3..40dbe44 100755 --- a/pack-set +++ b/pack-set @@ -4,11 +4,11 @@ for INFILE in "$@" do echo "$INFILE" - COMMON="--quality=0.75 --exposure=-2.5 --peak=141 --fps=60000/1001" + COMMON="--exposure=-2.5 --peak=141 --fps=60000/1001" SPEED_SMALL="veryslow" SPEED_LARGE="medium" - SMALL="$COMMON --size=4m --preset=$SPEED_SMALL" + SMALL="$COMMON --size=4m --preset=$SPEED_SMALL --quality=0.75" LARGE="$COMMON --size=25m --preset=$SPEED_LARGE" pack-vid $SMALL "$INFILE" "${INFILE%.mp4}-small.mp4" diff --git a/pack-vid b/pack-vid index e7c725f..e18e7e4 100755 --- a/pack-vid +++ b/pack-vid @@ -246,7 +246,6 @@ function convert( $src, $dest, $options ) { '-c:v', 'libx264', '-b:v', $bitrate, '-preset', $preset, - '-bf', '16', '-pass', '1', '-passlogfile', $passlog, '-g', $keyframeInt, @@ -263,7 +262,6 @@ function convert( $src, $dest, $options ) { '-c:v', 'libx264', '-b:v', $bitrate, '-preset', $preset, - '-bf', '16', '-pass', '2', '-passlogfile', $passlog, '-g', $keyframeInt,