ffmpeg7.0 合并2个 aac 文件

ffmpeg7.0 将2个aac文件合并。

复制代码
#include <stdio.h>

// 之所以增加__cplusplus的宏定义,是为了同时兼容gcc编译器和g++编译器
#ifdef __cplusplus
extern "C"
{
#endif
#include <libavformat/avformat.h>
#include <libavcodec/avcodec.h>
#include <libavutil/avutil.h>
#ifdef __cplusplus
};
#endif

#pragma warning(disable:4996)

AVFormatContext* pFormatContext[2] = { NULL };
int g_nAudioIndex[2] = {-1};
AVStream* g_pStream[2] = {NULL};
AVCodecContext* g_pCodecContext[2] = {NULL};


bool Init(int nIndex, const char* pFileName)
{
    int nRet = avformat_open_input(&pFormatContext[nIndex], pFileName, NULL, NULL);
    if (nRet == 0) {
        nRet = avformat_find_stream_info(pFormatContext[nIndex], NULL);
        if (nRet >= 0) {
            g_nAudioIndex[nIndex] = av_find_best_stream(pFormatContext[nIndex], AVMEDIA_TYPE_AUDIO, -1, -1, NULL, 0);
            if (g_nAudioIndex[nIndex] >= 0) {
                g_pStream[nIndex] = pFormatContext[nIndex]->streams[g_nAudioIndex[nIndex]];

                AVCodecID nCodecID = g_pStream[nIndex]->codecpar->codec_id;

                const AVCodec* pCodec = avcodec_find_decoder(nCodecID);
                if (pCodec) {
                    g_pCodecContext[nIndex] = avcodec_alloc_context3(pCodec);

                    nRet = avcodec_parameters_to_context(g_pCodecContext[nIndex], g_pStream[nIndex]->codecpar);
                    if (nRet >= 0) {
                        nRet = avcodec_open2(g_pCodecContext[nIndex], pCodec, NULL);
                        if (nRet == 0) {
                            return true;
                        }
                    }
                }
            }
        } 
    }
    return false;
}

void Uninit(int nIndex)
{
    avcodec_close(g_pCodecContext[nIndex]);

    avcodec_free_context(&g_pCodecContext[nIndex]);

    avformat_close_input(&pFormatContext[nIndex]);
    avformat_free_context(pFormatContext[nIndex]);
}

void _WriteFile(int nIndex, FILE* pFile)
{
    AVPacket* pPacket = av_packet_alloc();
    if (pPacket) {
        while (true) {
            int nRet = av_read_frame(pFormatContext[nIndex], pPacket);
            if (nRet < 0) {
                break;
            }

            if (pPacket->stream_index == g_nAudioIndex[nIndex]) {
                fwrite(pPacket->data, 1, pPacket->size, pFile); // AVPacket已经是一个完整的包,包括aac 数据头和aac 数据块
                av_packet_unref(pPacket); // 释放buffer
            }
        }

        av_packet_free(&pPacket);
    }
}

int main(int argc, char** argv)
{
    Init(0, "D:\\123.aac");
    Init(1, "D:\\234.aac");

    FILE* pFile = fopen("d:\\1.aac", "wb");
    _WriteFile(0, pFile);
    _WriteFile(1, pFile);
    fclose(pFile);

    Uninit(0);
    Uninit(1);
    return 0;
}

合并后,用网易云音乐app打开,正常播放,时间轴正常。

相关推荐
j7~8 分钟前
【Linux】基础IO超万字解析(文件描述符)(2)
linux·运维·服务器·c++·file·重定向·文件描述
lingzhilab10 分钟前
零知派ESP32——TCS3200高精度RGB颜色识别系统教程
c++·mfc
蜡笔小马20 分钟前
10.C++设计模式-代理模式
c++·设计模式·代理模式
郝学胜-神的一滴22 分钟前
CMake 010 :一步到位链接静态库
开发语言·c++·qt·程序人生·系统架构·cmake
小则又沐风a26 分钟前
C++继承
开发语言·c++
雪度娃娃30 分钟前
转向现代C++——在创建对象时注意区分()和{}
开发语言·c++
Tisfy33 分钟前
VSCode Docker(Code Server)首次调试C++长时间下载debuginfo问题
c++·vscode·docker
读书札记202240 分钟前
C++ switch..case语句中变量跨域问题探讨及解决方法
开发语言·c++
努力努力再努力wz1 小时前
【Redis入门系列】Redis基础命令详解:从客户端连接到数据读写、key 管理与过期机制
c语言·开发语言·数据结构·数据库·c++·redis·缓存
Peter·Pan爱编程1 小时前
输入输出:iostream 为什么不是 printf 的替代品
c++·输入输出·c++基础·iostream