Merge pull request #244 from Dahie/sox

Add sox and play commands for sox sound processing
waldyrious/alt-syntax
Romain Prieto 2014-09-28 20:26:09 +10:00
commit 95eb6adc26
2 changed files with 48 additions and 0 deletions

23
pages/common/play.md Normal file
View File

@ -0,0 +1,23 @@
# play
> Audio player of SoX - Sound eXchange
> Plays any audio from the command line
> Audioformats are identified by extension
- Play the given audio file
`play {{audiofile}}`
- Play the given audio files
`play {{audiofile1}} {{audiofile2}}`
- Play the given audio at twice the speed
`play {{audiofile}} speed 2.0`
- Play the given audio in reverse
`play {{audiofile}} reverse`

25
pages/common/sox.md Normal file
View File

@ -0,0 +1,25 @@
# sox
> SoX - Sound eXchange
> Play, record and convert audio files
> Audioformats are identified by extension
- Merge two audio files into one
`sox -m {{audiofile1}} {{audiofile2}} {{output_filename}}`
- Trim an audio file to the specified time indecies
`sox {{input_audiofile}} {{output_audiofile}} trim {{start}} {{end}}`
- Normalize an audio file
`sox --norm {{input_audiofile}} {{output_audiofile}}`
- Reverse and save audio file
`sox {{input_audiofile}} {{output_audiofile}} reverse`
- Print statistical data of the audio file
`sox {{audiofile}} -n stat`