rickster1977
Bath, NY
40, joined Jan. 2012
|
What free webites turn my videos into Gifs ?
Meet singles at DateHookup.dating, we're 100% free! Join now!
|
digitaldog
Grove, OK
68, joined Dec. 2010
|
What free webites turn my videos into Gifs ?
Go here...
http://www.online-convert.com/
( a decent and SAFE site/converter with NO malware hidden in your converted files..!! )
Convert ANY format to ANY format you want..
That should resolve your issue..
Now since I did the work for you..
saved you from PURCHSING a file converter..
Maybe you could show all these gals here..
that you're not some cheap-skate
and since I've given you a crash course that
I usually charge most students for
do you think that you could show your gratitude
by sending me money to
-XoXoXoX-
And ALL my friends....
|
_us4love
Salem, OR
50, joined Nov. 2013
|
Go here: https://www.ffmpeg.org/download.html
and download ffmpeg...
once downloaded, here is the command to convert:
ffmpeg -i input.flv -vf scale=320:-1 -t 10 -r 10 output.gif
Here, -t 10 limits the output to ten seconds. -r 10 forces a frame rate of 10 fps. the scale filter so you can declare a desired width and ffmpeg will deal with the height to preserve aspect.
You can also use this to convert your videos to other formats:
example: ffmpeg -i input.flv output.mp4
There are a million things you can do with ffmpeg... one only needs to read the very long winded extensive documentation...
Works with Windows, Linux, & Mac I do believe??? =)
|