+
+
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"
- Stretch/squeezes samples to given timestamps, with maximum of 1000 samples per second compensation [more]
+ - output_file
- path, name and extension of the output file. Try different file extensions such as mkv, mov, mp4, or avi.
+
+
+
+