aboutsummaryrefslogtreecommitdiffhomepage
path: root/support/doc
diff options
context:
space:
mode:
Diffstat (limited to 'support/doc')
-rw-r--r--support/doc/tools.md9
1 files changed, 9 insertions, 0 deletions
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.
386 386
387### Installation 387### Installation
388 388
389Ensure you have `ffmpeg` and `ffprobe` installed on your system:
390
391```bash
392ffprobe -version # Should be >= 4.3
393ffmpeg -version # Should be >= 4.3
394```
395
396Then install the CLI:
397
389```bash 398```bash
390sudo npm install -g @peertube/peertube-runner 399sudo npm install -g @peertube/peertube-runner
391``` 400```