xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

資源簡介

Python - 截取指定幀數(shù)間隔指定大小的視頻,并保存圖片到指定位置; 詳細(xì)請查看https://blog.csdn.net/tanghong1996/article/details/88395372

資源截圖

代碼片段和文件信息

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

import?shutil
import?os
import?cv2

os.chdir(os.path.split(os.path.realpath(__file__))[0])
print(os.getcwd())

dirs_path?=?os.getcwd()?????????????????????????#?設(shè)置路徑
????
dirs?=?os.listdir(dirs_path)????????????????????#?獲取指定路徑下的文件
for?video_name?in?dirs:?????????????????????????????#?循環(huán)讀取路徑下的文件并篩選輸出
if?os.path.splitext(video_name)[1]?==?“.mp4“:???#?篩選mp4文件
print(video_name)????????????????????????????#?輸出所有的mp4文件
break

output_img_path?=?‘./output1/‘
if?not?os.path.exists(output_img_path):
????os.mkdir(output_img_path)
else:
????#?刪除原有目錄
????shutil.rmtree(output_img_path)
????#?創(chuàng)建一個新目錄
????os.mkdir(output_img_pat

評論

共有 條評論