From c3cfb7f63c6161f2fc809f53a96976a1d20e5cce Mon Sep 17 00:00:00 2001 From: lochanpaudel Date: Fri, 11 Oct 2024 16:16:06 +0530 Subject: [PATCH] The local development guide to include which packages to add for local development --- docs/guides/examples/ffmpeg-video-processing.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/guides/examples/ffmpeg-video-processing.mdx b/docs/guides/examples/ffmpeg-video-processing.mdx index 39687e3ab5..b99b5f052a 100644 --- a/docs/guides/examples/ffmpeg-video-processing.mdx +++ b/docs/guides/examples/ffmpeg-video-processing.mdx @@ -361,4 +361,13 @@ To test this task in the dashboard, you can use the following payload: } ``` +### To enable FFmpeg video processing for local development, ensure that you have installed the following package: + +- `@ffmpeg-installer/ffmpeg`: This package automatically installs FFmpeg binaries, ensuring you have the necessary tools without needing to manually download FFmpeg. + +### To install FFmpeg, use the following command: +```bash +npm install @ffmpeg-installer/ffmpeg + +