Algorithm info: Ripple iOS app (2-stem/320kbps/m4a)
Submitted by Bas Curtiz
In order to align properly, i had to convert the exported stems (m4a vbr / 48khz) to wav (44.1khz) and ditch the added silence like this:
for file in /mnt/d/ripple-2stem/itunes-wav/*.wav; do
ffmpeg -ss 00:00.01308 -i "$file" -c copy "/mnt/d/ripple-2stem/itunes-wav/01308/$(basename "$file")"
done
and a cut to 1 minute using:
import os
for f in os.listdir("."):
os.system(f'ffmpeg -i {f} -t "1:00.00000" {f}_cut.wav')
Date added: 2023-08-22 |