diff --git a/apps/website/docs/getting-started/installation.md b/apps/website/docs/getting-started/installation.md index 25267fe..8a12635 100644 --- a/apps/website/docs/getting-started/installation.md +++ b/apps/website/docs/getting-started/installation.md @@ -1 +1,44 @@ # Installation + +ffmpeg.wasm supports multiple ways of installation: + +## Packages Managers + +To install ffmpeg.wasm using package managers like npm and yarn: + +```bash +npm install @ffmpeg/ffmpeg +``` + +Or + +```bash +yarn add @ffmpeg/ffmpeg +``` + +## Vanilla HTML + +To use ffmpeg.wasm directly in your web page: + +```html + + + + + + +``` + +Or use it as a module: + +```html + + + + + +```