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_

Re: [Gambas-user] saving picturebox as video

2009-10-21 Thread Steven James Drinnan
m: Steven James Drinnan > >Subject: Re: [Gambas-user] saving picturebox as video > >To: mailing list for gambas users > >Message-ID: <1255764627.3635.9.ca...@mylaptop.myhome> > >Content-Type: text/plain; charset="us-ascii" > > > >You could use ff

Re: [Gambas-user] saving picturebox as video

2009-10-21 Thread Hartmut Eilers
:27 +0800 >From: Steven James Drinnan >Subject: Re: [Gambas-user] saving picturebox as video >To: mailing list for gambas users >Message-ID: <1255764627.3635.9.ca...@mylaptop.myhome> >Content-Type: text/plain; charset="us-ascii" > >You could use ffmpeg > >

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 wr