Making a slideshow in moviepy works without issue but i just cant figure out how to add a crossfade transition between each frame. I'm very new to python and moviepy and could really use some help. Thanks
img_clips = []
path_list = []
for image in os.listdir('E:/moviepy'):
if image.endswith(".png"):
path_list.append(os.path.join('E:/moviepy/', image))
# creating slide for each image
for img_path in path_list:
slide = ImageClip(img_path, duration=0.2)
img_clips.append(slide)
# concatenating slides
video_slides = concatenate_videoclips(img_clips, method='compose')
# exporting final video
video_slides.write_videofile("E:/moviepy/output_video.mp4", fps=30)