Skip to content

Commit 4186bc1

Browse files
committed
add docs
1 parent 74cd317 commit 4186bc1

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

docs/config/extensions/ffmpeg.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ export default defineConfig({
1919
});
2020
```
2121

22-
By default, this will install the version of `ffmpeg` that is available in the Debian package manager. If you need a specific version, you can pass in the version as an argument:
22+
By default, this will install the version of `ffmpeg` that is available in the Debian package manager (via `apt`).
23+
24+
## FFmpeg 7.x (static build)
25+
26+
If you need FFmpeg 7.x, you can pass `{ version: "7" }` to the extension. This will install a static build of FFmpeg 7.x instead of using the Debian package:
2327

2428
```ts
2529
import { defineConfig } from "@trigger.dev/sdk/v3";
@@ -29,7 +33,7 @@ export default defineConfig({
2933
project: "<project ref>",
3034
// Your other config settings...
3135
build: {
32-
extensions: [ffmpeg({ version: "6.0-4" })],
36+
extensions: [ffmpeg({ version: "7" })],
3337
},
3438
});
3539
```

0 commit comments

Comments
 (0)