我在Macbook上,正在尝试使用ffmpeg库从相机读取视频。该相机是10米长的USB水下相机。我正在通过称为ffmpeg-d的D绑定(bind)使用C API。
但是,在尝试打开输入时,我得到了:

[avfoundation @ 0x7fe0d2800000] Selected framerate (29.970030) is not supported by the device
[avfoundation @ 0x7fe0d2800000] Supported modes:
[avfoundation @ 0x7fe0d2800000]   160x120@[30.000030 30.000030]fps
[avfoundation @ 0x7fe0d2800000]   176x144@[30.000030 30.000030]fps
[avfoundation @ 0x7fe0d2800000]   320x240@[30.000030 30.000030]fps
[avfoundation @ 0x7fe0d2800000]   352x288@[30.000030 30.000030]fps
[avfoundation @ 0x7fe0d2800000]   640x480@[30.000030 30.000030]fps

那么我该如何避免这个问题呢?手动设置帧速率会是答案吗?如果是这样,我该怎么做?

这是一个非常简短的程序来复制我的问题。
import std.stdio;

import ffmpeg.libavdevice.avdevice;
import ffmpeg.libavcodec.avcodec;
import ffmpeg.libavformat.avformat;
import ffmpeg.libavfilter.avfilter;
import ffmpeg.libavutil.avutil;
import ffmpeg.libavutil.mem;
import ffmpeg.libavutil.pixfmt;
import ffmpeg.libswscale.swscale;

import std.string;

void main()
{
    av_register_all();
    avdevice_register_all();

    string           cameraSource        = "USB";

    AVCodecContext*  cameraCodecContext  = null;
    AVFormatContext* cameraFormatContext = avformat_alloc_context();
    AVCodec*         cameraCodec         = null;
    AVInputFormat*   cameraFormat        = av_find_input_format("avfoundation");
    AVFrame*         rawFrame = null, convertedFrame = null;

    if (avformat_open_input(&cameraFormatContext, cameraSource.toStringz, cameraFormat, null) != 0) return;
}

最佳答案

我完全没有使用D或使用的库的经验,但是我可以为您指出正确的方向。您应该将AVDictionary** options传递给 avformat_open_input



在我看来,该字典的结构几乎遵循命令行选项的一对一关系,因此您应在“framerate”键下添加值“30”。

关于c - 如何避免不受支持的帧频错误?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36397647/

10-10 10:58