We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I can get pkt_pos value in javaCV 1.4.4, the code like below:
Frame videoFrame = grabber.grabImage(); AVFrame o = (AVFrame) videoFrame.opaque; long position = o.pkt_pos();
but when i upgrade to 1.5 version, o.pkt_pos() return -1 so how can i get pkt_pos, thanks~
The text was updated successfully, but these errors were encountered:
I solved this question by myself you need set FFmpegFrameGrabber imageMode as RAW,and upgrade javaCV version to 1.5.5+ due to #1568
Sorry, something went wrong.
No branches or pull requests
I can get pkt_pos value in javaCV 1.4.4, the code like below:
Frame videoFrame = grabber.grabImage(); AVFrame o = (AVFrame) videoFrame.opaque; long position = o.pkt_pos();
but when i upgrade to 1.5 version, o.pkt_pos() return -1
so how can i get pkt_pos, thanks~
The text was updated successfully, but these errors were encountered: