FFMPEG视频缩略图

时间:2018-07-13 10:13:31

标签: android ffmpeg android-ndk android-ffmpeg

我正在尝试使用ffmpeg(v3.4)从视频中提取缩略图以获取视频缩略图,此代码在大多数视频文件中都能很好地工作。

但在sws_getContext函数的某些视频上崩溃 请帮忙。谢谢。任何帮助将不胜感激。

const int TARGET_IMAGE_FORMAT = AV_PIX_FMT_RGBA;
    const int TARGET_IMAGE_CODEC = AV_CODEC_ID_PNG;

    int stream_component_open(State *s, int stream_index) 
{
        AVFormatContext *pFormatCtx = s->pFormatCtx;
        AVCodecContext *codecCtx;
        AVCodec *codec;
        if (stream_index < 0 || stream_index >= pFormatCtx->nb_streams) {
            return FAILURE;
        }
        codecCtx = pFormatCtx->streams[stream_index]->codec;
        codec = avcodec_find_decoder(codecCtx->codec_id);
        if (codec == NULL) {
            return FAILURE;
        }
        if (!codec || (avcodec_open2(codecCtx, codec, NULL) < 0)) {
            return FAILURE;
        }
        switch(codecCtx->codec_type) {

            case AVMEDIA_TYPE_VIDEO:
                s->video_stream = stream_index;
                s->video_st = pFormatCtx->streams[stream_index];
                AVCodec *targetCodec = avcodec_find_encoder(TARGET_IMAGE_CODEC);
                if (!targetCodec) {
                    return FAILURE;
                }
                s->codecCtx = avcodec_alloc_context3(targetCodec);
                if (!s->codecCtx) {
                    return FAILURE;
                }
                s->codecCtx->bit_rate = s->video_st->codec->bit_rate;
                s->codecCtx->width = s->video_st->codec->width;
                s->codecCtx->height = s->video_st->codec->height;
                s->codecCtx->pix_fmt = TARGET_IMAGE_FORMAT;
                s->codecCtx->codec_type = AVMEDIA_TYPE_VIDEO;
                s->codecCtx->time_base.num = s->video_st->codec->time_base.num;
                s->codecCtx->time_base.den = s->video_st->codec->time_base.den;

                if (!targetCodec || avcodec_open2(s->codecCtx, targetCodec, NULL) < 0) {
                    return FAILURE;
                }
    __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, "CRASH START");
                s->sws_ctx = sws_getContext(s->video_st->codec->width,
                        s->video_st->codec->height,
                        s->video_st->codec->pix_fmt,
                        s->video_st->codec->width,
                        s->video_st->codec->height,
                        TARGET_IMAGE_FORMAT,
                        SWS_BILINEAR,
                        NULL,
                        NULL,
                        NULL);
                __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, "THIS WONT COME");
                break;
            default:
                break;
        }
        return SUCCESS;
    }

1 个答案:

答案 0 :(得分:1)

添加

if(s->video_st->codec->pix_fmt==-1)
                s->video_st->codec->pix_fmt=0;

在sws_getContext调用ffmpeg_3.4之前