Skip to content

Instantly share code, notes, and snippets.

@r-k-b
Created March 13, 2023 07:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-k-b/27ae0da9418c254677d4f37c2748e36c to your computer and use it in GitHub Desktop.
Save r-k-b/27ae0da9418c254677d4f37c2748e36c to your computer and use it in GitHub Desktop.
Change a video from unbalanced stereo to mono

in case you have a wonky mic where the left channel sounds much louder than the right; here's an ffmpeg command to keep only the left channel in a video file, converting it from stereo to mono:

ffmpeg -i in.mp4 -af "pan=mono| c0=FL" -c:v copy out.mp4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment