Hello
I've got the camera module on raspberry. Is there any way to get the camera in /dev like /dev/video ? or making a pipe of raspivid to a file ?
Thanks
Re: Camera to /dev ?
There is no /dev/video driver yet, but you can pipe the output to stdout using -o - and pipe that to wherever you want.ouafnico wrote:Hello
I've got the camera module on raspberry. Is there any way to get the camera in /dev like /dev/video ? or making a pipe of raspivid to a file ?
Thanks
e.g.
raspivid -t 3000 -o -
Of course, if you just want to write a file
raspivid -t 3000 -o nameoffile.h264
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Re: Camera to /dev ?
Thanks,
I'm just searching how to get it working with motion program.
I'm just searching how to get it working with motion program.
Re: Camera to /dev ?
For motion search for mmal and or dozencrows ... He has written code to make the pi camera work well with motion...