pages*/*: update some outdated pages, blackfire: fix placeholder (#14154)

This commit is contained in:
Sebastiaan Speck
2024-10-13 10:27:02 +02:00
committed by GitHub
parent f21fa6a211
commit 03fd077956
62 changed files with 188 additions and 188 deletions

View File

@@ -6,27 +6,27 @@
- Renderizza tutti i frame di una animazione in background, senza caricare l'interfaccia grafica (l'output è salvato in `/tmp`):
`blender --background {{nome_file}}.blend --render-anim`
`blender --background {{nome_file.blend}} --render-anim`
- Renderizza un'animazione usando uno specifico pattern, in un percorso relativo (`//`) al file `.blend`:
`blender --background {{nome_file}}.blend --render-output //{{render/frame_###.png}} --render-anim`
`blender --background {{nome_file.blend}} --render-output //{{render/frame_###.png}} --render-anim`
- Renderizza il decimo frame di un'animazione come singola immagine, salvandolo in una directory esistente (percorso assoluto):
`blender --background {{nome_file}}.blend --render-output {{/percorso/della/directory_output}} --render-frame {{10}}`
`blender --background {{nome_file.blend}} --render-output {{/percorso/della/directory_output}} --render-frame {{10}}`
- Renderizza il penultimo frame di un'animazione come immagine JPEG, salvandolo in una directory esistente (path relativa al file):
`blender --background {{nome_file}}.blend --render-output //{{directory_output}} --render-frame {{JPEG}} --render-frame {{-2}}`
`blender --background {{nome_file.blend}} --render-output //{{directory_output}} --render-frame {{JPEG}} --render-frame {{-2}}`
- Renderizza l'animazione di una specifica scena, dal frame 10 al 500:
`blender --background {{nome_file}}.blend --scene {{nome_scena}} --frame-start {{10}} --frame-end {{500}} --render-anim`
`blender --background {{nome_file.blend}} --scene {{nome_scena}} --frame-start {{10}} --frame-end {{500}} --render-anim`
- Renderizza un'animazione ad una specifica risoluzione, attraverso l'utilizzo di uno script python:
`blender --background {{nome_file}}.blend --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
`blender --background {{nome_file.blend}} --python-expr '{{import bpy; bpy.data.scenes[0].render.resolution_percentage = 25}}' --render-anim`
- Avvia una sessione interattiva di Blender nel terminale con una console python (esegui `import bpy` dopo l'avvio):