带音频的 Libavcodec
我正在学习使用 libavcodec 进行编程。但我被困住了。我使用的所有教程都是视频文件,我需要一个音频文件。我正在使用Ubuntu。
我应该如何从音频流中读取 AVCodecContext
?
顺便问一下,有人知道关于音频的 libavcodec 的好教程吗?我什么也没找到。
I'm learning to program with libavcodec. But I'm stuck. All the tutorials I'm using are on video files and I need an audio file. I'm using Ubuntu.
How should I read AVCodecContext
from an audio stream?
By the way, does anybody know a good tutorial on libavcodec with audio? I couldn't find anything.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 ffmpeg 文档:
http://cekirdek.pardus .org.tr/~ismail/ffmpeg-docs/api-example_8c-source.html
有音频编码/解码和视频编码/解码的示例。
From the ffmpeg doc:
http://cekirdek.pardus.org.tr/~ismail/ffmpeg-docs/api-example_8c-source.html
Is has examples for audio encoding/decoding, and video encoding/decoding.
本教程展示了一个可以将任何使用 FFMPEG 库将声音文件转换为
double
样本数组,并使用您选择的采样率。This tutorial shows a function that can turn any sound file into an array of
double
samples, with the sampling rate of your choice, using FFMPEG libraries.