Debugging: add simple render job script

This commit is contained in:
Sybren A. Stüvel 2022-02-21 19:58:29 +01:00
parent d198e228b7
commit 0d2ef98edc
2 changed files with 29 additions and 1 deletions

View File

@ -6,7 +6,8 @@ curl -X 'POST' \
-H 'Content-Type: application/json' \
-d '{
"metadata": {
"user.name": "Sybren Stüvel"
"project": "Debugging Flamenco",
"user.name": "コードモンキー"
},
"name": "Talk & Sleep",
"priority": 50,

27
debug-job-render.sh Executable file
View 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
}'