今天就跟大家聊聊有关怎么在python中利用ffmpeg提取视频帧,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
python的五大特点:1.简单易学,开发程序时,专注的是解决问题,而不是搞明白语言本身。2.面向对象,与其他主要的语言如C++和Java相比, Python以一种非常强大又简单的方式实现面向对象编程。3.可移植性,Python程序无需修改就可以在各种平台上运行。4.解释性,Python语言写的程序不需要编译成二进制代码,可以直接从源代码运行程序。5.开源,Python是 FLOSS(自由/开放源码软件)之一。
环境准备
1、安装 FFmpeg
音/视频工具 FFmpeg 简易安装文档
2、安装 ffmpeg-python
pip3 install ffmpeg-python
3、【可选】安装 opencv-python
pip3 install opencv-python
4、【可选】安装 numpy
pip3 install numpy
视频帧提取
准备视频素材
抖音视频素材下载:https://anoyi.com/dy/top
基于视频帧数提取任意一帧
import ffmpeg import numpy import cv2 import sys import random def read_frame_as_jpeg(in_file, frame_num): """ 指定帧数读取任意帧 """ out, err = ( ffmpeg.input(in_file) .filter('select', 'gte(n,{})'.format(frame_num)) .output('pipe:', vframes=1, format='image2', vcodec='mjpeg') .run(capture_stdout=True) ) return out def get_video_info(in_file): """ 获取视频基本信息 """ try: probe = ffmpeg.probe(in_file) video_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'video'), None) if video_stream is None: print('No video stream found', file=sys.stderr) sys.exit(1) return video_stream except ffmpeg.Error as err: print(str(err.stderr, encoding='utf8')) sys.exit(1) if __name__ == '__main__': file_path = '/Users/admin/Downloads/拜无忧.mp4' video_info = get_video_info(file_path) total_frames = int(video_info['nb_frames']) print('总帧数:' + str(total_frames)) random_frame = random.randint(1, total_frames) print('随机帧:' + str(random_frame)) out = read_frame_as_jpeg(file_path, random_frame) image_array = numpy.asarray(bytearray(out), dtype="uint8") image = cv2.imdecode(image_array, cv2.IMREAD_COLOR) cv2.imshow('frame', image) cv2.waitKey()
基于时间提取任意一帧
import ffmpeg import numpy import cv2 import sys import random def read_frame_by_time(in_file, time): """ 指定时间节点读取任意帧 """ out, err = ( ffmpeg.input(in_file, ss=time) .output('pipe:', vframes=1, format='image2', vcodec='mjpeg') .run(capture_stdout=True) ) return out def get_video_info(in_file): """ 获取视频基本信息 """ try: probe = ffmpeg.probe(in_file) video_stream = next((stream for stream in probe['streams'] if stream['codec_type'] == 'video'), None) if video_stream is None: print('No video stream found', file=sys.stderr) sys.exit(1) return video_stream except ffmpeg.Error as err: print(str(err.stderr, encoding='utf8')) sys.exit(1) if __name__ == '__main__': file_path = '/Users/admin/Downloads/拜无忧.mp4' video_info = get_video_info(file_path) total_duration = video_info['duration'] print('总时间:' + total_duration + 's') random_time = random.randint(1, int(float(total_duration)) - 1) + random.random() print('随机时间:' + str(random_time) + 's') out = read_frame_by_time(file_path, random_time) image_array = numpy.asarray(bytearray(out), dtype="uint8") image = cv2.imdecode(image_array, cv2.IMREAD_COLOR) cv2.imshow('frame', image) cv2.waitKey()
看完上述内容,你们对怎么在python中利用ffmpeg提取视频帧有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。