39f03085b4
* adding ffmpeg v7 * Renaming id ffmpeg to ffmpeg7 * added space * fixing formatting issue * fix unit test workflow for forks * merge ffmpeg v7 into existing extension * verify md5 checksum * fix dns resolution * fix v7 install * remove redundant code * add changeset * mark fluent-ffmpeg as external * add docs * Revert "mark fluent-ffmpeg as external" This reverts commit 74cd317ae69c7453a22d3fa412ff00b402840b87. --------- Co-authored-by: nicktrn <55853254+nicktrn@users.noreply.github.com>
46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
---
|
|
title: "FFmpeg"
|
|
sidebarTitle: "ffmpeg"
|
|
description: "Use the ffmpeg build extension to include FFmpeg in your project"
|
|
---
|
|
|
|
You can add the `ffmpeg` build extension to your build process:
|
|
|
|
```ts
|
|
import { defineConfig } from "@trigger.dev/sdk/v3";
|
|
import { ffmpeg } from "@trigger.dev/build/extensions/core";
|
|
|
|
export default defineConfig({
|
|
project: "<project ref>",
|
|
// Your other config settings...
|
|
build: {
|
|
extensions: [ffmpeg()],
|
|
},
|
|
});
|
|
```
|
|
|
|
By default, this will install the version of `ffmpeg` that is available in the Debian package manager (via `apt`).
|
|
|
|
## FFmpeg 7.x (static build)
|
|
|
|
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:
|
|
|
|
```ts
|
|
import { defineConfig } from "@trigger.dev/sdk/v3";
|
|
import { ffmpeg } from "@trigger.dev/build/extensions/core";
|
|
|
|
export default defineConfig({
|
|
project: "<project ref>",
|
|
// Your other config settings...
|
|
build: {
|
|
extensions: [ffmpeg({ version: "7" })],
|
|
},
|
|
});
|
|
```
|
|
|
|
This extension will also add the `FFMPEG_PATH` and `FFPROBE_PATH` to your environment variables, making it easy to use popular ffmpeg libraries like `fluent-ffmpeg`.
|
|
|
|
Note that `fluent-ffmpeg` needs to be added to [`external`](/config/config-file#external) in your `trigger.config.ts` file.
|
|
|
|
Follow [this example](/guides/examples/ffmpeg-video-processing) to get setup with Trigger.dev and FFmpeg in your project.
|