i have been stcuk on this for multible hours now as my computer is not running moviepy i need to know if there is any other way to combine videos and add text in a python script please.
this is my code:
for i in names:
x = 0
Ftd = dird[x]#directory of file
x = x + 1
clip = VideoFileClip("'"+Ftd+"'")
txt_clip = TextClip(str(i), fontsize = 20, color = 'White')
txt_clip = txt_clip.set_pos('top').set_duration(5)
video = CompositeVideoClip([clip,txt_clip])
clips.append(video)
final = concatenate_videoclips(clips,method='compose')
final.write_videofile("done.mp4")
please i need help is there any other modules i can use or even cmd code that i can run with my python script.