Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- C
- label
- 기타 연주
- 오류
- C++
- 채보
- ubuntu
- error
- Python
- LIST
- pip
- OpenCV
- JSON
- pytorch
- 핑거스타일
- Linux
- 컨테이너
- Visual Studio
- VS Code
- 프로그래머스
- mysql
- pandas
- paramiko
- YOLO
- SSH
- Selenium
- Numpy
- C#
- Docker
- windows forms
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python Module 'ffmpeg' has no attribute 'probe' 오류 본문
Module 'ffmpeg' has no attribute 'probe'
Python에서 ffprobe를 사용할 때 이런 오류를 보는 경우가 있다.
기본적으로 ffmpeg는 별개로 설치되어 있어야 한다.
그 후 Python의 pip를 이용하여 명령어를 사용할 수 있도록 module을 설치한다.
pip list를 확인하여 ffmpeg-python이 설치되어 있는지 확인한다.
python-ffmpeg가 아니다.
pip install ffmpeg-python
'Python' 카테고리의 다른 글
Python operator itemgetter, attrgetter (0) | 2023.04.15 |
---|---|
Python 순열 (Permutation) 구현 (0) | 2023.04.15 |
Python stacktrace 출력 traceback module (0) | 2023.04.09 |
Python pymysql cursor DB 값 변경 인식 불가 (0) | 2023.04.01 |
Python SSH Client 원격 연결 (Paramiko) (0) | 2023.02.24 |
Comments