1
Fork 0
mirror of https://github.com/RealOrangeOne/notes.git synced 2024-09-28 23:21:34 +01:00

Add notes about how to downmix audio

This commit is contained in:
Jake Howard 2021-10-27 22:25:30 +01:00
parent 07058c3233
commit cb3297d70a
Signed by: jake
GPG key ID: 57AFB45680EDD477

View file

@ -0,0 +1,15 @@
---
title: Downmixing audio channels
tags:
- Media
emoji: 🎵
link: https://trac.ffmpeg.org/wiki/AudioChannelManipulation
---
```bash
ls -1 *.mp4 | xargs -I{} ffmpeg -y -i {} -ac 2 -c:v copy /path/to/out/{}
```
Downmixes multi-channel audio into stereo. Reduces the chances of weird things happening during playback.
`-c:v copy` is important for performance as it means the video isn't re-encoded (10x improvement in speed).