maeshanne
(maeshanne)
November 8, 2021, 7:31pm
#1
Is it possible to only render certain frames instead of a whole animation?
I have an animation and want to render specific frames as beauty shorts at a higher resolution.
Instead of rendering, waiting, saving one frame and doing that again for the next frames if would be nice if I could input to render frames 1,3,12 and let blender render and save only these frames.
2 Likes
a59303
(a59303)
November 8, 2021, 7:37pm
#2
2 Likes
maeshanne
(maeshanne)
November 8, 2021, 7:39pm
#3
Thanks for the fast reply!
I never used blender from the command line, are there GUI options?
1 Like
a59303
(a59303)
November 8, 2021, 7:44pm
#4
I think there may be an addon, but not that I know of. The command line is not that complicated I think.
Maybe look here for an addon.
2 Likes
maeshanne
(maeshanne)
November 8, 2021, 7:58pm
#5
I looked intro command line rendering and it is indeed not difficult.
To render frame 1, 50, 100 I used this command:
blender -b file.blend -f 1 -f 50 -f 100
This is what is means:
<path_to_blender> -b <path_to_blendfile> -f <frame1> -f <frame2> -f <frame3>
Thanks for helping me out!
1 Like
a59303
(a59303)
November 13, 2021, 3:55am
#6
Hey, just had the opportunity to do this myself and thought you might be curious of my command line:
./blender -b /home/eric/Desktop/3d/2.93.0/decision-making-recent.blend -o //frames/decision-making/cam_base-#### -f 0000..0012,0041..0047,0075..0079
The … is the range and the comma separates the ranges.
2 Likes
DavidRivera
(Blender Foundation CERTIFIED TRAINER)
November 13, 2021, 9:22am
#7
Man, you’re going to love this video:
2 Likes
Sceptx
July 29, 2022, 6:05am
#8
Hello Guys,
I tried the code but unfortunately, it did not work. This is the line of code I wrote.
COMMAND:
Please Help Me If You Can.
I’m trying to render out specific frames 48-50.
Thanks.
a59303
(a59303)
July 29, 2022, 8:29am
#9
Maybe you didn’t add this?
-o
, --render-output
<path>
Set the render path and file name. Use //
at the start of the path to render relative to the blend-file.
https://docs.blender.org/manual/en/latest/advanced/command_line/arguments.html#render-options
maeshanne
(maeshanne)
July 31, 2022, 7:04pm
#10
Your file path contains spaces so you should add " to the file path, like:
“\C:\Users…”.
Not sure if that will fix it.