ffmpeg:我如何从/ dev / video0接收并将原始图像存储在我的pi上

时间:2016-02-02 02:08:43

标签: ffmpeg

我正在使用连接USB相机的Raspberry Pi。

我试图从/dev/video0收到一个流。

#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h

int main() {

    AVFormatContext   *pFormatCtx = NULL;

    av_register_all();

    avdevice_register_all();

    AVInputFormat *inputFormat = av_find_input_format("v4l2");

    AVDictionary *options = NULL;

    av_dict_set(&options, "framerate", "25", 0);

    printf("%d\n",avformat_open_input(&pFormatCtx, "/dev/video0 ", inputFormat, &options));

    retrun 0;
}

我是对的吗?

如何将原始图像存储到我的Raspberry Pi?

0 个答案:

没有答案