码迷,mamicode.com
首页 > 编程语言 > 详细

Python OpenCV 将摄像头/视频写入视频文件

时间:2018-07-31 11:05:47      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:else   waitkey   VID   列表   port   release   video   class   nbsp   

 FourCC就是一个四字节码,用来确定视频的编码格式。

可用的编码列表可以从fourcc.org查到。

# -*- coding: utf-8 -*-

import numpy as np
import cv2

cap = cv2.VideoCapture(0)

fourcc = cv2.VideoWriter_fourcc(*XVID)
out = cv2.VideoWriter(test.avi, fourcc, 20.0, (640, 480))

while cap.isOpened():
    ret, frame = cap.read()

    if ret == True:
        frame = cv2.flip(frame, 0)

        out.write(frame)

        cv2.imshow(frame, frame)

        if cv2.waitKey(1) & 0xff == ord(q):
            break
    else:
        break

cap.release()
out.release()
cv2.destroyAllWindows()

 

Python OpenCV 将摄像头/视频写入视频文件

标签:else   waitkey   VID   列表   port   release   video   class   nbsp   

原文地址:https://www.cnblogs.com/wbyixx/p/9393769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!