6 posts tagged

animation

Modeling low poly pirate ship in 3D

Timelapse of modeling low poly pirate ship in 3d using Houdini, Zbrush, Substance Painter, RizomUV and Redshift:

If you prefer video on youtube with chapters you can watch it here.

Small concept drawing that you see in timelaps I found on pinterest quite a while ago. Sadly I don’t know the author.
You can rotate model in your browser here:

I also passed geometry to Meta Spark Studio to make an IG filter.
Here is link to open filter in Instagram:

If you want to do that there are couple of things to remember:

 519   10 mon   3dmodeling   animation   modeler   process   rizomuv

Hunting for likes

Small personal project that I made in Houdini testing Axiom GPU solver. Idea is that we always hunting for likes and “hearts”, setting traps with hot topics.
Looped video with music:

Work in progress:

Stills:

 588   2022   animation   houdini
 1238   2021   animation   houdini

Ya no tengo apetito

3d modeled in Modo, assembled in Houdini, rendered with Redshift and post in Nuke.

 564   2020   3d   animation   houdini   modo   nuke
 473   2020   animation

Gif creation from sequence of images or mp4

When I need to create gifs I ususally use After Effects and plugin GifGun.
But sometimes it doesn’t play nice with colors. They have an “experimental engine” inside as an option but that result in huge size gifs.
Some people use Ezgif. But it has some limitations and you need to upload to web.

So this weekend I tried ImageMagick.
It also installs FFMPEG. So you use it first to convert videos or image sequeces to gif first. And then compress it with ImageMagick. There is no GUI on Windows so you use Command Prompt (it’s like Terminal on Mac).

First you change your current location to the directory where you files are with. Just type cd, drag and drop directory in the “terminal” and hit enter.

I rendered 720x1280px image sequece in houdini with names like this:
CAM_top.0001.tif,
CAM_top.0002.tif,
...
CAM_top.0072.tif

So to convert it to 24 fps gif with half-resolution and custom color pattern (for better colors representation) I used this line:

ffmpeg -r 24 -i CAM_top.%04d.tif -filter_complex “[0:v] scale=360:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse” output_360px.gif

And then compressed it with ImageMagick with this:

magick convert output_360px.gif -fuzz 1% -layers Optimize output_360px_fuzz1.gif

fuzz1 – controls the amount of compresion. For example in some other tests fuzz5 gave ok results and smaller files size.
Here is another example of creating gif from mp4 – with rescaling, changing fps and single pattern generation. Split just means that we split this video into 2 and one use for pattern generation and other for convetion to gif after that:

ffmpeg -i video_source.mp4 -filter_complex “[0:v] fps=12,scale=540:-1,split [a][b];[a] palettegen [p];[b][p] paletteuse” output_name.gif

Creating gif from mp4 – with rescaling, changing fps. Pattern generated for every frame – this helps if there are lots of color variations in gif but will increase the size:

ffmpeg -i video_source.mp4 -filter_complex “[0:v] fps=12,scale=w=540:h=-1,split [a][b];[a] palettegen=stats_mode=single [p];[b][p] paletteuse=new=1” output_name.gif

Here is single camera view (6 MB):

And here is 15 seconds version with lots of motion (21 MB):

 822   2020   animation   houdini   windows