AttributeError: module 'ffmpeg' has no attribute 'probe'
See original GitHub issueNot sure what’s happening here but on a fresh install of ffmpeg-python
I get a no attribute effor for probe when trying out https://github.com/kkroening/ffmpeg-python/blob/master/examples/tensorflow_stream.py
Steps taken
- removed all FFmpeg packages (
pip3 uninstall FFmpeg ffmpeg-python
) - reinstalled
ffmpeg-python
using pip3 - Tried installing via git on master
- Even tried to see what attributes were getting pulled in with an added
print(dir(FFmpeg)
and probe isn’t showing up
python environment
➜ brew info python3
python: stable 3.7.7 (bottled), HEAD
Interpreted, interactive, object-oriented programming language
https://www.python.org/
/usr/local/Cellar/python/3.7.7 (4,106 files, 62.9MB) *
Poured from bottle on 2020-05-11 at 14:57:55
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/python.rb
==> Dependencies
Build: pkg-config ✔
Required: gdbm ✔, openssl@1.1 ✔, readline ✔, sqlite ✔, xz ✔
==> Options
--HEAD
Install HEAD version
==> Caveats
Python has been installed as
/usr/local/bin/python3
Any ideas on how to get around this? Thanks in advance 😃
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:6
Top Results From Across the Web
ffmpeg.probe not working when run from python on windows 10
When I run it in cmd there is no issue, ffprobe -show_format -show_streams -of json E:\Archive\Peliculas\Clasicos\Casablanca.avi provides the ...
Read more >How to handle FFMPEG module missing probe inside docker?
In my docker file, the FFMPEG is being installed but it is missing the probe module. This is a common problem but one...
Read more >AttributeError: module 'ffmpeg' has no attribute 'input'
AttributeError : module 'ffmpeg' has no attribute 'input' ; 1. pip install ffmpeg-python ; 2. instead of ; 3. pip install ffmpeg.
Read more >AttributeError: module 'ffmpeg' has no attribute 'probe'への対応
下記を実行する。 $pip install ffmpeg-python.
Read more >关于ffmpeg报错module 'ffmpeg' has no attribute “probe“
关于ffmpeg报错module 'ffmpeg' has notattribute "probe"解决方案一:卸载所有ffmpeg,利用命令:sudo apt install ffmpeg。(这个我试过了,我的不行) ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
it didnt work when i did pip install ffmpeg, and it worked when i then did pip install ffmpeg-python
I am also facing the same error. Any luck?