Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rendering with multiple frame ranges #3158

Open
dcodesdev opened this issue Nov 13, 2023 · 0 comments
Open

Rendering with multiple frame ranges #3158

dcodesdev opened this issue Nov 13, 2023 · 0 comments

Comments

@dcodesdev
Copy link
Contributor

Rendering with multiple frame ranges

Instead of selecting a frame range when rendering on Lambda, it would be nice to be allowed to select multiple frame ranges to render.

So, instead of this

  const result = await renderMediaOnLambda({
    codec: "h264",
    functionName: "remotion-render",
    region: REGION,
    serveUrl: SITE_NAME,
    composition: COMP_NAME,
    frameRange: [0, 100], // <-- Instead of this
  })

Selecting multiple frame ranges

const result = await renderMediaOnLambda({
  codec: "h264",
  functionName: "remotion-render",
  region: REGION,
  serveUrl: SITE_NAME,
  composition: COMP_NAME,
  frameRange: [[0,100], [150, 200]] // <-- Having this
})

The final result would be a video of 150 frames with frames 101-149 skipped, the result would be only 1 video stitched together instead of multiple videos.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant