Python3使用ffmpeg、opencv操作视频文件记录

 Python3使用ffmpeg、opencv操作音视频文件记录

 opencv


  pip install opencv-python

获取首帧
 

import cv2
def keyframe_test():
    vidcap = cv2.VideoCapture(r'F:\tools\ffmpeg\bin\time.mp4')
    success, image = vidcap.read()
    if success:
        cv2.imwrite("frame1.jpg", image)  # save frame as JPEG file
        cv2.imshow('frame', image)
        cv2.waitKey()

格式信息

def get_source_info_opencv(source_name):
    return_value = 0
    try:
        cap = cv2.VideoCapture(source_name)
        width = cap.get(cv2.CAP_PROP_FRAME_WIDTH )
        height = cap.get(cv2.CAP_PROP_FRAME_HEIGHT)
        fps = cap.get(cv2.CAP_PROP_FPS)
        num_frames = cap.get(cv2.CAP_PROP_FRAME_COUNT)
        print("width:{} \nheight:{} \nfps:{} \nnum_frames:{}".format(width, height, fps, num_frames))
    except (OSError, TypeError, ValueError, KeyError, SyntaxError) as e:
        print("init_source:{} error. {}\n".format(source_name, str(e)))
        return_value = -1
    return return_value

参数项

capture.get(0)   视频文件的当前位置(播放)以毫秒为单位
capture.get(1)   基于以0开始的被捕获或解码的帧索引
capture.get(2)   视频文件的相对位置(播放):0=电影开始,1=影片的结尾。
capture.get(3)   在视频流的帧的宽度
capture.get(4)   在视频流的帧的高度
capture.get(5)   帧速率
capture.get(6)   编解码的4字-字符代码
capture.get(7)   视频文件中的帧数
capture.get(8)   返回对象的格式
capture.get(9)   返回后端特定的值,该值指示当前捕获模式
capture.get(10)   图像的亮度(仅适用于照相机)
capture.get(11)   图像的对比度(仅适用于照相机)
capture.get(12)   图像的饱和度(仅适用于照相机)
capture.get(13)   色调图像(仅适用于照相机)
capture.get(14)   图像增益(仅适用于照相机)(Gain在摄影中表示白平衡提升)
capture.get(15)   曝光(仅适用于照相机)
capture.get(16)   指示是否应将图像转换为RGB布尔标志
capture.get(17)   × 暂时不支持
capture.get(18)   立体摄像机的矫正标注(目前只有DC1394 v.2.x后端支持这个功能)

 ffmpeg

主机需安装ffmpeg

 方式一
 pip install ffmpeg-python; ffmpeg
 Ubuntu机器上测试的时候获取不到数据

import ffmpeg

def get_source_info_ffmpeg(source_name):
    return_value = 0
    try:
        info = ffmpeg.probe(source_name, capture_stdout=True, capture_stderr=True)
        # print(info)
        # print("---------------------------------")
        vs = next(c for c in info['streams'] if c['codec_type'] == 'video')
        format_name = info['format']['format_name']
        codec_name = vs['codec_name']
        duration_ts = float(vs['duration_ts'])
        fps = vs['r_frame_rate']
        width = vs['width']
        height = vs['height']
        print("format_name:{} \ncodec_name:{} \nduration_ts:{} \nwidth:{} \nheight:{} \nfps:{}".format(format_name, codec_name, duration_ts, width, height, fps))
    except (OSError, TypeError, ValueError, KeyError, SyntaxError, Exception) as e:
        print("init_source:{} error. {}\n".format(source_name, str(e)))
        return_value = 0
    return return_value

方式二 使用进程调用
此方式成功获取到数据

import subprocess

def use_system_ffmpeg(source_name):

    ffmpeger = subprocess.Popen(
        f'ffprobe -show_streams {source_name}',
        shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr = subprocess.PIPE, encoding='utf-8')
    relog = ffmpeger.stdout.read()
    print('======',relog)
    info_list = relog.split('\n')
    frame_nums = 0
    frame_rate = 0
    for item in info_list:
        if item.startswith('r_frame_rate'):
            frame_rate = int(eval(item.split('=')[1]))
        if item.startswith('nb_frames'):
            frame_nums = int(item.split('=')[1])
            break
    print(frame_nums, frame_rate)
    return frame_nums,frame_rate

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值