0

Androidでビデオレコーダーと再生アプリを開発しようとしています。そのため、私は ffmpeg ライブラリを使用しており、プロジェクトで使用するライブラリをコンパイルしました。

ビデオを録画し、再生すると、一部のデバイスでは方向マトリックスが認識されないため、ffmpeg ライブラリを使用して、この順序を実行する C メソッドを開発したいと考えています。

ffmpeg -i f.mp4 -vf "transpose=1" -r 24 -sameq f2.mp4"

このドキュメントを見つけましたが、AVFilter および AVFilterContext クラスを使用しないため、役に立ちません。

http://dranger.com/ffmpeg/tutorial01.html

http://cekirdek.pardus.org.tr/~ismail/ffmpeg-docs/structAVFilterContext.html

http://ffmpeg.org/doxygen/trunk/api-example_8c-source.html

今、私はオープニングとクロージングのビデオファイルしか持っていません

ここに私のコード:

/*open the video file*/
if ((lError = av_open_input_file(&gFormatCtx, gFileName, NULL, 0, NULL)) !=0 ) {
    LOGE(1, "Error open video file: %d", lError);
    return; //open file failed
}
/*retrieve stream information*/
if ((lError = av_find_stream_info(gFormatCtx)) < 0) {
    LOGE(1, "Error find stream information: %d", lError);
    return;
} 
/*find the video stream and its decoder*/
gVideoStreamIndex = av_find_best_stream(gFormatCtx, AVMEDIA_TYPE_VIDEO, -1, -1, &lVideoCodec, 0);
if (gVideoStreamIndex == AVERROR_STREAM_NOT_FOUND) {
    LOGE(1, "Error: cannot find a video stream");
    return;
} else {
LOGI(10, "video codec: %s", lVideoCodec->name);
}
if (gVideoStreamIndex == AVERROR_DECODER_NOT_FOUND) {
    LOGE(1, "Error: video stream found, but no decoder is found!");
    return;
}   
/*open the codec*/
gVideoCodecCtx = gFormatCtx->streams[gVideoStreamIndex]->codec;
LOGI(10, "open codec: (%d, %d)", gVideoCodecCtx->height, gVideoCodecCtx->width);
#ifdef SELECTIVE_DECODING
gVideoCodecCtx->allow_selective_decoding = 1;
#endif
if (avcodec_open(gVideoCodecCtx, lVideoCodec) < 0) {
LOGE(1, "Error: cannot open the video codec!");
    return;
}
LOGI(10, "get video info ends");

ffmpeg ライブラリを使用してビデオを転置するにはどうすればよいですか?

4

1 に答える 1

0

FFmpeg デコード カスタマー I/O の使用方法

AVCodec *pCodec;
avcodec_register_all();
// Register all formats and codecs
av_register_all();

//av_init_packet(&packet);
if(avformat_network_init()!=0){
    goto initError; // Couldn't init new work
}
// Open video file

pFormatCtx = avformat_alloc_context();
printf("==========>>%p %lu\n", buff,sizeof(buff));
pFormatCtx->pb=av_malloc(buff_size);//pFormatCtx->pb=av_alloc_put_byte(buff,buff_size,0,NULL,NULL,NULL,NULL);
pFormatCtx->pb=avio_alloc_context(buff,buff_size,0,NULL,NULL,NULL,NULL);

pFormatCtx->iformat=av_find_input_format("h264");
pFormatCtx->flags = AVFMT_FLAG_CUSTOM_IO;
pFormatCtx->iformat->flags=AVFMT_NOFILE;

// Retrieve stream information
 if(avformat_find_stream_info(pFormatCtx,NULL)<0){
        goto initError; // Couldn't find stream information
}
 streamNo=-1;
// Find the first video stream
if ((streamNo =  av_find_best_stream(pFormatCtx,AVMEDIA_TYPE_VIDEO, -1, -1, &pCodec, 0)) < 0)
{
    av_log(NULL, AV_LOG_ERROR, "Cannot find a video stream in the input file %d\n",streamNo);
    goto initError;
}

私は自分のバッファーからストリームを見つけることができませんが、streamNo は常に -1381258232 です。私のバッファーは無効です* buff int buff_size

于 2013-12-12T08:35:41.547 に答える