Re: [Gambas-user] saving picturebox as video

2009-10-22 Thread Ron_1st
On Thursday 22 October 2009, Steven James Drinnan wrote: I can't really think of a way directly in gambas. I would just use vlc to stream the file that the program creates. Any one else got any ideas? ffmpeg has also a feature to stream as a server Best regards, Ron_1st --

Re: [Gambas-user] saving picturebox as video

2009-10-21 Thread Steven James Drinnan
] saving picturebox as video To: mailing list for gambas users gambas-user@lists.sourceforge.net Message-ID: 1255764627.3635.9.ca...@mylaptop.myhome Content-Type: text/plain; charset=us-ascii You could use ffmpeg the cmd is ffmpeg -f image2 -i img%d.jpg /tmp/a.mpg This would make the files

Re: [Gambas-user] saving picturebox as video

2009-10-17 Thread Steven James Drinnan
You could use ffmpeg the cmd is ffmpeg -f image2 -i img%d.jpg /tmp/a.mpg This would make the files img1.jpg img2.jpg into a mpg video. But it would mean writing each image to a dir on the disc ie pic01.jpg pic02.jpg Then once you press a stop button then you run the cmd above. But

[Gambas-user] saving picturebox as video

2009-10-16 Thread Hartmut Eilers
Hi all, I'm currently writing an application where I have the output of a webcam in a picturebox. After modifying the picturebox with overlayed text and graphics, I want to save the contents of this picturebox in any video format. ( avi, mpg, ogg whatever ) How can that be done ? Can anybody give