You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The issue was images i used, earlier the images were 2mb, 1mb etc but later i understood that all images should be above 14 kb and below 100 kb and possibly jpg files.
Other changes were as follows
clips.append(VideoFileClip("E:\images\"+ file).set_duration(10))
video = concatenate_videoclips( clips,method='compose')
Expected Behavior
video should be created successfully with all images
Actual Behavior
video is created with first image, it is not going to other images.
Steps to Reproduce the Problem
import moviepy.editor as mp
from moviepy.editor import *
data_path = os.path.join("\images\",'*g')
fps1 = [ImageClip(m)
for m in glob.glob(data_path)]
merged_clip = mp.concatenate_videoclips(fps1, method="chain")
audioclip = AudioFileClip("\alisha.mp3")
videoclip = merged_clip.set_audio(audioclip)
videoclip.write_videofile("test4.mp4",fps=28)
i tried with the below link its not working out.
#285
Specifications
The text was updated successfully, but these errors were encountered: