Can ffmpeg convert audio to raw PCM? If so, how?

本秂侑毒 提交于 2019-11-29 19:39:55
Chris Haas

Give this a shot:

ffmpeg -i input.flv -f s16le -acodec pcm_s16le output.raw

You can get these options by running:

ffmpeg -formats

See https://trac.ffmpeg.org/wiki/audio%20types for details

Jayhello

convert mp4 file to pcm

ffmpeg -y  -i input.mp4  -acodec pcm_s16le -f s16le -ac 1 -ar 16000 output.pcm

you can also use it to convert mp3 to pcm

ffmpeg -y  -i input.mp3  -acodec pcm_s16le -f s16le -ac 1 -ar 16000 output.pcm

key params means:

-f s16le … PCM signed 16-bit little-endian samples

-ac 1 … 1 channel (mono)

-ar 16000 … sample rate 16000Hz
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!