*: replace file(s) syntax and add path/to/ to more things (#9592)

* Fix file(s) and more path/to

* Update pages.it/common/rm.md

Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>

* thanks emily your suggestion was dogshit

https://github.com/tldr-pages/tldr/blob/main/contributing-guides/translation-templates/common-arguments.md

Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>
This commit is contained in:
pixel
2022-12-06 07:47:56 +01:00
committed by GitHub
parent 54239c32f4
commit 263508cd44
40 changed files with 83 additions and 83 deletions

View File

@@ -6,27 +6,27 @@
- Render all frames of an animation in the background, without loading the UI (output is saved to `/tmp`):
`blender --background {{filename}}.blend --render-anim`
`blender --background {{path/to/file}}.blend --render-anim`
- Render an animation using a specific image naming pattern, in a path relative (`//`) to the .blend file:
`blender --background {{filename}}.blend --render-output //{{render/frame_###.png}} --render-anim`
`blender --background {{path/to/file}}.blend --render-output //{{render/frame_###.png}} --render-anim`
- Render the 10th frame of an animation as a single image, saved to an existing directory (absolute path):
`blender --background {{filename}}.blend --render-output {{/path/to/output_directory}} --render-frame {{10}}`
`blender --background {{path/to/file}}.blend --render-output {{/path/to/output_directory}} --render-frame {{10}}`
- Render the second last frame in an animation as a JPEG image, saved to an existing directory (relative path):
`blender --background {{filename}}.blend --render-output //{{output_directory}} --render-frame {{JPEG}} --render-frame {{-2}}`
`blender --background {{path/to/file}}.blend --render-output //{{output_directory}} --render-frame {{JPEG}} --render-frame {{-2}}`
- Render the animation of a specific scene, starting at frame 10 and ending at frame 500:
`blender --background {{filename}}.blend --scene {{scene_name}} --frame-start {{10}} -e {{500}} --render-anim`
`blender --background {{path/to/file}}.blend --scene {{scene_name}} --frame-start {{10}} -e {{500}} --render-anim`
- Render an animation at a specific resolution, by passing a Python expression:
`blender --background {{filename}}.blend --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
`blender --background {{path/to/file}}.blend --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
- Start an interactive Blender session in the terminal with a python console (do `import bpy` after starting):