KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
videofy
★ 24
Open GitHub ↗
Covert animated gif to mp4.
Download README (.md)
Explore Similar Repositories
ImmuneSpaceR
:
An R Interface to the ImmuneSpace database portal
firebase-rpi-arduino
:
A few JavaScript examples that integrate a Firebase with the physical world.
fabric-completion
:
Bash completion for Fabric
tde
:
Triangular dislocation elements in a homogeneous elastic half space
OpenSonos
:
A local music server for Sonos written in C#
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
videofy
?
Download (.md)
videofy ======= Covert animated gif to mp4. Why? ==== * Inspired from twitter gif comment function * MP4 video is much smaller than Gif, nearlly 10 times smaller  > Source file 627KB <video src="https://github.com/zjhiphop/videofy/raw/master/tmp/test-mp4.mp4" controls autoplay><a href="https://github.com/zjhiphop/videofy/raw/master/tmp/test-mp4.mp4">Source Video</a></video> > Target File 26KB * User can control the speed of video Example ======= ``` videofy('input.gif', 'output.mp4', function(error) { }) ``` Equally with ============ ``` convert input.gif tmp_%05d.jpg ffmpeg -f image2 -r 5 -i tmp_%05d.jpg -c:v libx264 output.mp4 ``` Dependency ========== The system must install [ffmpeg](https://www.ffmpeg.org/) and [imagemagick](http://www.imagemagick.org/)