Brendan Duke
Brendan Duke
Hi aurooj, I believe the major part that needs changing is the C extension module initialization: https://github.com/dukebw/lintel/blob/8ba861ef5424890568583a64c11da9c6ec293fff/lintel/py_ext/lintelmodule.c#L492-L500 This can be converted by following the guide here: https://docs.python.org/2/extending/extending.html. Any other inconsistencies...
Sure. Let me know if I missed any files, please.
Hi there, this will get printed when the number of requested frames is greater than the number of frames that Lintel is able to decode: https://github.com/dukebw/lintel/blob/1fbb02b293f1ecce4de2ea780c77566afdc5e97b/lintel/core/video_decode.c#L250
Hi, have you installed FFmpeg on your system? If so, how, via package manager, or from source? The error you are getting is either because you haven't installed FFmpeg, or...
Hi there! In theory I think adding more features like this to Lintel would be great, but in practice I currently don't have time. If it's alright, let's leave this...
Hi Simon, Interesting, I am a bit puzzled about the Python OverflowError exception here. I will take a look at reproducing tonight.
Would it be possible to give the big-videos branch a try, please? I made a couple small changes to pass sizes as size_t instead of int.
Hi Simon, That is great, I'm glad that you found a solution anyway. And thank you for uploading the video -- I will leave this issue open and debug further...
Hi! I think respecting the number of frames in the video is a tricky business, for example due to placement of the keyframes, the seek can overshoot. But I can...
Hello again, I was wondering if you might be able to give the `seek-point-overshoot` branch a try (https://github.com/dukebw/lintel/tree/seek-point-overshoot). I changed the seeking in `loadvid` to work based on `AVStream.nb_frames`, rather...