Merge pull request #245 from waldyrious/patch-1

several tweaks to sox.md
waldyrious/alt-syntax
Romain Prieto 2014-09-29 12:28:44 +10:00
commit ecffad3c33
1 changed files with 6 additions and 6 deletions

View File

@ -6,20 +6,20 @@
- Merge two audio files into one - 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 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 {{input_audiofile}} -n stat`