Python Video Player 파이썬 비디오 플레이어
Python Video Player 파이썬 비디오 플레이어 다음 두가지를 설치합니다.pip install PyQt5 pip install opencv-python 그 후 파일을 만듭니다.videoPlayer.py import sysimport cv2from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QVBoxLayout, QPushButton, QSlider, QStyle, QStyleOptionSliderfrom PyQt5.QtCore import Qt, QTimerfrom PyQt5.QtGui import QImage, QPixmapclass ClickableSlider(QSlider): def mousePressEvent(self, ..
Python WebP 파일 변환 + 16:9 비율로 사이즈 변환
Python WebP 파일 변환 + 16:9 비율로 사이즈 변환 두가지를 설치합니다. PyQt5 / Pillowpip install PyQt5 Pillow 파일을 만듭니다.webp_converter.py import sysimport osfrom concurrent.futures import ThreadPoolExecutorfrom PyQt5.QtWidgets import (QApplication, QWidget, QVBoxLayout, QHBoxLayout, QLabel, QPushButton, QFileDialog, QProgressBar, QComboBox)from PyQt5.QtCore import Qt, QThread, pyqtSigna..
Python Thumbnail 파이썬으로 동영상 썸네일 추출 프로그램 만들기
Python Thumbnail 파이썬으로 동영상 썸네일 추출 프로그램 만들기 아래 세가지를 설치해야합니다.pip install PyQt5pip install opencv-pythonpip install moviepy 그 후 파일을 하나 만듭니다. video_thumbnail_extractor.py import sysimport osfrom PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QVBoxLayout, QWidget, QProgressBar, QMessageBox, QScrollArea, QSlider, QHBoxLayoutfrom PyQt5.QtCore import Qt, QThread, pyqtSignalfrom PyQt5.QtGui..