> From: Franck Bettinger <[email protected]> > Date: Wed, 16 Nov 2011 04:24:13 +0200 > Subject: Saving images to video > > Hello, > > Is there an example somewhere (preferably in c#) on how I can use MLT to save > images that are generated in memory (bitmaps) into a video file ? > I assume there's a consumer to use, but I haven't found how to feed with raw > data.
This is not a good usage of MLT unless it is MLT that is generating the images. If you just want to encode video from images in memory, then you should just use libavformat+libavcodec directly. Otherwise, the answer is to simply make your application be a producer using an existing producer like core/producer_noise.c as an example. However, you will not be able to do that in C# unless you improve upon its SWIG binding to support image buffers in C#. -- +-DRD-+ ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-novd2d _______________________________________________ Mlt-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mlt-devel
