pythonはビデオ圧縮機能を実現します。


ことばを引く
ビデオ圧縮機能を実現し、
性能の優れた圧縮ビデオは61 Mから11 Mまたは80 Mから15 Mまでです。
動画はあまり大きなダメージを受けていません。
短所:所要時間20 s(win 10、CPU:intel i 7 8 G保存)
结果展示1个
圧縮演算にはCPU資源が必要ですので、時間と性能の両立は難しいです。
話を多くしないで、直接コードをかけます。
ビデオ圧縮:

#        
import sys
import os
import zlib
import threading
import platform
from PIL import Image

class Compress_Pic_or_Video(object):
  def __init__(self,filePath,inputName,outName=""):
    self.filePath = filePath #    
    self.inputName = inputName #       
    self.outName = outName #       
    self.system_ = platform.platform().split("-",1)[0]
    if self.system_ == "Windows":
      self.filePath = (self.filePath + "\\") if self.filePath.rsplit("\\",1)[-1] else self.filePath
    elif self.system_ == "Linux":
      self.filePath = (self.filePath + "/") if self.filePath.rsplit("/",1)[-1] else self.filePath
    self.fileInputPath = self.filePath + inputName
    self.fileOutPath = self.filePath + outName

  @property
  def is_video(self):
    videoSuffixSet = {"WMV","ASF","ASX","RM","RMVB","MP4","3GP","MOV","M4V","AVI","DAT","MKV","FIV","VOB"}
    suffix = self.fileInputPath.rsplit(".",1)[-1].upper()
    if suffix in videoSuffixSet:
      return True
    else:
      return False

  def SaveVideo(self):
    fpsize = os.path.getsize(self.fileInputPath) / 1024
    if fpsize >= 150.0: #  150KB       
      if self.outName:
        compress = "ffmpeg -i {} -r 10 -pix_fmt yuv420p -vcodec libx264 -preset veryslow -profile:v baseline -crf 23 -acodec aac -b:a 32k -strict -5 {}".format(self.fileInputPath,self.fileOutPath)
        isRun = os.system(compress)
      else:
        compress = "ffmpeg -i {} -r 10 -pix_fmt yuv420p -vcodec libx264 -preset veryslow -profile:v baseline -crf 23 -acodec aac -b:a 32k -strict -5 {}".format(self.fileInputPath, self.fileInputPath)
        isRun = os.system(compress)
      if isRun != 0:
        return (isRun,"    ffmpeg")
      return True
    else:
      return True

  def Compress_Video(self):
    #            ,         
    thr = threading.Thread(target=self.SaveVideo)
    thr.start()
    #       
    # fpsize = os.path.getsize(self.fileInputPath) / 1024
    # if fpsize >= 150.0: #   150KB       
    #   compress = "ffmpeg -i {} -r 10 -pix_fmt yuv420p -vcodec libx264 -preset veryslow -profile:v baseline -crf 23 -acodec aac -b:a 32k -strict -5 {}".format(
    #     self.fileInputPath, self.fileOutPath)
    #   isRun = os.system(compress)
    #   if isRun != 0:
    #     return (isRun, "    ffmpeg")
    #   return True
    # else:
    #   return True

if __name__ == "__main__":
  b = sys.argv[1:]	#    
  savevideo = Compress_Pic_or_Video(b[0],b[1],b[2])
  print(savevideo.Compress_Video())
#             61M   11M               :inteli7 8G     20s
起動方法:
上記.pyファイルがあるディレクトリの下で、shift+マウスの右ボタンで空白のところをクリックし、パワーシェルウィンドウを開き、次のコマンドを実行します。

python shipinyasuo-2.py D:\yasuoship test.avi test1.avi
私のファイル名はshipinyso-2.pyです。このファイル名を自分のものに変えてください。
D:\yasuoshipを圧縮するビデオのフォルダの絶対パスに置き換えます。
test.avi  圧縮ビデオのファイル名
test 1.avi  圧縮したファイル名と圧縮するファイルは同じディレクトリの下にあります。
窗口图
あとは画像のサイズや品質を犠牲にして、スピードとサイズを交換します。
最後に参考を貼り付けます。
https://blog.csdn.net/a849992683/article/details/90030326