mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 15:53:34 +02:00
several tweaks to sox.md
for consistency and clarity
This commit is contained in:
parent
95eb6adc26
commit
5cf0fc11c5
1 changed files with 4 additions and 4 deletions
|
@ -8,18 +8,18 @@
|
||||||
|
|
||||||
`sox -m {{audiofile1}} {{audiofile2}} {{output_filename}}`
|
`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}}`
|
`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}}`
|
`sox --norm {{input_audiofile}} {{output_audiofile}}`
|
||||||
|
|
||||||
- Reverse and save audio file
|
- Reverse and save an audio file
|
||||||
|
|
||||||
`sox {{input_audiofile}} {{output_audiofile}} reverse`
|
`sox {{input_audiofile}} {{output_audiofile}} reverse`
|
||||||
|
|
||||||
- Print statistical data of the audio file
|
- Print statistical data of an audio file
|
||||||
|
|
||||||
`sox {{audiofile}} -n stat`
|
`sox {{audiofile}} -n stat`
|
||||||
|
|
Loading…
Add table
Reference in a new issue