Multi-file rendering
You can, however, string multiple files together. Suppose you are in a folder that has three blend files a.blend, b.blend, and c.blend. You want to render the 15th frame of a.blend, the entire b.blend animation, and the first frame of c.blend.
blender -b a.blend -f 15 b.blend -a c.blend -f 1
This command accomplishes this for us quite easily. Note that this is essentially the same thing as writing the following.
blender -b a.blend -f 15
blender -b b.blend -a
blender -b c.blend -f 1
In most command lines, you can also replace it with the following.
blender -b a.blend -f 15; blender -b b.blend -a; blender -b c.blend -f 1
Note that this is just the previous commands strung together on one line and separated by semicolons.
搜索到的,你看看,分析分析 |