paulnasca/paulstretch_cpp

Multiple audio file support?

Opened this issue · 1 comments

Hi, is there currently any way to apply a paulstretch preference file towards multiple audio files with a batch file so I could drag and drop? That would really make my life easier than doing each one individually. I don't know if the python version would be better for this or not, but could someone send me in the right direction? Thanks!

you could use ffmpeg to convert the format to a temp directory before opening with paulstretch.

@echo off
IN="<path to audio>"
OUT="%temp%\temp.wav"
ffmpeg -i %in% -y %OUT%
start /w paulstretch %out%
del /s /q %out%

maybe that would work?