Video Converter with MoviePy
-
python3.x
-
you need moviepy and pathlib
MoviePy
pip install moviepy
pathlib
pip install pathlib
-
path
path to video
example: path='/home/conviepy/video.mp4'
-
auto_res
Convert to different resolutions Automatically
example: auto_res=True
-
res
if auto_res is False you can add your custom resolution
example: res=[300, 300]
-
thumb
add preview gif and jpeg
example: thumb=True
-
thumb_size
size of thumb if thumb is True
example: thumb_size=[100,100]
-
logo
place logo in video
example: logo=/home/conviepy/logo.png
python3 conviepy path='/home/conviepy/video.mp4' auto_res=False res=[100, 100] thumb=True thumb_size=[50, 50] logo='/home/conviepy/logo.png'