aboutsummaryrefslogtreecommitdiffhomepage
path: root/support
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-07-06 16:59:20 +0200
committerChocobozzz <me@florianbigard.com>2023-07-06 16:59:20 +0200
commit83b42f5a32df30fc8b665d52c7ef707c0c5c8566 (patch)
tree41a6854699ea9d45927f01ed7d6b19b255ef4bd4 /support
parent8ef866071f8109719e68647141d4c9e138438585 (diff)
downloadPeerTube-83b42f5a32df30fc8b665d52c7ef707c0c5c8566.tar.gz
PeerTube-83b42f5a32df30fc8b665d52c7ef707c0c5c8566.tar.zst
PeerTube-83b42f5a32df30fc8b665d52c7ef707c0c5c8566.zip
Add note for peertube runner dependencies
Diffstat (limited to 'support')
-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```