问题 We are working on a project to convert video to audio, and this is the sample code: from converter import Converter from moviepy.editor import * c = Converter() clipv = 'g.mp4' clipc = VideoFileClip(clipv).subclip(0,20) conv = c.convert(clipc, 'clip5.mp3', {'format':'mp3','audio':{'codec': 'mp3','bitrate':'22050','channels':1}}) for timecode in conv: pass However, it gives me this error Traceback (most recent call last) File "del.py", line 7, in <module> for timecode in conv: File "/usr/local