i need script to convert webm audio file from current folder to wav with ffmpeg (already on env path)
i've tried this command, but xy can't find webm file. suggestion ?
Code: Select all
run("cmd /c for %f in (*.webm) do ffmpeg -i "%f" "%~nf.wav\"");
Code: Select all
run("cmd /c for %f in (*.webm) do ffmpeg -i "%f" "%~nf.wav\"");
Code: Select all
run "cmd /c ffmpeg -i 22.webm 22.wav"