I can\'t get the ffprobe package to work in Python 3.6. I installed it using pip, but when I type import ffprobe
it says
Traceback (most recent
Use this ffprobe package instead for Python3. Works for me: pip install ffprobe-python
The solution is that the ffprobe package only works with Python 2.
In Python 3 the import statement would need to be from .ffprobe ...
, but just changing that is not sufficient as there are other lines that only work in Python 2 as well.
Thanks to Rawing.