Formatted all pages according to guidelines.

This commit is contained in:
Ruben Vereecken
2016-01-07 18:31:27 +01:00
parent efa4cbd4de
commit 066582e8ea
284 changed files with 1338 additions and 1364 deletions

View File

@@ -1,25 +1,25 @@
# sox
> SoX - Sound eXchange
> Play, record and convert audio files
> Audioformats are identified by extension
> SoX - Sound eXchange.
> Play, record and convert audio files.
> Audioformats are identified by extension.
- Merge two audio files into one
- Merge two audio files into one:
`sox -m {{input_audiofile1}} {{input_audiofile2}} {{output_audiofile}}`
- Trim an audio file to the specified times
- Trim an audio file to the specified times:
`sox {{input_audiofile}} {{output_audiofile}} trim {{start}} {{end}}`
- Normalize an audio file (adjust volume to the maximum peak level, without clipping)
- Normalize an audio file (adjust volume to the maximum peak level, without clipping):
`sox --norm {{input_audiofile}} {{output_audiofile}}`
- Reverse and save an audio file
- Reverse and save an audio file:
`sox {{input_audiofile}} {{output_audiofile}} reverse`
- Print statistical data of an audio file
- Print statistical data of an audio file:
`sox {{input_audiofile}} -n stat`