-
Notifications
You must be signed in to change notification settings - Fork 168
New issue
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
Error getting frames #124
Comments
I got a similar error: vr = VideoReader(path, ctx=cpu(0)) I am on linux... |
hi, |
seems the author change the modification back... |
Hi, thanks for the answer. I upgraded to 0.5.2 and still getting the same errors. |
I got the same error on decord=0.5.2 on centos, I installed decord via pip RuntimeError: Failed to seek_accurate to frame 0 Does the author fixed it? @zhreshold |
1 similar comment
I got the same error on decord=0.5.2 on centos, I installed decord via pip RuntimeError: Failed to seek_accurate to frame 0 Does the author fixed it? @zhreshold |
Any update on how to resolve this?? |
My issue was resolved by setting |
I also found that setting I also found that this problem occurred when I was using GPU context, not sure if switching to CPU helped but I did that anyways. |
Hi,
I have an issue with a video that plays fine, but when i try to get some frames it rises the following error:
decord._ffi.base.DECORDError: [10:27:30] C:\projects\decord-distro\decord\src\video\video_reader.cc:641: Error getting frame at: 0 with total frames: 199
I'm using decord version 0.4.2 installed from pypi, python 3.6.6 on Windows 10. I can't upload the video for confidenciality reasons, but this is ffprobe diagnose info:
I'm using
VideoReader.get_batch()
function when i get this error. Also, when i useVideoReader.next()
function it returnsNone
. And when i useVideoReader.seek(0)
function i get:RuntimeError: Failed to seek to frame 0
and the same forVideoReader.seek_accurate()
. When i open the video file withVideReader.open()
function, i get a warning message:[11:52:27] C:\projects\decord-distro\decord\src\video\video_reader.cc:277: Failed to seek file to position: 0
I think is a similar problem to #83 issue, but i'm not getting the same error messages. How could i solve this?
Thanks in advance.
EDIT:
It seems to be the same problem as #100, however i dont understand how to solve it.
The text was updated successfully, but these errors were encountered: