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 | 29 | 30 | 31 |
Tags
- C++
- 기타 연주
- Numpy
- ubuntu
- mysql
- OpenCV
- pytorch
- label
- Python
- 오류
- JSON
- C
- Linux
- SSH
- Selenium
- YOLO
- Docker
- C#
- pandas
- error
- VS Code
- 프로그래머스
- 핑거스타일
- Visual Studio
- LIST
- paramiko
- 채보
- 명령어
- pip
- windows forms
Archives
- Today
- Total
목록프레임 수 (1)
기계는 거짓말하지 않는다
Python 특정 프레임 수 이하 영상 데이터 삭제
아래 예시는 실제 프레임 수가 15개 이하인 MP4 파일을 삭제한다.opencv-python 라이브러리가 필요하며, 각 비디오 파일의 총 프레임 수를 확인하여 삭제한다.import osimport globimport cv2import timeimport datetime# 디렉터리 경로 변경 필요directory = '/path/directory'count = 0delete_count = 0start_time = time.time()mp4_files = glob.glob(os.path.join(directory, '*.mp4'))for file in mp4_files: try: count += 1 # 비디오 파일 읽기 video = cv2.VideoCapture(..
Python
2024. 6. 30. 15:52