Flamenco/debug-job-render.sh
Sybren A. Stüvel 441289dbed Debug job: render to writable target
Rendering to `/tmp/flamenco-test-frames` would actually need to write to
`/tmp__intermediate...`, which cannot be created by a regular user.
2022-02-22 13:56:22 +01:00

28 lines
648 B
Bash
Executable File

#!/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
}'