Forrest logo
back to context overview

sox

List of commands for sox:

  • sox:tldr:191ef sox: Merge two audio files into one.
    $ sox -m ${input_audiofile1} ${input_audiofile2} ${output_audiofile}
    try on your machine
    explain this command
  • sox:tldr:42305 sox: Normalize an audio file (adjust volume to the maximum peak level, without clipping).
    $ sox --norm ${input_audiofile} ${output_audiofile}
    try on your machine
    explain this command
  • sox:tldr:57ef4 sox: Reverse and save an audio file.
    $ sox ${input_audiofile} ${output_audiofile} reverse
    try on your machine
    explain this command
  • sox:tldr:8037a sox: Print statistical data of an audio file.
    $ sox ${input_audiofile} -n stat
    try on your machine
    explain this command
  • sox:tldr:a00b4 sox: Increase the volume of an audio file by 2x.
    $ sox -v 2.0 ${input_audiofile} ${output_audiofile}
    try on your machine
    explain this command
  • sox:tldr:a8594 sox: Trim an audio file to the specified times.
    $ sox ${input_audiofile} ${output_audiofile} trim ${start} ${end}
    try on your machine
    explain this command
back to context overview