feat: Add FFmpeg movie from job output sample job bundle#204
Draft
rickrams wants to merge 1 commit intoaws-deadline:mainlinefrom
Draft
feat: Add FFmpeg movie from job output sample job bundle#204rickrams wants to merge 1 commit intoaws-deadline:mainlinefrom
rickrams wants to merge 1 commit intoaws-deadline:mainlinefrom
Conversation
Add a new job bundle that downloads the output of a completed render job in the same queue and encodes the image sequence into an MP4 video using FFmpeg. Configurable parameters include frame rate, encoding preset, quality (CRF), pixel format, and resolution. The job uses the deadline.job_attachments Python API to download outputs and FFmpeg from conda-forge for video encoding. A pre-submission hook injects the queue's S3 bucket settings so no additional IAM permissions are needed on the queue role. Image format is auto-detected from the downloaded files. Signed-off-by: Rick Ramsay <49293857+rickrams@users.noreply.github.com>
leongdl
reviewed
Apr 22, 2026
| @@ -0,0 +1,5 @@ | |||
| version: "1.0" | |||
Contributor
There was a problem hiding this comment.
Do we mean to check this in?
Contributor
Author
There was a problem hiding this comment.
yes! based on feedback on the hooks PR hooks files have a version - https://github.com/aws-deadline/deadline-cloud/blob/mainline/docs/submission-hooks.md
leongdl
reviewed
Apr 22, 2026
| type: TEXT | ||
| runnable: true | ||
| data: | | ||
| #!/bin/env bash |
Contributor
There was a problem hiding this comment.
Can we use only 1 programming language? EG all in python? A mixed shell + Python template is a bit odd.
And can we move the inline code to a file and we run the file? (Readability question)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a new job bundle that downloads the output of a completed render job in the same queue and encodes the image sequence into an MP4 video using FFmpeg. Configurable parameters include frame rate, encoding preset, quality (CRF), pixel format, and resolution.
The job uses the deadline.job_attachments Python API to download outputs and FFmpeg from conda-forge for video encoding. A pre-submission hook injects the queue's S3 bucket settings so no additional IAM permissions are needed on the queue role. Image format is auto-detected from the downloaded files.
Given it uses hooks that is merged but not release will leave this in draft for now.
What was the problem/requirement? (What/Why)
Wanted to be able to turn frames created in one jobo on the farm into a movie without having to download and re-upload the frames.
How was this change tested?
Submitted using a variety of test jobs with different frame formats and extensions
Was this change documented?
Sample has a readme.
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.