diff options
author | Chocobozzz <me@florianbigard.com> | 2023-07-06 16:59:20 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-07-06 16:59:20 +0200 |
commit | 83b42f5a32df30fc8b665d52c7ef707c0c5c8566 (patch) | |
tree | 41a6854699ea9d45927f01ed7d6b19b255ef4bd4 /support | |
parent | 8ef866071f8109719e68647141d4c9e138438585 (diff) | |
download | PeerTube-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.md | 9 |
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 | ||
389 | Ensure you have `ffmpeg` and `ffprobe` installed on your system: | ||
390 | |||
391 | ```bash | ||
392 | ffprobe -version # Should be >= 4.3 | ||
393 | ffmpeg -version # Should be >= 4.3 | ||
394 | ``` | ||
395 | |||
396 | Then install the CLI: | ||
397 | |||
389 | ```bash | 398 | ```bash |
390 | sudo npm install -g @peertube/peertube-runner | 399 | sudo npm install -g @peertube/peertube-runner |
391 | ``` | 400 | ``` |