PCM文件进行OPUS编码压缩:
ffmpeg -f s16le -i input.pcm -acodec libopus output.opus
OPUS解码为PCM文件:
ffmpeg -i input.opus -f s16le -acodec pcm_s16le output.pcm