使用 FFMpeg 将 WMA 解码为 PCM

发布于 2024-07-30 17:24:57 字数 214 浏览 5 评论 0原文

我想将 WMA 流解码为 16 位 PCM。 现在我有一个关于 FFMpeg 的问题 - .. 的输出格式是什么?

len = avcodec_decode_audio2(c, (int16_t *)outbuf, &outbuf_used, inbuf_ptr, size);

这是执行此任务的正确函数吗?

谢谢

I want to decode a WMA stream to 16 Bit PCM. Now i have a Question concerning FFMpeg- what is the output format of ..

len = avcodec_decode_audio2(c, (int16_t *)outbuf, &outbuf_used, inbuf_ptr, size);

is this the right function for this task?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如梦初醒的夏天 2024-08-06 17:24:57

备注:尝试在 ffmpeg 用户列表上询问这个问题。 您肯定会在那里找到 ffmpeg 专家。

我主要使用ffmpeg来编码/解码视频。 要解码,“avcodec_decode_*”是正确使用的东西......解码。 您得到的是... 16 位 PCM。

我的意思是解码多媒体流可能很棘手,而 ffmpeg 是一个相当低级的库。 仅凭您给出的代码行很难变得更精确(至少您应该对参数更精确)。

您应该注意的是,在读取多媒体流时,您必须首先对流进行解复用(有时即使您的容器中只有一个流),然后使用正确的编解码器对其进行解码。 如果您已经正确地解复用了流,正确地初始化了编解码器/编解码器上下文,那么您可以调用 avcodec_decode 并且它会起作用:)

当您在标签中提到 c++ 时,您可以尝试对 ffmpeg 进行 c++ 包装: FOBS
使用起来要简单得多,但当然,你会失去精确的控制......

我希望它有所帮助。

A remark : try to ask this question on ffmpeg user list. You will certainly find ffmpeg gurus there.

I mainly use ffmpeg to encode/decode video. To decode, the "avcodec_decode_*" are the right things to use for ... decoding. What you get is ... 16 bits PCM.

What I mean is that decoding a multimedia stream can be tricky and ffmpeg is quite a low level lib. It is hard to be more precise with just the line of code you give (at least you should be more precise about your parameters).

What you should be careful about is that when reading multimedia stream, you have to demux you stream first (sometimes even if there is only one stream in your container) and then to decode it with the right codec. If you have correctly demuxed your stream, correctly initialized your codec / codec context then you can call avcodec_decode and it will works :)

As you mention c++ in your tags, you can try a c++ wrapping for ffmpeg : FOBS
The use is much more simple but of course, you lose precise control ...

I hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文