例如:我有 file.mp3,我知道我想要的格式可以播放没有视频的声音(例如 FLV),所以如何使用 ffmpeg 从 mp3 容器将编码的 mp3 数据放入 flv(在哪里获取文章/代码示例这)?
我的意思不是来自 cmd,而是来自使用 ffmpeg 作为库的 C++。(见标签)
例如:我有 file.mp3,我知道我想要的格式可以播放没有视频的声音(例如 FLV),所以如何使用 ffmpeg 从 mp3 容器将编码的 mp3 数据放入 flv(在哪里获取文章/代码示例这)?
我的意思不是来自 cmd,而是来自使用 ffmpeg 作为库的 C++。(见标签)
这是将 .mp3 文件转换为 .flv(没有任何视频数据)的命令。
ffmpeg -i test.mp3 -ab 32k -acodec libmp3lame -ac 1 -ar 44100 audio.flv。
您可以从您的程序中执行此命令。
如果您需要有关如何安装和使用 ffmpeg 的帮助,您可以访问他们的网站:
谢谢,
马哈茂德
ffmpeg -i file.mp3 -acodec copy output.flv
您是否考虑过从 c++ 的 popen() / system() 调用中运行 ffmpeg?
它比设置 ffmpeg 库要容易得多,它使多线程变得微不足道(在示例中并不是真正的问题),并使您摆脱任何 LGPL 链接和 dll 地狱问题。
这是您想要执行的操作:
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..
}
}
希望这会有所帮助。然而,代码只是一个摘录,不能单独工作,但它会帮助你理解这个想法。