From 3a2bab2efe920073abd03e8f1765dff0e685d3ca Mon Sep 17 00:00:00 2001 From: mattmcw Date: Sat, 8 May 2021 16:21:47 -0400 Subject: [PATCH] Fix erroneous long-form flags in reencode.sh --- ffmpeg/basic/reencode.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg/basic/reencode.sh b/ffmpeg/basic/reencode.sh index 6a48288..bbac573 100644 --- a/ffmpeg/basic/reencode.sh +++ b/ffmpeg/basic/reencode.sh @@ -58,4 +58,4 @@ if [[ "${OUTPUT}" != *".mp4" ]]; then fi # Command to re-encode the input video into H264/AAC -ffmpeg -i "${INPUT}" -codec:video libx264 -preset slow -crf 22 -codec:audio aac -bitrate:audio 192k "${OUTPUT}" \ No newline at end of file +ffmpeg -i "${INPUT}" -c:v libx264 -preset slow -crf 22 -c:a aac -b:a 192k "${OUTPUT}" \ No newline at end of file