Viewing entries in
Cinema 4D

Tutorial series about the plastic monster

Comment

Tutorial series about the plastic monster

I’ve created short tutorials on different aspects of the character development and 3d work.

I’ve also got a great mention from Lesterbanks.com, that showcase tutorials form C4d, Maya, render engines and more. Thank you for that!

Get some insight in the process behind my most viewed video to date, 1,3 million in tree weeks.

Comment

Soon hitting 800 000 monster plays

Comment

Soon hitting 800 000 monster plays

This is so fun! In just two weeks we are soon hitting 800 000 plays. Thats’ the most views I’ve had on a video ever. Lot’s of positive comments, lot’s of shares, and seems to be living it’s own life. I don’t have a overview of all the different places the video is uploaded so this is just a ballpark estimate.

Hope it passes a million!

Now we are talking about viral value :)

Comment

Do you feed the plastic monster?

Comment

Do you feed the plastic monster?

My latest video for Norwegian Maritime Authority and Marfo! I'm the guy behind developing the monster, animation and vfx it into the shots. If everything goes as planned I will create some short tutorials based on the work from this video. I came across a lot of interesting techniques and also ways do simplify some of the processes, like picking a camera from other videos to animating te monster.

Comment

Showreel 2023

Comment

Showreel 2023

 

It’s about time I updated my showreel; a collection of work I’ve created and been involved with over the years. You can read more about the work and my role.

This video started with the music, a collaboration with the great Atella guys, where they created stems (different parts musical parts and drums) and I did the composition, some additional sounds, mix and master. Inspiration at that time was Blade Runner, both new and old, and a couple of other tracks that I liked the feel too.

For all the camera-movements I’ve tracked live action stock videos that almost contain the images I wanted. Drone shots, hand held movement and underwater camera. I did a rough cut to the music and started to create the scenes.

I’m going to write a project breakdown later with more info and short clips.

Links to whole projects:

Ard arealplan - Tollet
Atella - Closer to life
Hi Tech Mobility
Sjøfartsdirektoratet
Aclima
Ardarealplan.no
Maritim Forsøpling/Kystverket
Subshine
Kunzt.no
Wonderboy
Vi Aquavit
Oslow
Coca-Cola
Marcus Monne (personal work)
Myreze - Una World
Stacc

Comment

Stacc Brand Video

Comment

Stacc Brand Video

Stacc is a Norwegian fintech company with more than 30 years of experience delivering digital solutions and consulting services to banks, asset finance providers, insurance companies, pension funds, family offices and the public sector in the Nordics.

Stacc combines financial technology with design and strategic know-how. We're fast, we understand, we help you do the right things the right way. We enable financial services to innovate, surprise and excite.

I’m really happy how the project came along, and happy to make a second video for the guys :)

Producer: Jørgen Håland, JHåland
Photography (people moving): Jørgen Håland
Stock: Artgrid
Motion Graphics: Jørgen Håland, Julian Forthun
VFX and Color Grade: Jørgen Håland
Edit: Jørgen Håland
Voice: OnlineVoices
Music: MusicVine

Comment

Parking System

Comment

Parking System

I created this video for Hi Tech Mobility

For the project I got help from Ørjan Andressen on photography, so I could concentrate on my role as producer.

I’m very pleased with the result and I got a really happy customer too.

Producer: Jørgen Håland, JHåland
Photography: Ørjan Andreassen
VFX and Color Grade: Jørgen Håland
Edit: Jørgen Håland
Music: MusicVine

Comment

Create your own short cuts in Cinema 4d

Comment

Create your own short cuts in Cinema 4d

I had to make a new tutorial. And it’s been a long time since I’ve done it, and also testing a new setup.
This is more or less for me to remember how to do simple scripts in c4d.

In this tutorial I show how I create simple scripts without knowing much about scripting in Python.

In the script we are picking your objects, and do different functions; like closing a spline, creating extrude nurb and changing some settings and so on. Remember Python is indent sensitive so be aware of that :)

    objects = doc.GetActiveObjects(1)
    for obj in objects:
        obj[c4d.SPLINEOBJECT_CLOSED] = 1
        c4d.EventAdd()
# Extrude
    objects = doc.GetActiveObjects(1)
    c4d.CallCommand(5116) # Extrude
    
    objects = doc.GetActiveObjects(1)
    for obj in objects:
        obj[c4d.EXTRUDEOBJECT_EXTRUSIONOFFSET] = 0

    c4d.EventAdd()
# Remesh
    objects = doc.GetActiveObjects(1)
    c4d.CallCommand(1054750) # Remesh
    
    objects = doc.GetActiveObjects(1)
    for obj in objects:
        obj[c4d.ID_REMESH_POLYGONTARGET_MODE] = 0
        obj[c4d.ID_REMESH_QUADREMESH_ADAPTIVENESS] = 0

    c4d.EventAdd()

Comment