Algorithm info: Algorithm info: Submitted by Bas Curtiz
Since February 2024 / Ripple v1.31.0,
Lossless export is added as option.
Also the click/artifacts are non-existent due cross-fading chunks. So it sounds better for us human ears, but does SDR measures the same?
1st attempt uploading to mvsep resulted in Different shape (2645504 vs 2646000) aka. a tiny part still gets cut off, even as WAV export.
I 'fixed' it by adding a few ms:
import os
for f in os.listdir("."):
os.system(f'ffmpeg -i {f} -af "apad=pad_dur=1.00545" {f}_fixed.wav')
and cutted to exactly 1 minute:
import os
for f in os.listdir("."):
os.system(f'ffmpeg -i {f} -t "1:00.00000" {f}_cut.wav')
Thanks to 97chris for processing and providing the 4-stems with Ripple.
Date added: 2024-02-03 |