

MoviePy error: FFMPEG encountered the following error while writing file Introduction(WhatisTodoist?),techstacktalkTEMP_MPY_wvf_snd.mp3:ī'Introduction(WhatisTodoist?),techstacktalkTEMP_MPY_wvf_snd.mp3: Invalid argument\r\n'

Title_list = ['Introduction (What is Todoist?), tech stack talk', 'Showing the final application (with dark mode!)', 'Installing create react app', "Clearing out what we don't need from create react app", "Let's get building our components!", 'Installing packages using Yarn', 'Building the Header component', 'Building the Content component'. I have not included the two lists here but a small example could be: cuts = [('0:00', '2:26'),

I have a list of title too which I have scraped from youtube. video = VideoFileClip("videoFile.mp4")Ĭlip = video.subclip("7:32:18", "7:38:38")įor clip, title in zip(clips, title_list):Ĭlip.write_videofile(title + '.mp4', threads=8, fps=24, audio=True, codec='libx264',preset=compression)Ĭlips contain the start and end time for clipping. I have a video clip around 7 hours long, and I'd like to clip it into small clips. I have been working with moviepy library for the first time.
