要在C++中使用FFmpeg,你需要按照以下步骤安装和使用它。
安装FFmpeg:
./configure
make
sudo make install
使用FFmpeg:
#include <libavformat/avformat.h>
av_register_all();
AVFormatContext* formatContext = avformat_alloc_context(); // 创建格式上下文
avformat_open_input(&formatContext, "path_to_your_file", NULL, NULL); // 打开文件
avformat_find_stream_info(formatContext, NULL); // 获取流信息
av_read_frame(formatContext, packet); // 读取一帧数据
avcodec_send_packet(codecContext, packet); // 发送数据包给解码器
avcodec_receive_frame(codecContext, frame); // 接收解码后的帧数据
这是一个简单的使用FFmpeg的示例。根据你的需求,你可能需要深入学习FFmpeg的其他功能和API。请查阅FFmpeg官方文档和示例代码以获得更多信息。