1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-08 11:13:36 +02:00

sox: add example of changing the volume of a file (#1242)

This commit is contained in:
Jeef 2017-01-26 17:46:42 -05:00 committed by Waldir Pimenta
parent 62c4fba279
commit 43c3e68c5b

View file

@ -22,3 +22,7 @@
- Print statistical data of an audio file:
`sox {{input_audiofile}} -n stat`
- Increase the volume of an audio file by 2x:
`sox -v 2.0 {{input_audiofile}} {{output_audiofile}}`