使用Python的moviepy第三方库剪辑视频
前言
使用moviepy库按照指定格式进行剪辑视频。
一、使用环境
- win10
- python==3.7.2
- moviepy==1.0.3
二、使用步骤
1.安装moviepy
参考官方文档
2.引入库
from moviepy.editor import VideoFileClip
import os, re
3.完整代码
from moviepy.editor import VideoFileClip
import os, re
def Clip_Video(videoFilePath: str, videoTimeStr: str, videoSavePath: str) -> bool or str:
"""
1、剪辑视频
2、10:10-20:20(输出这个区间的视频)
3、10:10>(此时间直到结尾)
4、<20:20(开头直到此时间)
:param videoFilePath: 源视频文件路径
:param videoTimeStr: 剪辑时间格式
:param videoSavePath: 剪辑好的视频保存文件路径
:return:
"""
# 读取视频
video = VideoFileClip(videoFilePath)
# 开始时间 结束时间
startTimeSendStr, endTimeSendStr = '', ''
# 10:10-20:20(输出这个区间的视频)
if '-' in videoTimeStr:
# 分离开始时间和结束时间
timeTuple = re.findall('(.*)-(.*)', videoTimeStr)[0]
# 遍历每个时间
for j in timeTuple:
# 获取时与分
timeTuple_ = re.findall('(.*):(.*)', j)[0]
# 1小时以下
if len(timeTuple_) >= 2 < 3: