Animated gif to avi on linux

前端 未结 5 1764
情歌与酒
情歌与酒 2020-12-24 12:35

Is there any way to convert an animated gif to a video format (e.g. .avi) on Linux?

I have already tried

ffmpeg -i thegif.gif thevideo.a         


        
5条回答
  •  天命终不由人
    2020-12-24 13:34

    If you dont want temporary files, you can try mencoder:

    mencoder myfile.gif -mf fps=25 -o myfile.avi -ovc lavc -lavcopts vcodec=mpeg4
    

提交回复
热议问题