'New File' 아이콘을 클릭하고 파일 이름을 'movie.py'로 생성한 후, 아래의 코드를 입력한다. import cv2 CHARS = ' .,-~:;=!*#%@' # 특수문자 13가지 nw = 100 cap = cv2.VideoCapture('1.mp4') # 1.mp4 동영상 파일 불러오기 print("\x1b[2J", end='') while cap.isOpened(): ret, img = cap.read() if not ret: break img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) # 불러온 이미지 파일을 흑백으로 변환 h, w = img.shape nh = int(h / w * nw) img = cv2.resize(img, (nw * 2, nh)) # ..