Skip to content

Instantly share code, notes, and snippets.

@VojtechKlos
Created October 12, 2017 14:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save VojtechKlos/3156ecd944d8f4226f1ce599d5e0289c to your computer and use it in GitHub Desktop.
Save VojtechKlos/3156ecd944d8f4226f1ce599d5e0289c to your computer and use it in GitHub Desktop.
Guide to split audio recording by silence with SoX and ffmpeg
# First denoise audio
## Get noise sample
ffmpeg -i input.ogg -vn -ss 00:00:00 -t 00:00:01 noise-sample.wav
## Create noise profile
sox noise-sample.wav -n noiseprof noise.prof
## Clean audio from noise
sox input.ogg clean.wav noisered noise.prof 0.21
# Split audio by noise
sox -V3 clean.wav output.wav silence 1 0.2 0.4% 1 0.2 0.4% : newfile : restart
####### (these settings worked for my computer mic - maybe we need to finetune them later) #######
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment