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打开,正常播放,时间轴正常。

相关推荐
爱coding的橙子20 分钟前
蓝桥杯备赛 Day16 单调数据结构
数据结构·c++·算法·蓝桥杯
wuqingshun31415935 分钟前
经典算法 约数之和
数据结构·c++·算法·蓝桥杯
溟洵36 分钟前
【C/C++算法】蓝桥杯之递归算法(如何编写想出递归写法)
c语言·c++·算法
十五年专注C++开发1 小时前
QT 中的元对象系统(五):QMetaObject::invokeMethod的使用和实现原理
开发语言·数据结构·c++·qt·设计模式
熬夜学编程的小王2 小时前
【C++初阶篇】C++中c_str函数的全面解析
c语言·c++·c_str
一线灵2 小时前
跨平台游戏引擎 axmol-2.5.0 发布
c++·游戏引擎·wasm·axmol
渴望脱下狼皮的羊2 小时前
C++基础讲解
开发语言·c++·后端
同勉共进6 小时前
虚函数表里有什么?(二)——普通单继承下的虚函数表
c++·单继承·虚函数表·dynamic_cast·rtii
永恒迷星.by8 小时前
文件操作(c语言)
c语言·c++·算法·文件操作
Zhichao_9710 小时前
【UE5 C++课程系列笔记】32——读Json文件并解析
c++·ue5