Answer the question
In order to leave comments, you need to log in
Is there a program to convert audio files on a schedule (Windows)?
It is necessary to schedule audio files with telephone conversations to be converted to a specific location while maintaining the folder structure. The required format is wav. Now files are written in 16.0 kHz, 256 kbps quality. You need to compress to reduce space. All this must be implemented on Windows OS.
Answer the question
In order to leave comments, you need to log in
The Task Scheduler and some console program for audio conversion (for example ffmpeg )
will help you . You will also need to write a small script to run the program, for example
@echo off
for %%a in ("*.wav") do (
ffmpeg -i "%%a" -vn -ar 44100 -ac 2 -ab 192 -f mp3 "converted\%%~na.mp3"
move "%%a" "done\%%a"
)
pause
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question