From 5cf0fc11c52d5975e2e397c4f7c330d0700887df Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Mon, 29 Sep 2014 03:15:39 +0100 Subject: [PATCH 1/2] several tweaks to sox.md for consistency and clarity --- pages/common/sox.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/sox.md b/pages/common/sox.md index a29762a8b..17c864ea9 100644 --- a/pages/common/sox.md +++ b/pages/common/sox.md @@ -8,18 +8,18 @@ `sox -m {{audiofile1}} {{audiofile2}} {{output_filename}}` -- Trim an audio file to the specified time indecies +- Trim an audio file to the specified times `sox {{input_audiofile}} {{output_audiofile}} trim {{start}} {{end}}` -- Normalize an audio file +- Normalize an audio file (adjust volume to the maximum peak level, without clipping) `sox --norm {{input_audiofile}} {{output_audiofile}}` -- Reverse and save audio file +- Reverse and save an audio file `sox {{input_audiofile}} {{output_audiofile}} reverse` -- Print statistical data of the audio file +- Print statistical data of an audio file `sox {{audiofile}} -n stat` From 2a0cf1eac27fe171f928503ed1f871da7fe1b42d Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Mon, 29 Sep 2014 03:18:13 +0100 Subject: [PATCH 2/2] make filenames consistent across examples --- pages/common/sox.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pages/common/sox.md b/pages/common/sox.md index 17c864ea9..62c01b4c3 100644 --- a/pages/common/sox.md +++ b/pages/common/sox.md @@ -6,7 +6,7 @@ - Merge two audio files into one -`sox -m {{audiofile1}} {{audiofile2}} {{output_filename}}` +`sox -m {{input_audiofile1}} {{input_audiofile2}} {{output_audiofile}}` - Trim an audio file to the specified times @@ -22,4 +22,4 @@ - Print statistical data of an audio file -`sox {{audiofile}} -n stat` +`sox {{input_audiofile}} -n stat`