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
import ffprobe
Traceback (most recent
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.
from .ffprobe ...
Thanks to Rawing.