{{ score }}
  # Play an audio file with sox
play file.3

# Convert Mono audio file to Stereo
sox mono.wav -c 2 stereo.wav

# Play two audio files simultaneously
sox -m 1.wav 2.wav

# Record audio in commandline with standard input on OS X, Ctrl-C to stop
rec -r 8000 -c 1 recording.wav