gpt4 book ai didi

audio - 如何使用 ffmpeg 中的 libavcodec 将 opus 文件解码为 pcm 文件?

转载 作者:行者123 更新时间:2023-12-02 22:22:02 66 4
gpt4 key购买 nike

我正在尝试使用 libavcodec 将 opus 解码为 pcm 文件。因此,我使用来自 https://ffmpeg.org/doxygen/trunk/decode_audio_8c-example.html 的 ffmpeg 示例.然后我将 AV_CODEC_ID_MP2 更改为 AV_CODEC_ID_OPUS。但我收到错误消息。

codec = avcodec_find_decoder((AV_CODEC_ID_MP2);
codec = avcodec_find_decoder(AV_CODEC_ID_OPUS);

错误:

    codec ./decode_audio ./out.opus ./out.pcm                  
[opus @ 0x7ff361800000] Error parsing Opus packet header.
[opus @ 0x7ff361800000] Error parsing Opus packet header.
[opus @ 0x7ff361800000] Error parsing Opus packet header.
[opus @ 0x7ff361800000] Error parsing Opus packet header.
[opus @ 0x7ff361800000] Error parsing Opus packet header.
[opus @ 0x7ff361800000] Error parsing Opus packet header.

所以我尝试将作品 AV_CODEC_ID_OPUS 更改为 AV_CODEC_ID_MP3 并重试。

    codec ./decode_audio ./out.mp3 ./out.pcm            
[mp3float @ 0x7fe564002000] Header missing
Error submitting the packet to the decoder

为什么ffmpeg的例子会报错?我该怎么办?

最佳答案

你不能用这种方式解码作品。 mp3包是自定界的,opus不是。这意味着 opus 需要一个容器(通常是 ogg)。必须解析该容器以确定您随后可以解码的 opus 数据包的开始和结束。 libavformat 可用于从文件中读取 AVPackets。

关于audio - 如何使用 ffmpeg 中的 libavcodec 将 opus 文件解码为 pcm 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62155671/

66 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com