Kang Ning

Results 6 comments of Kang Ning

附议楼上,调试了大半天,居然发现是这个错误。。。 ![image](https://user-images.githubusercontent.com/16971300/128846527-1954ead2-7dcb-4179-82e6-450761e4a8a6.png) ![image](https://user-images.githubusercontent.com/16971300/128846662-e164f766-bc45-439e-92ed-b793d46cbf5e.png)

Thanks for your response, and I am really excepting for this new feature. For now, guess I should change my bakcend interface for a little while.

试试把write_videofile的progress bar关掉,这个貌似会很占IO ``` final_clip.write_videofile(combined_video_path, threads=threads, logger=None) ``` [Zulko/moviepy#645](https://github.com/Zulko/moviepy/issues/645)

> Same here, I workaround like this to fix the issue (**disable the progress bar**): > > ``` > final_clip.write_videofile(combined_video_path, threads=threads, logger=None) > ``` > > https://github.com/harry0703/MoneyPrinterTurbo/blob/7fb1a95a82c3795df56ac0452320be3c281e9ee4/app/services/video.py#L95 > > please...

@maikelsz @laptop-lace 1. for git proxy: ``` git config --global https.proxy git config --global https.proxy http://127.0.0.1:20809 // a example ``` 2. for python3.10 in Windows, set the env like this(**remember...

Same here, I workaround like this to fix the issue (**disable the progress bar**): ``` final_clip.write_videofile(combined_video_path, threads=threads, logger=None) ``` https://github.com/harry0703/MoneyPrinterTurbo/blob/7fb1a95a82c3795df56ac0452320be3c281e9ee4/app/services/video.py#L95 please reference this thread which is a known issue in...