On Tue, Mar 13, 2012 at 1:56 PM, Benjamin Bruheim <[email protected]> wrote: > Hi, > > Given a full mlt chain doing playback, what would be a good way to take > "snapshots" of the exact picture being shown by the consumer, either to disk > (as .png, .raw, etc) or directly to ram without interrupting playback? I > have tried some methods, but I am not entirely confident.
Not exactly sure what you mean by snapshots. Press a button and it saves the current frame as a still? If so, then you can listen to the consumer-frame-show event, add a reference to the frame, return from the event handler, get the image from the frame, save it, and then release the frame. > And while I am asking. There are a lot of shortcomings with the swig python > wrapper, and I wonder if there's an IDL of the API somewhere in the codebase > that could serve as a basis for generating headers with different tools. Any > ideas? No IDL available. One way to improve the Python binding is to simply dig in and give the swig interface file more attention. > Thanks for a great framework! > > \\ Benjamin -- +-DRD-+ ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ Mlt-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mlt-devel
