From 43c3e68c5b27687018070e5142f258f533ce894a Mon Sep 17 00:00:00 2001 From: Jeef Date: Thu, 26 Jan 2017 17:46:42 -0500 Subject: [PATCH] sox: add example of changing the volume of a file (#1242) --- pages/common/sox.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/common/sox.md b/pages/common/sox.md index c077a6f449..74b0623626 100644 --- a/pages/common/sox.md +++ b/pages/common/sox.md @@ -22,3 +22,7 @@ - Print statistical data of an audio file: `sox {{input_audiofile}} -n stat` + +- Increase the volume of an audio file by 2x: + +`sox -v 2.0 {{input_audiofile}} {{output_audiofile}}`