diff --git a/packages/cli/src/progress-bar.ts b/packages/cli/src/progress-bar.ts
index 2b27ca41bce..61dd176a4aa 100644
--- a/packages/cli/src/progress-bar.ts
+++ b/packages/cli/src/progress-bar.ts
@@ -351,7 +351,7 @@ const getGuiProgressSubtitle = (progress: AggregateRenderProgress): string => {
return `Rendered ${progress.rendering.frames}/${progress.rendering.totalFrames}${etaString}`;
}
- return `Stitched ${progress.stitching.frames}/${progress.stitching.totalFrames}`;
+ return `Encoded ${progress.stitching.frames}/${progress.stitching.totalFrames}`;
};
export const printFact =
diff --git a/packages/docs/docs/lambda/getrenderprogress.mdx b/packages/docs/docs/lambda/getrenderprogress.mdx
index b7cda239b8e..4e18ae4caf7 100644
--- a/packages/docs/docs/lambda/getrenderprogress.mdx
+++ b/packages/docs/docs/lambda/getrenderprogress.mdx
@@ -83,7 +83,7 @@ How many chunks have been fully rendered so far.
### `encodingStatus`
-Either `null` if not all chunks have been rendered yet or an object with the signature `{framesEncoded: number}` that tells how many frames have been stitched together so far in the concatenation process.
+Either `null` if not all chunks have been rendered yet or an object with the signature `{framesEncoded: number}` that tells how many frames have been encoded so far in the encoding process.
### `renderId`
diff --git a/packages/studio/src/components/RenderModal/GuiRenderStatus.tsx b/packages/studio/src/components/RenderModal/GuiRenderStatus.tsx
index 4ced1c67095..3b1ca527072 100644
--- a/packages/studio/src/components/RenderModal/GuiRenderStatus.tsx
+++ b/packages/studio/src/components/RenderModal/GuiRenderStatus.tsx
@@ -86,8 +86,8 @@ const StitchingProgress: React.FC<{