前提・実現したいこと
MacでVSCodeを利用し、動画再生を行う処理を実行すると、下記エラーメッセージと合わせて、別画面で「Pythonの問題レポート:Pythonが予期しない理由で終了しました。」という画面が表示されました。
なぜ、上手く処理ができないのか、別画面のような表示が出るのか。をお分かりの方がいれば、ご教示いただけますと幸いです。
発生している問題・エラーメッセージ
qt.qpa.plugin: Could not find the Qt platform plugin "cocoa" in "" This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. Abort trap: 6
該当のソースコード
Python
1import cv2 2import sys 3 4file_path = 'mov/IMG_2731.MOV' 5delay = 1 6window_name = 'frame' 7 8cap = cv2.VideoCapture(file_path) 9 10if not cap.isOpened(): 11 sys.exit() 12 13while True: 14 ret, frame = cap.read() 15 if ret: 16 cv2.imshow(window_name, frame) 17 if cv2.waitKey(delay) & 0xFF == ord('q'): 18 break 19 else: 20 cap.set(cv2.CAP_PROP_POS_FRAMES, 0) 21 22cv2.destroyWindow(window_name)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/10 02:49
2020/03/10 11:07
2020/03/10 11:26
2020/03/10 11:29
2020/03/10 11:57