You are not logged in.
Pages: 1
I've recorded a video using recordmydesktop and I need to convert it to an mng and crop it for use in an fbsplash theme. Unfortunately, I cant figure out how the heck to do this. Any suggestions?
Offline
You can dump all the frames with ffmpeg and rebuild using a mng converter of some sort (warning: this can get very large, very fast):
ffmpeg -i YOUR.OGV frame_%06d.png
This will name the frames as:
frame_000001.png
frame_000002.png
...
frame_999999.png
Offline
Naturally, you'd be able to similar with mplayer/mencoder for image files.
Imagemagick can produce mng files.
Arch x64 on Thinkpad X200s/W530
Offline
Pages: 1