Fix erroneous long-form flags in reencode.sh

This commit is contained in:
Matt McWilliams 2021-05-08 16:21:47 -04:00
parent 0d5aaeb309
commit 3a2bab2efe
1 changed files with 1 additions and 1 deletions

View File

@ -58,4 +58,4 @@ if [[ "${OUTPUT}" != *".mp4" ]]; then
fi fi
# Command to re-encode the input video into H264/AAC # 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}" ffmpeg -i "${INPUT}" -c:v libx264 -preset slow -crf 22 -c:a aac -b:a 192k "${OUTPUT}"