openh264
openh264 copied to clipboard
Extract motion vectors from h264 stream without actually decoding it.
Hii, Is it possible to just extract the motion vector data from a h264 encoded stream/frame without actually decoding the whole stream/frame.
Not yet such an API for this. You may do it in the source code according to your requirement.
Not yet such an API for this. You may do it in the source code according to your requirement.
- Is it possible to parse the h264 bitstream and get motion vectors from it.
- Or is it that to get the motion vectors from h264 bitstream , the bitstream needs to be at least partially decoded first.
@mohammedzakikochargi sure the decoder should do this and have the detailed data inside, but as traditional ones did, current decoder should do classic one-by-one steps to get the MV, without any shortcuts.