Working way to make video from images in C#

前端 未结 5 662
醉话见心
醉话见心 2020-12-01 08:02

Does anybody have a known reliable way to create a video from a series of image files? Before you mod me down for not searching for the answer before posting the question,

5条回答
  •  北海茫月
    2020-12-01 09:05

    I've used mplayer's mencoder to create AVI (with codecs msmpeg4/mp3, readable by default with Windows Media Player) from TGA files on linux like this:

    mencoder mf://*.tga -mf fps=25:type=tga \
      -audiofile /tmp/test.mp3 -oac copy \
      -of lavf -ovc lavc \          
      -lavcopts vcodec=msmpeg4v2:mbd=2:mv0:trell:cbp:last_pred=3:vbitrate=3000 \
      -o /tmp/test.avi
    

    I know mplayer does have a Windows version.

提交回复
热议问题