From a6fdd3932c247020164e30c6fe5052493f0da5e7 Mon Sep 17 00:00:00 2001 From: Stavros Korokithakis Date: Fri, 4 Mar 2022 00:44:38 +0200 Subject: [PATCH] Updates --- content/ardupilot/dji-fpv-configuration.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/ardupilot/dji-fpv-configuration.md b/content/ardupilot/dji-fpv-configuration.md index 206b5f2..2fb63ec 100644 --- a/content/ardupilot/dji-fpv-configuration.md +++ b/content/ardupilot/dji-fpv-configuration.md @@ -18,7 +18,8 @@ That's it! The audio of the DJI air unit is slower than the video, leading to desynchronization, but it is slower by a constant factor, which means it can be easily corrected with the following command: ```bash -$ ffmpeg -i "$1" -c:v copy -filter:a atempo=1.001480,volume=20 -c:a aac -b:a 93k "$(basename "$1" .mp4)_fixed_audio.mp4" +$ ffmpeg -i "$1" -c:v copy -filter:a atempo=1.001480,volume=20 \ + -c:a aac -b:a 93k "$(basename "$1" .mp4)_fixed_audio.mp4" ``` * * *