In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article will explain in detail how to use Python to convert video to Gif. Xiaobian thinks it is quite practical, so share it with you as a reference. I hope you can gain something after reading this article.
I. Foreword
Many sites offer video-to-GIF functionality, but either for a fee or with advertising
In fact, we can convert video to gif with python and a few lines of code.
2. Course 1 moviepyip install moviepy -i https://pypi.tuna.tsinghua.edu.cn/simple2. Write code from moviepy.editor import *clip = (VideoFileClip("movie.mp4")) #Path of video file to be converted to GIF clip.write_gif("movie.gif")3. conversion effect
Although the GIF image just now was only a few seconds long, it was as large as 9 megabytes! (again with resolution scaled)
If the video to be converted is tens of seconds, the file size will have to be 100 megabytes or more!
So how do we fix this?
4. GIF Great solution
In addition to setting the zoom resolution resize, we can also reduce the size by setting the fps parameter frame extraction.
from moviepy.editor import *clip = (VideoFileClip("movie.mp4").subclip(t_start=1, t_end=2).resize((488, 225)))clip.write_gif("movie.gif", fps=15)
After setting it to 15 frames per second, the file size was only 2m, which was reduced by 4 times!
And it doesn't make much difference visually.
5. Intercept video length conversion
We can also specify the video range to convert by setting the subclip parameter:
subclip: Capture video clips from t_start to t_end in the original video
Convert video 1-2 second clips to Gif
from moviepy.editor import *clip = (VideoFileClip("movie.mp4").subclip(t_start=1, t_end=2).resize((488, 225)))clip.write_gif("movie.gif", fps=15)5. Specify the converted image size (resolution)
The resize parameter specifies the size of the converted image
Accepted parameters are:
(width,height) in pixels or floats
Scale percentage, e.g. 0.5
example
1. Set the converted image to 600*400
clip = (VideoFileClip("movie.mp4").resize((600, 400)))
2. Original video zoom 50%
clip = (VideoFileClip("movie.mp4").resize(0.5)) About "How to use Python to convert video to Gif" This article is shared here. I hope the above content can be helpful to everyone so that you can learn more knowledge. If you think the article is good, please share it for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.