기계는 거짓말하지 않는다

Python Module 'ffmpeg' has no attribute 'probe' 오류 본문

Python

Python Module 'ffmpeg' has no attribute 'probe' 오류

KillinTime 2023. 4. 9. 18:47
Module 'ffmpeg' has no attribute 'probe'

Python에서 ffprobe를 사용할 때 이런 오류를 보는 경우가 있다.

기본적으로 ffmpeg는 별개로 설치되어 있어야 한다.

그 후 Python의 pip를 이용하여 명령어를 사용할 수 있도록 module을 설치한다.

 

pip list를 확인하여 ffmpeg-python이 설치되어 있는지 확인한다.

python-ffmpeg가 아니다.

pip install ffmpeg-python
Comments