在C语言中调用ffmpeg库的方法是使用FFmpeg提供的API函数。以下是使用FFmpeg库进行音视频处理的基本步骤:
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavutil/imgutils.h>
#include <libswscale/swscale.h>
av_register_all();
AVFormatContext *formatContext = NULL;
if(avformat_open_input(&formatContext, inputFileName, NULL, NULL) != 0) {
// 打开文件失败,处理错误
}
if (avformat_find_stream_info(formatContext, NULL) < 0) {
// 获取流信息失败,处理错误
}
int videoStreamIndex = -1;
int audioStreamIndex = -1;
for (int i = 0; i < formatContext->nb_streams; i++) {
if (formatContext->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
videoStreamIndex = i;
} else if (formatContext->streams[i]->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
audioStreamIndex = i;
}
}
AVCodecContext *videoCodecContext = avcodec_alloc_context3(NULL);
avcodec_parameters_to_context(videoCodecContext, formatContext->streams[videoStreamIndex]->codecpar);
AVCodec *videoCodec = avcodec_find_decoder(videoCodecContext->codec_id);
avcodec_open2(videoCodecContext, videoCodec, NULL);
AVPacket *packet = av_packet_alloc();
AVFrame *frame = av_frame_alloc();
while (av_read_frame(formatContext, packet) >= 0) {
if (packet->stream_index == videoStreamIndex) {
avcodec_send_packet(videoCodecContext, packet);
while (avcodec_receive_frame(videoCodecContext, frame) == 0) {
// 处理视频帧数据
}
}
av_packet_unref(packet);
}
avcodec_free_context(&videoCodecContext);
avformat_close_input(&formatContext);
这些仅仅是使用FFmpeg库进行音视频处理的基本操作,具体的使用方法和功能可以根据实际需求进行调整。另外,还可以使用FFmpeg提供的其他API函数进行音视频编码、封装、滤镜等操作。