您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關怎么在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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。