Open JackyWang2001 opened 2 years ago
ffprobe
I got the same problem, have you solved the error?
As I know for now, checking ffmpeg
in Python helps: open a Python console and type
> import ffmpeg
> ffmpeg.probe
If ffmpeg
is installed correctly for Python, it will show something like <function probe at 0x7f1bd4f440e0>
instead of attribute error
. If there is an attribute error
, one way to try is pip install ffmpeg-python
.
However, it is weird for me that I had two conda environments which had the same versions of ffmpeg: one works but another one does not.
encountered this error as well. the way i fixed was
Hi, thanks for this convenient and wonderful tool! I noticed that during processing, some videos are getting the ffprobe error. The sample terminal output is like
I am running the code on Ubuntu20.04 and my ffprobe version is 4.2.2. Do you have any ideas about how this error occurs? Thanks!