import cv2
fourcc = cv2.VideoWriter_fourcc(*'avc1')
out = cv2.VideoWriter('test.mp4', fourcc , 60 , (640,640))
# Failed to load OpenH264 library: openh264-1.8.0-win64.dll
# Please check environment and/or download library: https://github.com/cisco/openh264/releases
python3 windows 에서
fourcc = cv2.VideoWriter_fourcc(*'avc1') 를 하려는 도중
Failed to load OpenH264 library: openh264-1.8.0-win64.dll
에러가 떴다.. ubuntu 에서는 문제가 없었는데 윈도우에서 빌드하니 라이브러리가 없는 모양이다.
https://github.com/cisco/openh264/releases 여기 링크로 가서 에러뜬 버전을 찾아서
C:\Windows\System32 에 넣어주면 된다.
'Python > OpenCV' 카테고리의 다른 글
[OpenCV] RTSP 주소 스트리밍 하기 (8) | 2020.03.31 |
---|