diff --git a/index.html b/index.html
index ebdc68d..01f1f11 100644
--- a/index.html
+++ b/index.html
@@ -720,22 +720,23 @@ If the error message includes other parts of the command, such as a flag, that i
-
+
-
Change Display Aspect Ratio without re-encoding video
Change Display Aspect Ratio to 4:3. Experiment with other aspect ratios such as 16:9. If used together with -c:v copy, it will affect the aspect ratio stored at container level, but not the aspect ratio stored in encoded frames, if it exists.
output_file
path, name and extension of the output file
-
+
diff --git a/recipes.txt b/recipes.txt
index c0f624d..0aebac1 100644
--- a/recipes.txt
+++ b/recipes.txt
@@ -37,7 +37,7 @@ ffmpeg -i input_file -filter:v "hflip,vflip" -c:a copy output_file
# Transform SD to HD with pillarbox
ffmpeg -i input_file -filter:v "colormatrix=bt601:bt709, scale=1440:1080:flags=lanczos, pad=1920:1080:240:0" -c:a copy output_file
# Change display aspect ratio without re-encoding
-ffmpeg -i input_file -c:v copy -aspect 4:3 output_file
+ffmpeg -i input_file -c:a copy -c:v copy -aspect 4:3 output_file
# Convert colorspace of video
ffmpeg -i input_file -c:v libx264 -vf colormatrix=src:dst output_file
# Modify image and sound speed