From 83b42f5a32df30fc8b665d52c7ef707c0c5c8566 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 6 Jul 2023 16:59:20 +0200 Subject: [PATCH] Add note for peertube runner dependencies --- support/doc/tools.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/support/doc/tools.md b/support/doc/tools.md index b2fb7cd2c..0c08cd200 100644 --- a/support/doc/tools.md +++ b/support/doc/tools.md @@ -386,6 +386,15 @@ PeerTube >= 5.2 supports VOD or Live transcoding by a remote PeerTube runner. ### Installation +Ensure you have `ffmpeg` and `ffprobe` installed on your system: + +```bash +ffprobe -version # Should be >= 4.3 +ffmpeg -version # Should be >= 4.3 +``` + +Then install the CLI: + ```bash sudo npm install -g @peertube/peertube-runner ```