利用Python和ffmpeg从视频中抽帧,此方法比opencv抽帧法快。
import subprocessimport osimport subprocessimport shutil#目录文件不存在则自动创建,存在则清空并创建def check_dir(path): if not os.path.exists(path): os.makedirs(path) else: shutil.rmt...