当前位置:   article > 正文

ffmpeg裁剪视频,提取关键帧_ffmpeg 裁剪掉关键帧之后

ffmpeg 裁剪掉关键帧之后
import os.path as osp
import os

def mkdir_if_missing(d):
    if not osp.exists(d):
        os.makedirs(d)
if __name__ == '__main__':
    for i in range(1, 28):
        input_video_path = 'E:/ysz/' + str(i) + '.mp4'
        result_root='E:/ysz/' + str(i)
        mkdir_if_missing(result_root)
        output_video_path = osp.join(result_root, str(i) + '_r.mp4')
        crop_cmd_str ='ffmpeg -i {} -vf crop=iw/2:ih:960:0 {}'.format(input_video_path,output_video_path)
        os.system(crop_cmd_str)
        keyframe_cmd_str="ffmpeg -i {} -vf select='eq(pict_type\,I)' -vsync 2 -s 960*1080 -f image2 {}/%05d.jpg".format(output_video_path,result_root)
        print(keyframe_cmd_str)
        os.system(keyframe_cmd_str)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/525004
推荐阅读
相关标签
  

闽ICP备14008679号