diff options
author | breadcat | 2022-12-17 23:23:41 +0000 |
---|---|---|
committer | breadcat | 2022-12-17 23:23:41 +0000 |
commit | 5ff09fd7bfa072919dd625aad04351affc5fa409 (patch) | |
tree | ccf14b8b783ba5aba961ab9fd1be5e25549e9e1d /content/posts | |
parent | 9f97ef84557738c606f46259725eff0fe331d044 (diff) | |
download | blog.minskio.co.uk-5ff09fd7bfa072919dd625aad04351affc5fa409.tar.gz blog.minskio.co.uk-5ff09fd7bfa072919dd625aad04351affc5fa409.tar.bz2 blog.minskio.co.uk-5ff09fd7bfa072919dd625aad04351affc5fa409.zip |
Add 3CX instructions
Diffstat (limited to 'content/posts')
-rw-r--r-- | content/posts/ffmpeg-pbx-conversions.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/content/posts/ffmpeg-pbx-conversions.md b/content/posts/ffmpeg-pbx-conversions.md index 05e87f5..741a615 100644 --- a/content/posts/ffmpeg-pbx-conversions.md +++ b/content/posts/ffmpeg-pbx-conversions.md @@ -31,4 +31,9 @@ ffmpeg -i "input.ext" -codec:a pcm_mulaw -ar 8000 -ac 1 -ab 64k "output.wav" ffmpeg -i "input.ext" -codec:a pcm_mulaw -ar 8000 -ac 1 -ab 64k "output.wav" ``` -Sometimes, the files can be a little loud when played. You can simply knock this down during conversion via `-af volume=0.8` which predictably equates to 80% of the original volume
\ No newline at end of file +## 3CX +``` +ffmpeg -i "input.ext" -codec pcm_s16le -ar 8000 -ac 1 -ab 128k "output.wav" +``` + +Sometimes, the files can be a little loud when played. You can simply knock this down during conversion via `-af volume=0.8` which predictably equates to 80% of the original volume |