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
Using av version 14.*, VideoReader init fails with
AttributeError: 'av.format.ContainerFormat' object has no attribute 'variable_fps'
Not a major problem as long as av < 14 (dependency lilsts were updated), but may have to be revisited in the future.
The text was updated successfully, but these errors were encountered:
PyAV-Org/PyAV#1741
Sorry, something went wrong.
It seems like variable_fps support was dropped by the libav library. One solution is to drop this check and remove these two lines:
daio/src/daio/video.py
Lines 29 to 30 in ea2d8d4
We are separately checking for mismatches between expected and actual pts anyway, so dropping this specific check might be acceptable
No branches or pull requests
Using av version 14.*, VideoReader init fails with
AttributeError: 'av.format.ContainerFormat' object has no attribute 'variable_fps'
Not a major problem as long as av < 14 (dependency lilsts were updated), but may have to be revisited in the future.
The text was updated successfully, but these errors were encountered: