FFMPEG:如何通过重新编码将编码的媒体数据从一个容器中列入另一个容器?

StackOverflow https://stackoverflow.com/questions/4144033

因此:例如:我有file.mp3,我知道我所需的格式可以通过视频(例如FLV)播放声音(例如FLV),因此如何使用MP3容器中的FFMPEG将编码的MP3数据放入FLV中(在哪里可以在哪里获取文章/代码示例这)?

我的意思是不是来自CMD,而是从C ++使用FFMPEG作为库。 (请参阅标签)

有帮助吗?

解决方案

这是将.mp3文件转换为.flv(没有任何视频数据)的命令。

ffmpeg -i test.mp3 -ab 32k -acodec libmp3lame -AC 1 -AR 44100音频.flv。

您可以从程序中执行此命令。

如果您需要有关如何安装和使用FFMPEG的帮助,则可以访问他们的网站:

http://ffmpeg.org

谢谢,

马哈茂德

其他提示

您是否考虑过仅从C ++的Popen() / System()调用中运行FFMPEG?

这比设置FFMPEG库要容易得多,它使多线程变得琐碎(在示例中并不是真正的问题),并使您摆脱了任何LGPL链接和DLL-HELL问题。

这是您想做的:

AVFormatContext *ptrFormatContext;
int i, videoStream, audioStream;
AVCodecContext *ptrCodecCtxt;
AVCodec *ptrCodec;
AVFrame *ptrFrame;
AVPacket ptrPacket;
int frameFinished;
float aspect_ratio;

AVCodecContext  *aCodecCtx;
AVCodec         *aCodec;

AVCodecContext  *aTargetCodecCtxt;
AVCodecContext  *vTargetCodecCtxt;
AVCodec         *aTargetCodec;
AVCodec         *vTargetCodec;
AVSampleFormat  ptrSampleFormats[2] = {AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32};



audioStream = videoStream = -1;

av_register_all();
avcodec_register_all();

ptrFormatContext = avformat_alloc_context();

if(avformat_open_input(&ptrFormatContext, filename, NULL, NULL) != 0 )
{
    qDebug("Error opening the input");
    exit(-1);
}
if(av_find_stream_info( ptrFormatContext) < 0)
{
    qDebug("Could not find any stream info");
    exit(-2);
}
dump_format(ptrFormatContext, 0, filename, (int) NULL);

for(i=0; i<ptrFormatContext->nb_streams; i++)
{
    switch(ptrFormatContext->streams[i]->codec->codec_type)
    {
    case AVMEDIA_TYPE_VIDEO:
    {
        if(videoStream < 0) videoStream = i;
        break;
    }
    case AVMEDIA_TYPE_AUDIO:
    {
        if(audioStream < 0) audioStream = i;
    }
    }
}
if(audioStream == -1)
{
    qDebug("Could not find any audio stream");
    exit(-3);
}
if(videoStream == -1)
{
    qDebug("Could not find any video stream");
    exit(-4);
}

aCodecCtx = ptrFormatContext->streams[audioStream]->codec;
if( (aCodec = avcodec_find_decoder(aCodecCtx->codec_id)) == NULL)
{
    qDebug("Could not find the audio decoder");
    exit(-5);
}
if( (avcodec_open(aCodecCtx, aCodec)) != 0 )
{
    qDebug("Could not open the audio decoder");
    exit(-6);
}

ptrCodecCtxt = ptrFormatContext->streams[videoStream]->codec;
if( (ptrCodec = avcodec_find_decoder(ptrCodecCtxt->codec_id)) == NULL )
{
    qDebug("Could not find the video decoder");
    exit(-7);
}
if((avcodec_open(ptrCodecCtxt, ptrCodec)) != 0)
{
    qDebug("Could not find any video stream");
    exit(-8);
}

然后,其他一些东西,如果您不想重新编码,则大多是无关紧要的...

ptrFrame = avcodec_alloc_frame();

while(av_read_frame(ptrFormatContext,&ptrPacket) >= 0)
{
    if(ptrPacket.stream_index == videoStream)
    {
       //do stuff with the package, for eg transcribe it into another output stream..

    }
    else if (ptrPacket.stream_index == audioStream)
    {
       //do stuff with the package, for eg transcribe it into another output stream..
    }
}

希望这很有帮助。但是,该代码只是摘录,不会自行起作用,但它将帮助您获得这个想法。

ffmpeg -i file.mp3 -acodec copy output.flv
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top