Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 ffmpeg 解码音频并使用 libmp3lame 将其编码为 mp3。由于 ffmpeg 中的 libmp3lame 需要 S16P 而不是 S16,因此我必须转换音频样本。
我尝试使用 swr_convert 但每次我遇到随机崩溃。我开始怀疑 swr_convert 是否接受 S16 作为输入。
那么,如何将音频样本从 AV_SAMPLE_FMT_S16 转换为 AV_SAMPLE_FMT_S16P?