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

fix: localhost link in documentation #264

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/docs/docs/guide/rendering-videos.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,18 @@ your video and subsequently merge the single parts together (for example, you
can use 10 processes to render 1 minute of a 10-minute video each).

The `renderVideo()` function
([API reference](http://localhost:3000/renderer/renderVideo)) provides a
([API reference](/renderer/renderVideo)) provides a
`settings.worker` argument that you can use to parallelize rendering in a single
process. This is useful when you have a lot of RAM available.

Alternatively, the best way to set up parallelized rendering is to use
serverless function providers like AWS Lambda. Revideo provides a
`renderPartialVideo()` function
([API reference](http://localhost:3000/renderer/renderPartialVideo)) that you
([API reference](/renderer/renderPartialVideo)) that you
can use to render a partial video - you can use it together with
`concatenateMedia()` ([API reference](/ffmpeg/concatenateMedia)) and
`mergeAudioWithVideo()`
([API reference](http://localhost:3000/ffmpeg/mergeAudioWithVideo)) to
([API reference](/ffmpeg/mergeAudioWithVideo)) to
parallelize rendering across serverless functions. We also provide guides and
example projects for setting up parallelized rendering on
[AWS Lambda](https://github.com/redotvideo/examples/tree/main/parallelized-aws-lambda)
Expand Down
Loading