This is something I’ve been searching for for a long time. Is it possible to have blender write the time it took to render an animation to the console (or somewhere else), just like it displays the time it took to render an image in the render window?
Currently I use a small self-written python script that does this:
#Render animation with writing time
import Blender
time1 = Blender.sys.time()
Blender.Scene.GetCurrent().getRenderingContext().renderAnim()
time2 = Blender.sys.time()
dtime = int(time2-time1)
print("Time taken to render animation: "+str(dtime)+" seconds")
But since this is such a simple thing, I guess I have missed an already existing button somewhere that enables this automatically.
Any ideas what I missed?