Debugging: add simple render job script
This commit is contained in:
parent
d198e228b7
commit
0d2ef98edc
@ -6,7 +6,8 @@ curl -X 'POST' \
|
|||||||
-H 'Content-Type: application/json' \
|
-H 'Content-Type: application/json' \
|
||||||
-d '{
|
-d '{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"user.name": "Sybren Stüvel"
|
"project": "Debugging Flamenco",
|
||||||
|
"user.name": "コードモンキー"
|
||||||
},
|
},
|
||||||
"name": "Talk & Sleep",
|
"name": "Talk & Sleep",
|
||||||
"priority": 50,
|
"priority": 50,
|
||||||
|
27
debug-job-render.sh
Executable file
27
debug-job-render.sh
Executable file
@ -0,0 +1,27 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
curl -v -X 'POST' \
|
||||||
|
'http://localhost:8080/api/jobs' \
|
||||||
|
-H 'accept: application/json' \
|
||||||
|
-H 'Content-Type: application/json' \
|
||||||
|
-d '{
|
||||||
|
"metadata": {
|
||||||
|
"project": "Debugging Flamenco",
|
||||||
|
"user.name": "コードモンキー"
|
||||||
|
},
|
||||||
|
"name": "Test Render",
|
||||||
|
"type": "simple-blender-render",
|
||||||
|
"settings": {
|
||||||
|
"filepath": "flamenco-test.blend",
|
||||||
|
"render_output": "/tmp/flamenco-test-frames",
|
||||||
|
"chunk_size": 1,
|
||||||
|
"extract_audio": true,
|
||||||
|
"format": "PNG",
|
||||||
|
"output_file_extension": ".png",
|
||||||
|
"fps": 24,
|
||||||
|
"frames": "1-10",
|
||||||
|
"images_or_video": "images",
|
||||||
|
"blender_cmd": "{blender}"
|
||||||
|
},
|
||||||
|
"priority": 50
|
||||||
|
}'
|
Loading…
x
Reference in New Issue
Block a user