Page 1 of 1

How to implement frame by frame?

Posted: 28 Jul 2009 16:10
by ekennedy
I've written a wrapper for libvlc.dll and have been able to implement nearly all of the functionality we need however frame by frame isn't in the API. I think in the QT code it appears:

Code: Select all

input_thread_t *p_input = THEMIM->getInput(); if( p_input ) var_SetVoid( p_input, "frame-next" );
Will this API be exposed in a future release?

Any suggestions for simulating frame by frame??

Thanks!

ed

Re: How to implement frame by frame?

Posted: 28 Jul 2009 16:11
by Jean-Baptiste Kempf
You should be able to var_SetVoid( p_input, "frame-next" ); if you have the input, no?

Re: How to implement frame by frame?

Posted: 28 Jul 2009 16:26
by ekennedy
That I can tell there is no access to input_thread_t exposed in libvlc.dll. ( Kinda hoping I'm wrong here!! :) )

Nor var_SetVoid..

Re: How to implement frame by frame?

Posted: 28 Jul 2009 17:12
by Jean-Baptiste Kempf
You are right. Fill a feature request.