Click here to Skip to main content
15,890,512 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Hi
I'd like to know how I can cut down a .avi file and make a .gif file out of it.

I want to create a Proram you can use to ripoff episode-changing gags from the Intro. This is (more or less) useful for Series like The Simpsons or American Dad

Thanks.

Sincerely:
Jonas
Posted
Comments
ZurdoDev 6-Feb-15 11:47am    
It will require a lot of code, more than we can share here. Where exactly are you stuck?

Try FFMPEG binary executable to which you can feed in console commands and get the gif image from a video file and you have more advanced options like time interval of frame etc...
ffmpeg -i video.avi -t 5 out.gif
 
Share this answer
 
v2
Comments
Zoltán Zörgő 6-Feb-15 16:31pm    
Good one! +5
Another approach for the same view: http://www.ffmpeg-csharp.com/. Not free though :(
[no name] 7-Feb-15 8:37am    
hey! its free, You can get source code over github or download over here
https://www.ffmpeg.org/download.html
Thanks!
Zoltán Zörgő 7-Feb-15 15:51pm    
ffmpeg is free, but the c# wrapper is not.
[no name] 7-Feb-15 16:06pm    
oh i just see that's not a free wrapper. Maybe some generous developer shared his wrapper. I think this is exactly the same
https://jasonjano.wordpress.com/2010/02/09/a-simple-c-wrapper-for-ffmpeg/
Zoltán Zörgő 7-Feb-15 16:13pm    
Good one!
 
Share this answer
 
v2
Comments
[no name] 6-Feb-15 14:19pm    
Thanks (y)

;)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900