Skip to content

Instantly share code, notes, and snippets.

@matthacksteiner
Last active April 16, 2021 06:35
Show Gist options
  • Save matthacksteiner/0ad88411a1a75277f8c942772ecd309b to your computer and use it in GitHub Desktop.
Save matthacksteiner/0ad88411a1a75277f8c942772ecd309b to your computer and use it in GitHub Desktop.
Trims 100ms of all audiofiles in subdiretories from the beginning
for /R %f in ("*.wav") do (ffmpeg.exe -i "%~f" -ss 0.1 -c copy "%~pf%~nf_converted.wav")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment