D
D
district132018-11-09 18:18:29
Audio
district13, 2018-11-09 18:18:29

Why are audio files playing too fast?

Why do audio files recorded by call recording software play too fast? How can they be converted into normal, not accelerated speech?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Moskus, 2018-11-09
@Moskus

Most likely, the program is crooked and writes the wrong sample rate value to the file header. The solution, in this case, is to use ffmpeg to transfer to raw pcm, and then transfer from it with the correct (lower than now) sample rate value.
For example, so

ffmpeg -i input.wav -f s16le -acodec pcm_s16le output.pcm

And then like this:
ffmpeg -f s16le -ar 44.1k -ac 1 -i output.pcm file.wav
.
If the entry is not 16, but 8 bits, then instead s16leyou need to use s8.

I
Igor Pietrashvsky, 2018-11-20
@IgorPie

sox (from the command line) and audacity (GUI) can also help fix the sample rate.
If the menu is Asterisk, you can try to slip it mp3, or gsm with a sampling rate of 8 kHz

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question