超级批量视频自动化剪辑工具,效率提升500%

发布时间:2024-11-30 02:02

掌握基本的视频剪辑软件快捷键可以提升效率 #生活技巧# #数码产品使用技巧# #视频剪辑基础#

# coding: utf-8 import sys import os import time from openpyxl import Workbook from openpyxl import load_workbook import subprocess import tkinter as tk from tkinter import filedialog import ffmpy import json def mkdir(path):folder = os.path.exists(path)if not folder:os.makedirs(path)print("--- make new folder... ---") def rved_wdht(video_path):tmp = ''curdir = os.getcwd()try:all_parameter=subprocess.check_output([curdir+'\\bin\\ffprobe.exe','-i',video_path,'-print_format','json','-show_streams','-v','quiet'])all_parameter=all_parameter.decode('utf8')all_parameter=json.loads(all_parameter)tmp = all_parameter['streams'][0]return (tmp['width'],tmp['height'])except Exception:try:tmp = all_parameter['streams'][1]return (tmp['width'],tmp['height'])except Exception:raise Exception('***** 跳过视频 *****: 视频文件检查失败...: ',video_path)return tmp def chkcuttime(timestr):if (timestr == 'None'):cptime = 0 - 99return cptimeelse:cpos = timestr.rfind(',')if (cpos > 0):try:cpfst = int(float(timestr[0:cpos]))cpscd = int(float(timestr[cpos+1:len(timestr)]))if ((cpscd < 0) or (cpscd > 59)):cptime = 0 - 1elif ((cpfst < 0) or (cpfst > 59)):cptime = 0 - 1else:cptime = 60*cpfst+cpscdreturn cptimeexcept Exception:cptime = 0 - 1return cptimeelse:try:cptime = int(float(timestr))if ((cptime < 0) or (cptime > 59)):cptime = 0 - 1return cptimeelse:return cptimeexcept Exception:cptime = 0 - 1return cptime logow = 240 logoh = 60 logos = 20 root = tk.Tk() root.withdraw() curdir = os.getcwd() fpath = filedialog.askopenfilename() idx = fpath.rfind('/') mp4dir = fpath[0:idx] if (os.path.exists(mp4dir) == False):raise Exception('***** 加载错误 *****: 文件打开失败...: '+fpath) newmp4dir = mp4dir+'\\newmp4s' mkdir(newmp4dir) try:workbook = load_workbook(filename=fpath)sheet_names = workbook.sheetnamesif (len(sheet_names) > 0):sheet1 = workbook[sheet_names[0]]else:raise Exception('***** 内容错误 *****: 文件表格无内容...: '+sheet_names) except Exception: raise Exception('***** 加载错误 *****: 文件打开失败...: '+fpath) if (sheet1.max_row < 2):raise Exception('***** 内容错误 *****: 文件内容为空...: '+str(sheet1.max_row)) #print('---------4---------'+str(sheet1.max_row)) for i in range(2, sheet1.max_row+1):lkname = str(sheet1.cell(i,1).value)lpos = lkname.find('(')vnames = lkname[lpos+2:len(lkname)-2]if (os.path.exists(vnames) == False):print('**0** 跳过视频 *****: 视频文件不存在...: '+vnames)continuevcut1a = str(sheet1.cell(i,2).value)vcut1b = str(sheet1.cell(i,3).value)vcut2a = str(sheet1.cell(i,4).value)vcut2b = str(sheet1.cell(i,5).value)vcut3a = str(sheet1.cell(i,6).value)vcut3b = str(sheet1.cell(i,7).value)vlogop = str(sheet1.cell(i,8).value)wd_ht = rved_wdht(vnames)if (wd_ht == ''):continueelse:vwidth = int(wd_ht[0])vheight = int(wd_ht[1])idx = vnames.rfind('/')#input mp4 file namennames = newmp4dir+vnames[idx:len(vnames)]#cut temp file namecnames = nnames[0:len(nnames)-4]flname = vnames[idx+1:len(vnames)]#print(vnames+'--'+vheads+'--'+vtails+'--'+vcutp1+'--'+vcutp2+'--'+str(vlogop))if (vlogop == 'None'):pa_logo = ' -acodec copy -vcodec copy'else:try:if (float(vlogop) == 1):xpos = logosypos = logospa_logo = ' -acodec copy -vf delogo='+str(xpos)+':'+str(ypos)+':'+str(logow)+':'+str(logoh)elif (float(vlogop) == 2):xpos = vwidth - 20 - logowypos = logospa_logo = ' -acodec copy -vf delogo='+str(xpos)+':'+str(ypos)+':'+str(logow)+':'+str(logoh)elif (float(vlogop) == 3):xpos = logosypos = vheight - 20 - logohpa_logo = ' -acodec copy -vf delogo='+str(xpos)+':'+str(ypos)+':'+str(logow)+':'+str(logoh)elif (float(vlogop) == 4):xpos = vwidth - 20 - logowypos = vheight - 20 - logohpa_logo = ' -acodec copy -vf delogo='+str(xpos)+':'+str(ypos)+':'+str(logow)+':'+str(logoh)else:pa_logo = ' -acodec copy -vcodec copy'except Exception:print('**0** 跳过视频: '+flname+'*****: Logo位置需为1/2/3/4..., '+vlogop)continue#value logical checkctime1a = chkcuttime(vcut1a)ctime1b = chkcuttime(vcut1b)ctime2a = chkcuttime(vcut2a)ctime2b = chkcuttime(vcut2b)ctime3a = chkcuttime(vcut3a)ctime3b = chkcuttime(vcut3b)param1 = ' 'param2 = ' 'param3 = ' 'if (ctime1a == 0 - 99):if (ctime1b == 0 - 99):param1 = ' 'elif (ctime1b < 0):print('**1** 跳过视频: '+flname+'*****: 时段1结束填写错误..., '+vcut1b)continueelse:param1 = ' -ss 0 -to '+str(ctime1b)elif (ctime1a < 0):print('**1** 跳过视频: '+flname+'*****: 时段1开始填写错误..., '+vcut1a)continueelif (ctime1b == 0 - 99):param2 = ' -ss '+str(ctime1a)elif (ctime1b < 0):print('**1** 跳过视频: '+flname+'*****: 时段1结束填写错误..., '+vcut1b)continueelif (ctime1a >= ctime1b):print('**1** 跳过视频: '+flname+'*****: 时段1开始和结束不合理..., '+vcut1a+'---'+vcut1b)continueelse:param1 = ' -ss '+str(ctime1a)+' -to '+str(ctime1b)if (ctime2a == 0 - 99):if (ctime2b == 0 - 99):param2 = ' 'elif (ctime2b < 0):print('**2** 跳过视频: '+flname+'*****: 时段2结束填写错误..., '+vcut2b)continueelse:param2 = ' -ss 0 -to '+str(ctime2b)elif (ctime2a < 0):print('**2** 跳过视频: '+flname+'*****: 时段2开始填写错误..., '+vcut2a)continueelif (ctime2b == 0 - 99):param2 = ' -ss '+str(ctime2a)elif (ctime2b < 0):print('**2** 跳过视频: '+flname+'*****: 时段2结束填写错误..., '+vcut2b)continueelif (ctime2a >= ctime2b):print('**2** 跳过视频: '+flname+'*****: 时段2开始和结束不合理..., '+vcut2a+'---'+vcut2b)continueelse:param2 = ' -ss '+str(ctime2a)+' -to '+str(ctime2b)if (ctime3a == 0 - 99):if (ctime3b == 0 - 99):param3 = ' 'elif (ctime3b < 0):print('**3** 跳过视频: '+flname+'*****: 时段3结束填写错误..., '+vcut3b)continueelse:param3 = ' -ss 0 -to '+str(ctime3b)elif (ctime3a < 0):print('**3** 跳过视频: '+flname+'*****: 时段3开始填写错误..., '+vcut3a)continueelif (ctime3b == 0 - 99):param3 = ' -ss '+str(ctime3a)elif (ctime3b < 0):print('**3** 跳过视频: '+flname+'*****: 时段3结束填写错误..., '+vcut3b)continueelif (ctime3a >= ctime3b):print('**3** 跳过视频: '+flname+'*****: 时段3开始和结束不合理..., '+vcut3a+'---'+vcut3b)continueelse:param3 = ' -ss '+str(ctime3a)+' -to '+str(ctime3b)print('**g** 处理视频-'+str(i)+'*****: '+flname+' '+str(time.asctime(time.localtime(time.time()))))if (len(param1) > 3):param1 = param1+pa_logoif (os.path.isfile(cnames+'-1.mp4') == False) :#try:#ff = ffmpy.FFmpeg(inputs={vnames: None}, outputs={cnames+'-1.mp4': param1})#print(ff.cmd)#out,err = ff.run(stdout=subprocess.PIPE, stderr=subprocess.PIPE)#print(out+'--------'+err)obj = subprocess.Popen(curdir+'\\bin\\ffmpeg.exe -i '+vnames+param1+' '+cnames+'-1.mp4', stdout=subprocess.PIPE, stderr=subprocess.PIPE)out,err = obj.communicate()if (obj.returncode != 0):print('--1-- 剪切视频: '+flname+'-----: 时段1剪切处理失败...')continueif (len(param2) > 3):param2 = param2+pa_logoif (os.path.isfile(cnames+'-2.mp4') == False) :#try:#ff = ffmpy.FFmpeg(inputs={vnames: None}, outputs={cnames+'-2.mp4': param2})#print(ff.cmd)#out,err = ff.run(stdout=subprocess.PIPE, stderr=subprocess.PIPE)

网址:超级批量视频自动化剪辑工具,效率提升500% https://www.yuejiaxmz.com/news/view/318791

相关内容

14个免费的AI视频剪辑软件,智能自动编辑和创作视频
视频剪辑
福昕视频剪辑
我国视频剪辑软件行业现状及竞争:短视频带火剪辑工具 市场加速内卷
视频剪辑大师app 2020
视频剪辑大全
七卡猫|2024抖音视频、图文批量发布上传工具,为你带来高效的工作效率推荐
剪辑视频怎么快速入手?7个剪辑技巧很实用!
剪辑视频怎么快速入手?7个剪辑技巧很实用
简单的视频剪辑教程:使用win10自带的工具剪切和合并视频

随便看看