Last active
April 16, 2021 06:35
-
-
Save matthacksteiner/0ad88411a1a75277f8c942772ecd309b to your computer and use it in GitHub Desktop.
Trims 100ms of all audiofiles in subdiretories from the beginning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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