diff --git a/index.html b/index.html index e56da8a..32d77f1 100644 --- a/index.html +++ b/index.html @@ -38,7 +38,6 @@
View or strip metadata
Preservation tasks
Generate test files
-
Repair a file
Use OCR
Compare similarity of videos
Something else
@@ -751,6 +750,23 @@ + + +
+

Fix AV Sync: Resample audio

+ +

ffmpeg -i input_file -c:v copy -c:a pcm_s16le -af "aresample=async=1000" output_file

+
+
ffmpeg
starts the command
+
input_file
path, name and extension of the input file
+
-c:v copy
Copy all mapped video streams.
+
-c:a pcm_s16le
tells FFmpeg to encode the audio stream in 16-bit linear PCM (little endian)
+
-af "aresample=async=1000"
Uses the aresample filter to stretch/squeeze samples to given timestamps, with a maximum of 1000 samples per second compensation.
+
output_file
path, name and extension of the output file. Try different file extensions such as mkv, mov, mp4, or avi.
+
+
+ +

Join, trim, or excerpt a video

@@ -1726,27 +1742,6 @@ ffmpeg -i $file -map 0 -c copy $output
- -
-

Repair

- - - -
-

Fix AV Sync: Resample audio

- -

ffmpeg -i input_file -c:v copy -c:a pcm_s16le -af "aresample=async=1000" output_file

-
-
ffmpeg
starts the command
-
input_file
path, name and extension of the input file
-
-c:v copy
Copy all mapped video streams.
-
-c:a pcm_s16le
tells FFmpeg to encode the audio stream in 16-bit linear PCM (little endian)
-
-af "aresample=async=1000"
Uses the aresample filter to stretch/squeeze samples to given timestamps, with a maximum of 1000 samples per second compensation.
-
output_file
path, name and extension of the output file. Try different file extensions such as mkv, mov, mp4, or avi.
-
-
- -

Use OCR