Daz Image series to video file

red-NINE

Newbie
Jul 11, 2019
73
584
Hi

I Just rendered an image series of a looped walking animation (30fps) in daz 4.15. What are the easy ways i can convert them to a video file (mp4 or mkv)?

P.S. I am complete noob, never used photoshop or after effects or any other such program.
 

Egglock

Member
Oct 17, 2017
196
110
If you're trying to convert an image sequence to a video format, take a look at Blender.
 

Zargon_games

Creating Games
Game Developer
Jan 22, 2020
703
3,474
Maybe it's an overkill if you want to use only for that, but the program I use is After Effect , pretty easy to use, excelent results, and a lot of functions to learn for later.
 

pitoriex

Newbie
Apr 26, 2021
37
504
It's actually super simple, just download ffmpeg from and then open a command window in the folder where you have your rendered images (if you don't know how to do this: press the windows key and the R key and type cmd into the window that appears and then type cd "C:\path\to\where\your\images\are").

Then you can execute ffmpeg to make a video with this command: C:\path\to\ffmpeg.exe -i img%03d.png -c:v libx264 -vf fps=30 -pix_fmt yuv420p out.mp4 (more information ).

This command expects the files being named img000.png, img001.png and so on, if your names are different you can adjust the file name in the command.
 

MissFortune

I Was Once, Possibly, Maybe, Perhaps… A Harem King
Respected User
Game Developer
Aug 17, 2019
4,914
8,026
Maybe it's an overkill if you want to use only for that, but the program I use is After Effect , pretty easy to use, excelent results, and a lot of functions to learn for later.
Why AE, though? Seems like an odd choice to use a motion effects program (unless you're adding such things, I suppose.) when a video editor like Premiere Pro exists and likely a bit easier/lighter to deal with. I basically use Premiere Pro with fnord's WebM plugin to export image sequences to video files.