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
- JSON
- SSH
- Numpy
- OpenCV
- 프로그래머스
- pip
- ubuntu
- 채보
- paramiko
- error
- pandas
- Visual Studio
- YOLO
- Selenium
- windows forms
- label
- VS Code
- Python
- Docker
- Linux
- 오류
- C#
- 명령어
- pytorch
- C++
- LIST
- 기타 연주
- 핑거스타일
- C
- mysql
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