Zulko

Results 184 comments of Zulko

As a note, it also works if you delete just the invalid domain in that scudcloug.cfg file. This is a very important issue imho it is very distressing to be...

@mondeja I believe @chiboreache is refering to the example in the readme and those in the `examples/` folder which use `from moviepy import *`. I understand that this is not...

I think composite clips dont get an fps automatically if the different clips have different FPSs. You can always set a fps, for instance with newclip=clip.set_fps(25) On Sun, 3 Mar...

There is a Moviepy fx that does that [here](https://github.com/Zulko/moviepy/blob/master/moviepy/video/fx/mask_color.py), from what I remember you use it like this: ``` import moviepy.editor as mpe clip = VideoFileClip('somefile.mp4') masked_clip = mpe.vfx.mask_color(clip, color=[0,255,0])...

As I understand it, the thread argument should make ffmpeg use several threads, which your OS may dispatch on several processors. However, it is possible that your bottleneck is the...

It looks like a rounding bug. Moviepy transforms any sound into a float signal between -1 and 1, then when you export it to e.g. 32 bits it has to...

Ah then it is indeed a rounding error in the times of the chunks... could be linked to the reading of the file's fps too. Can you ffprobe your file...

+1 to remove ImageMagick (which was a 10-minute decision I took at the very beginning of the project and am not proud of). I made a "Gizeh text clip for...

If you manage that I would vote for it (@tburrows13 what do you think?). Note that this would require some work to update the scripts that use the current ImageMagick-based...

I don't have much time to look into this but someone seems to have fixed my very hackish code for fx.all in this in pull request: #275 because they had...