我正在尝试在 Android 中开发一个录像机和播放应用程序。所以,我正在使用 ffmpeg 库,并且我已经编译了该库以在项目中使用。
我录制了一段视频,当我播放时,在某些设备中无法识别方向矩阵,所以我想用 ffmpeg 库开发一个 C 方法来执行此命令:
ffmpeg -i f.mp4 -vf "转置=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 库转置视频?