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