My QA Projects

QA Projects I was involded.

View on GitHub

Sox

    play filename
sox filename newfile.ogg
sox filename1.wav filename2.wav filename3.wav file1to3.wav

Advanced usage

    sox casa.mp3 -n spectrogram
    sox casa.mp3 -n spectrogram -Y 130 -l - casa_spec.png
    sox casa.mp3 reverse asac.mp3

how to just put all the tracks together in one file

(all files with stereo sound, so two channels) without changing the volume of any of the inputs in the final output.

sox -m -v 1 ...
sox --mix-power ...
sox -m ... norm
sox -m ... compand ...

remove background noise and/or silence from audio files (individually, or in batch).

https://gist.github.com/devoncrouse/5534261?permalink_comment_id=2214084

# Create background noise profile from mp3
/usr/bin/sox noise.mp3 -n noiseprof noise.prof

# Remove noise from mp3 using profile
/usr/bin/sox input.mp3 output.mp3 noisered noise.prof 0.21

# Remove silence from mp3
/usr/bin/sox input.mp3 output.mp3 silence -l 1 0.3 5% -1 2.0 5%

# Remove noise and silence in a single command
/usr/bin/sox input.mp3 output.mp3 noisered noise.prof 0.21 silence -l 1 0.3 5% -1 2.0 5%

# Batch process files
/usr/bin/find . -type f -name "*.mp3" -mmin +30 -exec sox -S --multi-threaded -buffer 131072 {} /path/to/output/{} noisered noise.prof 0.21 silence -l 1 0.3 5% -1 2.0 5% \;

# Remove insignificant files
/usr/bin/find . -type f -name "*.mp3" -mmin +30 -size -500k -delete