diff --git a/debug-job-echo.sh b/debug-job-echo.sh index b5473560..0a0ddf65 100755 --- a/debug-job-echo.sh +++ b/debug-job-echo.sh @@ -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, diff --git a/debug-job-render.sh b/debug-job-render.sh new file mode 100755 index 00000000..6bfc921c --- /dev/null +++ b/debug-job-render.sh @@ -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 +}'