Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multiple audio file support? #14

Open
Jamaldude opened this issue Jul 5, 2020 · 1 comment
Open

Multiple audio file support? #14

Jamaldude opened this issue Jul 5, 2020 · 1 comment

Comments

@Jamaldude
Copy link

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!

@BiatuAutMiahn
Copy link

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants