Typeerror: 'function' Object Is Not Subscriptable Python With Ffmpeg
clips = [] def clipFinder(CurrentDir, fileType): clips.clear() for r,d,f in os.walk(CurrentDir): for file in f: if fileType in file: cl
Solution 1:
subprocess.call()
is a callable by definition. You missed the brackets around it
subprocess.call(['***', '-i', '"concat:' + clipString() + '"', '-c', 'copy', '-bsf:a aac_adtstoasc', 'output.mp4'])
Post a Comment for "Typeerror: 'function' Object Is Not Subscriptable Python With Ffmpeg"