No module named ‘moviepy.editor‘

python3.7版本后不支持 from moviepy.editor 引用方式,由于是moviepy 2.0.0版本

修改方法:

from moviepy.editor import VideoFileClip, clips_array

改为

from moviepy import *

你可能感兴趣的:(python)