HOW TO BATCH REMOVE 360 SAMPLES (WINDOWS):
-
Install SoX (http://sox.sourceforge.net/)
-
Browse to SoX install location, e.g. “C:\Program Files (x86)\sox-14-4-2”
-
Create new batch file (.BAT) with the following contents:
cd %~dp0
mkdir trimmed
FOR %%A IN (%*) DO sox %%A "trimmed/%%~nxA" trim 0 -360s
pause
-
Drag and drop files directly onto the batch file. Trimmed samples go to “trimmed” directory.