-
Notifications
You must be signed in to change notification settings - Fork 884
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
Problem: Your platform doesn't suppport hardware accelerated AV1 decoding. Failed to get pixel format. #908
Comments
Same Issue +1 |
+1 |
Same Issue +1 |
+1 |
3 similar comments
+1 |
+1 |
+1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello, I have a problem when using opencv-python:
System information (version):
I just want to extract frame, but it got an unexpected error:

Here is my demo code:
`import cv2
video_path = "/home/marden/source/video/sample.mp4"
cap = cv2.VideoCapture(video_path)
if not cap.isOpened():
print("Error: Could not open video file.")
exit()
ret, frame = cap.read()
if not ret:
print("Error: Could not read frame.")
exit()
cv2.imwrite("frame.jpg", frame)
cap.release()`
The text was updated successfully, but these errors were encountered: