A
A
alex_se2014-01-14 09:05:28
Audio
alex_se, 2014-01-14 09:05:28

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

1 answer(s)
M
maxaon, 2014-01-14
@alex_se

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 question

Ask a Question

731 491 924 answers to any question