skip to Main Content

Ubuntu – Moviepy is unable to load video

Using python 3.11.10 and moviepy 1.0.3 on ubuntu 24.04.1 (in a VirtualBox 7.1.3 on windows 10) I have problems to load a video clip. The test code is just from moviepy.editor import VideoFileClip clip = VideoFileClip("testvideo.ts") but the error is…

VIEW QUESTION

Flutter – how i can save overlay text box with a video in gallery by using ffmpeg?

final escapedOverlayText = overlayText.replaceAll(''', '''); final command = '-i $videoPath -vf "drawtext=text='$escapedOverlayText':x=10:y=10:fontsize=24:fontcolor=white" -c:a copy $outputPath'; print('Executing command: $command'); final session = await FFmpegKit.execute(command); final returnCode = await session.getReturnCode(); print('here is errror Return code: $returnCode'); that those section of code where…

VIEW QUESTION
Back To Top
Search