강의

멘토링

커뮤니티

Inflearn Community Q&A

qgistg's profile image
qgistg

asked

Introduction to Python and Creating Various Automated Applications Using Web Crawling

Creating a GUI-based Youtube Multi-player (4) - PyQT5 Webview, File Download, Etc..

youtube 영상말구 로컬컴퓨터에 있는 mp4를 불러오기

Written on

·

263

0

youtube 영상말구 로컬컴퓨터에 있는 mp4를 불러오기는 어떻게 해야하나요?

웹-크롤링python

Answer 2

0

qgistg님의 프로필 이미지
qgistg
Questioner

답변해주신 코드는 이해가 됩니다.

그럼 youtube 영상은 webengine 위젯을 사용하는데

opencv 방식은 어떤 위젯과 연결해서 사용해야되는지 궁금하네요

연결하는 방법도 코드로 좀 알려주시면 안되나요?

0

niceman님의 프로필 이미지
niceman
Instructor

다양한 방법이 있으나, 아래 예제 참고하세요. (opencv 이용)

9

If you just want to play an mp4 video, then this opencv program will help you to do that.

import cv2

cap = cv2.VideoCapture("v2.mp4")
ret, frame = cap.read()
while(1):
   ret, frame = cap.read()
   cv2.imshow('frame',frame)
   if cv2.waitKey(1) & 0xFF == ord('q') or ret==False :
       cap.release()
       cv2.destroyAllWindows()
       break
   cv2.imshow('frame',frame)

qgistg's profile image
qgistg

asked

Ask a question