如何使用 FFMPEG 和 C 将音频和视频写入同一个文件?

Posted

技术标签:

【中文标题】如何使用 FFMPEG 和 C 将音频和视频写入同一个文件?【英文标题】:How do I write audio and video to the same file using FFMPEG and C? 【发布时间】:2018-06-29 02:08:00 【问题描述】:

我在 C 程序中使用 ffmpeg 使用音频文件和视频文件。我正在修改音频和视频数据。在处理下面的代码时,我将这些流中的每一个都写入了自己的文件。如何将两个流写入同一个文件?

#include <math.h>
#include <stdint.h>
#include <stdio.h>

// Video resolution
#define W 1280
#define H 720

// Allocate a buffer to store one video frame
unsigned char video_frame[H][W][3] = 0;

int main()

    // Audio pipes
    FILE *audio_pipein = popen("ffmpeg -i data/daft-punk.mp3 -f s16le -ac 1 -", "r");
    FILE *audio_pipeout = popen("ffmpeg -y -f s16le -ar 44100 -ac 1 -i - out/daft-punk.mp3", "w");

    // Video pipes
    FILE *video_pipein = popen("ffmpeg -i data/daft-punk.mp4 -f image2pipe -vcodec rawvideo -pix_fmt rgb24 -", "r");
    FILE *video_pipeout = popen("ffmpeg -y -f rawvideo -vcodec rawvideo -pix_fmt rgb24 -s 1280x720 -r 25 -i - -f mp4 -q:v 5 -an -vcodec mpeg4 out/daft-punk.mp4", "w");

    // Audio vars
    int16_t audio_sample;
    int audio_count;
    int audio_n = 0;

    // Video vars
    int x = 0;
    int y = 0;
    int video_count = 0;

    // Read, modify, and write one audio_sample and video_frame at a time
    while (1)
    
        // Audio
        audio_count = fread(&audio_sample, 2, 1, audio_pipein); // read one 2-byte audio_sample
        if (audio_count == 1)
        
            ++audio_n;
            audio_sample = audio_sample * sin(audio_n * 5.0 * 2 * M_PI / 44100.0);
            fwrite(&audio_sample, 2, 1, audio_pipeout);
        

        // Video
        video_count = fread(video_frame, 1, H * W * 3, video_pipein); // Read a frame from the input pipe into the buffer
        if (video_count == H * W * 3)                                 // Only modify and write if frame exists
        
            for (y = 0; y < H; ++y)     // Process this frame
                for (x = 0; x < W; ++x) // Invert each colour component in every pixel
                
                    video_frame[y][x][0] = 255 - video_frame[y][x][0]; // red
                    video_frame[y][x][1] = 255 - video_frame[y][x][1]; // green
                    video_frame[y][x][2] = 255 - video_frame[y][x][2]; // blue
                
            fwrite(video_frame, 1, H * W * 3, video_pipeout); // Write this frame to the output pipe
        

        // Break if both complete
        if (audio_count != 1 && video_count != H * W * 3)
            break;
    

    // Close audio pipes
    pclose(audio_pipein);
    pclose(audio_pipeout);

    // Close video pipes
    fflush(video_pipein);
    fflush(video_pipeout);
    pclose(video_pipein);
    pclose(video_pipeout);

    return 0;

我从this article获取了此代码的基础。

谢谢!

【问题讨论】:

【参考方案1】:

这被称为 muxing(多路复用 = 共享的花哨词)。 在这里(下面的链接),您会发现易于遵循的示例:打开和写入混合在单个流/文件中的流。您还会注意到该示例使用av_interleaved_write_frame 而不是fwrite。特别检查remuxing.c

示例:https://github.com/FFmpeg/FFmpeg/tree/master/doc/examples

API 参考:https://www.ffmpeg.org/doxygen/trunk/index.html

【讨论】:

谢谢,我通读了它,这似乎是正确的道路。我在运行示例代码时遇到问题,并在此处发布了一个问题 ***.com/questions/51139736/…

以上是关于如何使用 FFMPEG 和 C 将音频和视频写入同一个文件?的主要内容,如果未能解决你的问题,请参考以下文章

使用ffmpeg 将多个音频插入到视频中

ffmpeg:如何将 wav 作为音频输入来创建视频?

用ffmpeg c连接视频和音频时如何计算pts和dts

如何使用ffmpeg命令来实现音频和视频原始数据的提取

将音频视频与ffmpeg合并时如何提高结果视频的质量?

使用 ffmpeg 和 python 将视频中的所有音频流提取到单独的音频文件中