当前位置: 代码迷 >> 综合 >> ffmpeg命令:ffplay 播放.pcm .g711a .g711u
  详细解决方案

ffmpeg命令:ffplay 播放.pcm .g711a .g711u

热度:17   发布时间:2023-12-27 08:57:41.0
ffplay -i test.pcm  -f s16le  -ac 1  -ar 8000
ffplay -i test.g711a  -f alaw  -ac 1  -ar 8000
ffplay -i test.g711u  -f mulaw  -ac 1  -ar 8000

-ac: 音频通道数
-ar:音频采样率
-f: 文件格式

  相关解决方案