Results 14 comments of 左手代码右手诗

核显的话没怎么测试,而且10.15.4以后hidmi不在支持了

缓冲帧补丁有问题,可以参考小兵博客的缓冲帧补丁教程,或者换我oc的配置,早晚都要换的。。

确实需要很大算力,我用4090 1080p的图 1分钟都得将近10分钟呢..

You can set param: has_mask=True ,like this: ```python background = VideoFileClip("background.mp4") layer = VideoFileClip("overlay.mov", has_mask=True) CompositeVideoClip([background, layer]).write_videofile("out.mp4", codec='libx264') ```

> Do You know how to get the transparent video. According to my test, Moviepy does not support loading and exporting a transparent video as another transparent video. You can...

> Could You Give the Example Commands for the FFMPEG. - Pngs to transparent video (png files : image000001.png .... image000xxx.png) ```shell ffmpeg -i ./pngs/image%06d.png -i ./audio/f3ab7be97c98a6abca9723a8c17cf769.wav -c:v qtrle -r...

Using loop function or concatenate_videoclips: - fx.loop (not supporting transparent gif) ```python from moviepy.video.fx.loop import loop bg = VideoFileClip(r'D:\AI\YT_Automation\Video_Maker\brole.mp4') gf = VideoFileClip(r'D:\AI\YT_Automation\Video_Maker\tmp7dzte94v.gif') gf = loop(gf, duration=bg.duration) CompositeVideoClip([bg, gf]).write_videofile('temp.mp4', fps=16) ```...

Moviepy has issues processing transparent channel videos, which can be achieved using the ffmpeg command for faster speed and better results.

> > Moviepy has issues processing transparent channel videos, which can be achieved using the ffmpeg command for faster speed and better results. > > When I use ffmpeg, it...