
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 machineexplain 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 machineexplain this command
-
sox:tldr:57ef4 sox: Reverse and save an audio file.$ sox ${input_audiofile} ${output_audiofile} reversetry on your machineexplain this command
-
sox:tldr:8037a sox: Print statistical data of an audio file.$ sox ${input_audiofile} -n stattry on your machineexplain 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 machineexplain 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 machineexplain this command