Skip to content

Instantly share code, notes, and snippets.

@ah-cog
Forked from jochemstoel/split_silence.sh
Created April 18, 2020 03:44
Show Gist options
  • Save ah-cog/ecdc93c86def9ed1d5d8aeb38db38af8 to your computer and use it in GitHub Desktop.
Save ah-cog/ecdc93c86def9ed1d5d8aeb38db38af8 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