Hello, I work for an installation with six usb webcam, i use pdp_canvas, it work fine. But in ubuntu i meet some pb for the opening of the different webcam. I work with different kind of webcam and it seemly work but i need to plug cam step by step. Often it crash pd. Maybe someone can help me for choosing the webcam. BETTER i want to use ip cam and i find some model for linux with mjpeg or jpeg motion compression. Can you give me some feedback on that kind of stuff i need also advice to get the video into pd thanks david
On Wed, Apr 09, 2008 at 09:15:12PM +0200, t'es in t'es bat wrote:
Hello, I work for an installation with six usb webcam, i use pdp_canvas, it work fine. But in ubuntu i meet some pb for the opening of the different webcam. I work with different kind of webcam and it seemly work but i need to plug cam step by step. Often it crash pd. Maybe someone can help me for choosing the webcam. BETTER i want to use ip cam and i find some model for linux with mjpeg or jpeg motion compression. Can you give me some feedback on that kind of stuff i need also advice to get the video into pd
I have Axis IP cam which produces mjpeg, from my pc i grab the wideo with wget into fifo, encoding it and cutting in parts with ffmpeg. Using parts of the video in pd. It works. problem comes when you need uninterrupted stream. Emptying buffer crashes installation. There are IP cams that produce mpeg4, 3gp (Vivotek), mp4, or other formats, but you would have to receive stream in pd and stream it from there again i guess.
|||Ctrl + Alt + Back|||
|||restart your view|||
Thanks for answer, .....but i hope to realize a stream, i need it for my concept, Anyone have a strategy to get the ip camera stream in mjpeg in pdip for pdp_canvas Or do i have to use another lib for that job????
I have Axis IP cam which produces mjpeg, from my pc i grab the wideo with wget into fifo, encoding it and cutting in parts with ffmpeg. Using parts of the video in pd. It works. problem comes when you need uninterrupted stream. Emptying buffer crashes installation. There are IP cams that produce mpeg4, 3gp (Vivotek), mp4, or other formats, but you would have to receive stream in pd and stream it from there again i guess.
CtrlAltBack
-- |||Ctrl + Alt + Back||| |||restart your view|||
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
ola,
let's see, does your ip cam delivers you a stream in the form of http://ip:port/something.someformat ?? where someformat = mp4, mpg, ogg ?
in that case, you can use that solution :
in a shell script :
rm /tmp/pipe
mknod /tmp/pipe p
mencoder -nosound -ovc raw -of rawvideo -vf format=rgb24,crop=320:240
http://ip:port/something.someformat -o /tmp/pipe
in pd :
pdp_rawin /tmp/pipe bitmap/rgb/320x240
suerte, sevy
t'es in t'es bat wrote:
Thanks for answer, .....but i hope to realize a stream, i need it for my concept, Anyone have a strategy to get the ip camera stream in mjpeg in pdip for pdp_canvas Or do i have to use another lib for that job????