python+opencv将图片转换为mp4、avi格式的视频

import cv2 as cv
import os

def image_to_video():
    file_path = 'de/test4/1/'  # 图片目录
    output = '4/de_1_1.mp4'  # 生成视频路径
    img_list = os.listdir(file_path)  # 生成图片目录下以图片名字为内容的列表
    height = 1080
    weight = 1920
    fps = 60
    # fourcc = cv.VideoWriter_fourcc('M', 'J', 'P', 'G') 用于avi格式的生成
    fourcc = cv.VideoWriter_fourcc(*'mp4v')  # 用于mp4格式的生成
    videowriter = cv.VideoWriter(output, fourcc, fps, (weight, height))  # 创建一个写入视频对象
    for img in img_list:
        path = file_path + img
        # print(path)
        frame = cv.imread(path)
        videowriter.write(frame)

    videowriter.release()

image_to_video()

多啰嗦一句,opencv是需要自己下载的,可以百度下都有答案

posted @ 2021-04-14 11:24  小Aer  阅读(113)  评论(0编辑  收藏  举报  来源