Results 422 comments of Vadim Kantorov

In theory, it doesn't skip specifically B-frames, it just tries to extract the motion vector info if it's filled in by ffmpeg: https://github.com/vadimkantorov/mpegflow/blob/master/mpegflow.cpp#L155 Will be happy to take a patch...

Hi, It seems like a bug (and possibly FFmpeg's bug). Unfortunately, I won't have time to look at it till March 14 (ECCV deadline). Let me know if you could...

@ZhichenZhao I'll take a look this wekend to avoid doing clear on a statically allocated vector. @Al-Bas Could you identify which line / code piece causes the crash? Is it...

@Al-Bas Hi, Thanks, I received your e-mail with video. I'll take a look at it tomorrow. Meanwhile, does the problem go away if you replace the line https://github.com/vadimkantorov/mpegflow/blob/master/mpegflow.cpp#L366 to say...

@Al-Bas also, could you put a `fprintf(stderr, "dummy_pts: %lld, pts: %lld\n", dummy_pts, pts);` just before https://github.com/vadimkantorov/mpegflow/blob/master/mpegflow.cpp#L312? What does the output look like? Basically in that piece of code I'm adding...

@Al-Bas The dummies not hold any information, I introduced them in the first place to hide the complexity of video stream (missing frames, reordered frames) from the consumer. P.S. also,...

you'd have to poke yourself, yes :( you'd need to put in `.encode()` (or `.encode("utf-8")`, but i i'm not sure if anything there supports utf8) in right places to convert...

they are required, yes, you must use specific iv/salt that come the device metadata call

I think the course of action should be: go over the code, check for bytes / strings arguments. If needed, find the commit before python2->python3 refactoring to see what it...

Related discussion: - https://github.com/pytorch/pytorch/issues/68332 The main motivation is that object-oriented API design (statefulness, chaining, reloading from state dict, re-warming, level of complexity, ...) is hard to get right , but...