1

I am currently trying to render out an image sequence that I imported into Blender's compositor and put a denoise node to. I set the start frame to 1 and the correct amount of frame length and offset. When I render the animation, it re-renders over the original image sequence which is fine, but it only renders the last frame of the sequence over each image. I then have to re-render the image sequence since it basically replaced my image sequence with a single image. Does anyone know how to help?

Here are my compositor settings: enter image description here

The offset is set to 116 because thats when the image sequence and animation begin.

Ryan Nyberg
  • 137
  • 1
  • 9

1 Answers1

4

The error is this you are setting the offset to 116, but the start frame is set to 1, so the 14 frames you want to render would be rendered in frames 1 to 14. Otherwise you are getting a repeat of the last frame.

enter image description here

On a side note, it is quite unfortunate that you chose to use png as image format, by doing so you've lost a lot of the information that would help you denoise the image. In the future use EXR mulilayer and save the denoise passes.

susu
  • 14,002
  • 3
  • 25
  • 48