0

我正在尝试使用 FFMPEG 库在 android 应用程序中对视频进行解复用。一切正常。但是当我尝试从 c 代码创建一个文件以在文件 fopen 中写入不同的流时返回 NULL。之后我无法继续。我的代码是

int ret , got_frame;
av_register_all();
LOGE("Registered formats");
err = av_open_input_file(&pFormatCtx, "file:/mnt/sdcard/input.mp4", NULL, 0, NULL);
LOGE("Called open file");
if(err!=0) {
    LOGE("Couldn't open file");
    return;
}
LOGE("Opened file");

if(av_find_stream_info(pFormatCtx)<0) {
    LOGE("Unable to get stream info");
    return;
}

videoStream = -1;
audioStream = -1;
for (i=0; i<pFormatCtx->nb_streams; i++) {
    if(pFormatCtx->streams[i]->codec->codec_type==CODEC_TYPE_VIDEO) {
        videoStream = i;
        if(audioStream != -1)
        break;
    }

    if(pFormatCtx->streams[i]->codec->codec_type==CODEC_TYPE_AUDIO) {
                audioStream = i;
                if(videoStream != -1)
                break;
            }

}
if(videoStream==-1) {
    LOGE("Unable to find video stream");
    return;
}
if(audioStream==-1) {
      LOGE("Unable to find audio stream");
      return;
  }

LOGI("Video stream is [%d] Audio stream [%d]", videoStream,audioStream);

pCodecCtx=pFormatCtx->streams[videoStream]->codec;

pCodecCtxAudio=pFormatCtx->streams[audioStream]->codec;

LOGI("Video size is [%d x %d]", pCodecCtx->width, pCodecCtx->height);

videoOut = fopen("file:/mnt/sdcard/videoout.mp4","wb");
if (videoOut == NULL) {
    LOGE("Unable to open output video");
    return;
   } 

我的代码有什么问题。我启用了应用程序写入外部存储的权限。我指定的路径也是正确的。帮我。

4

1 回答 1

1
videoOut = fopen("file:/mnt/sdcard/videoout.mp4","wb");

fopen()调用采用文件名,而不是 URI。拆下file:零件。(除非你真的想打开一个相对路径,它的第一个组件是一个名为“file:”的目录。)

errno记录失败后的值也是一个好主意。

于 2013-10-17T14:07:52.873 回答