-
Notifications
You must be signed in to change notification settings - Fork 56
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
ImportError: cannot import name 'FFProbe' from partially initialized module 'ffprobe' #11
Comments
I was having the same issue when my script file was called ffprobe.py. Check your filename. |
how did you fix this problem? |
Do you have any file in your project called ffprobe.py? If you have, rename it with some other name. I had a file in my project with this name, and that was causing the issue, as the FFProbe class is in a ffprobe.py file. |
There's no filename to check: I ran into this error directly from the Python REPL (as you might have been able to tell from the |
This is most likely because of the use of the VERY old PyPi package ffprobe, instead of the current one for this project, ffprobe-python |
Using ffprobe-0.5-py3, |
Reviving since I'm having the same issue as well. I'm running something using pydub in a Jupyter notebook in a virtual python environment. Both ffmpeg and ffprobe are installed in my environment and located in site-packages. I tried the following at the top of the file:
However, when I do Anyone had a look at this thread since then? Stumped on this. |
I had the exact same problem. How did I fix it? Turns out i installed this function using: pip install ffprobe, which as RobMullen points out above installs the very old PyPi version. So I uninstalled that one: pip uninstall ffprobe |
Hi! I just installed your ffprobe wrapper directly from PyPi, but when I tried to use it (as per the example), I get the following error:
I am using ffprobe 0.5 w/ Python 3.9.0 on Windows 10 X64.
The text was updated successfully, but these errors were encountered: