我正在使用连接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?