在C語言中調用ffmpeg合成視頻,可以使用ffmpeg提供的API來實現。下面是一個簡單的示例代碼,演示了如何使用ffmpeg API來合成視頻:
#include <stdio.h>
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libavutil/error.h>
int main() {
av_register_all();
AVFormatContext *formatContext;
avformat_alloc_output_context2(&formatContext, NULL, NULL, "output.mp4");
if (!formatContext) {
fprintf(stderr, "Error allocating format context\n");
return AVERROR_UNKNOWN;
}
AVStream *videoStream = avformat_new_stream(formatContext, NULL);
if (!videoStream) {
fprintf(stderr, "Error creating video stream\n");
return AVERROR_UNKNOWN;
}
AVCodec *codec = avcodec_find_encoder(AV_CODEC_ID_H264);
if (!codec) {
fprintf(stderr, "Codec not found\n");
return AVERROR_UNKNOWN;
}
videoStream->codecpar->codec_id = AV_CODEC_ID_H264;
videoStream->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
videoStream->codecpar->width = 640;
videoStream->codecpar->height = 480;
videoStream->codecpar->format = AV_PIX_FMT_YUV420P;
AVDictionary *options = NULL;
av_dict_set(&options, "preset", "ultrafast", 0);
avformat_write_header(formatContext, &options);
// Write frames to video stream
av_write_trailer(formatContext);
avio_closep(&formatContext->pb);
avformat_free_context(formatContext);
return 0;
}
在上面的示例中,我們首先注冊了ffmpeg庫,然后創建了一個輸出格式的上下文。接著創建了一個視頻流,并設置了視頻編碼器為H.264。然后設置了視頻流的參數,比如寬高和像素格式。之后通過avformat_write_header
函數寫入文件頭,然后寫入視頻幀數據到視頻流中。最后調用av_write_trailer
函數寫入文件尾,關閉文件并釋放資源。
需要注意的是,上面的示例代碼只是一個簡單的示例,實際使用時需要根據具體需求進行修改和完善。