gpt4 book ai didi

c++ - 使用 FFmpeg SDK 将 .flv 转换为 mp3 的问题

转载 作者:行者123 更新时间:2023-12-04 23:30:30 25 4
gpt4 key购买 nike

我正在使用 FFmpeg SDK 以编程方式将视频转换为 mp3。

我以这种方式阅读视频的音频帧:

while(av_read_frame(pFromCtx, &pkt) >= 0) 
{
if(pkt.stream_index == audioStreamIndex)
{
avcodec_get_frame_defaults(frame);
got_frame = 0;
ret = avcodec_decode_audio4(pCodecCtx, frame, &got_frame, &pkt);
if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Error decoding audio frame.\n");
continue;
}

if(got_frame)
{
// Write the decoded audio frame
write_audio_frame(pToCtx, pToCtx->streams[pToCtx->nb_streams-1], frame);
}
}
av_free_packet(&pkt);
}

从输入视频文件中解码音频工作正常。当我尝试对 mp3 帧进行编码时会出现问题:
static void write_audio_frame(AVFormatContext *oc, AVStream *st, AVFrame *frame)
{
AVCodecContext *enc = st->codec;
AVPacket pkt;
int got_packet = 0;
int ret = 0;
av_init_packet(&pkt);
pkt.data = NULL;
pkt.size = 0;

ret = avcodec_encode_audio2(enc, &pkt, frame, &got_packet);

if (ret < 0) {
// PROBLEM
fprintf(stderr, "Error encoding audio frame. \n");
exit(1);
}
}

我得到以下控制台输出:
[libmp3lame] inadequate AVFrame plane padding

唯一发生在 .flv 文件中的代码适用于 .mp4 文件。任何线索错误消息的含义是什么?

谢谢

最佳答案

包含错误信息的源代码在这里:http://ffmpeg.org/doxygen/trunk/libmp3lame_8c-source.html .相关消息来源说:

if (frame->linesize[0] < 4 * FFALIGN(frame->nb_samples, 8)) {
av_log(avctx, AV_LOG_ERROR, "inadequate AVFrame plane padding\n");
return AVERROR(EINVAL);
}

FFALIGN 定义为
#define FFALIGN (x,a)(((x)+(a)-1)&~((a)-1))

关于c++ - 使用 FFmpeg SDK 将 .flv 转换为 mp3 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16528145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com