]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/tools.md
Update yarn lock
[github/Chocobozzz/PeerTube.git] / support / doc / tools.md
CommitLineData
c141f68b
RK
1# CLI tools guide
2
12b119c0
RK
3<!-- START doctoc generated TOC please keep comment here to allow auto update -->
4<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
1f8ac024 5**Table of Contents**
c141f68b 6
c141f68b
RK
7- [Remote Tools](#remote-tools)
8 - [Dependencies](#dependencies)
9 - [Installation](#installation)
d639c3bf
C
10 - [CLI wrapper](#cli-wrapper)
11 - [peertube-import-videos.js](#peertube-import-videosjs)
12 - [peertube-upload.js](#peertube-uploadjs)
13 - [peertube-watch.js](#peertube-watchjs)
8dd2d050 14 - [peertube-plugins.js](#peertube-pluginsjs)
e669ff58 15 - [peertube-redundancy.js](#peertube-redundancyjs)
c141f68b
RK
16- [Server tools](#server-tools)
17 - [parse-log](#parse-log)
18 - [create-transcoding-job.js](#create-transcoding-jobjs)
19 - [create-import-video-file-job.js](#create-import-video-file-jobjs)
20 - [prune-storage.js](#prune-storagejs)
21 - [optimize-old-videos.js](#optimize-old-videosjs)
22 - [update-host.js](#update-hostjs)
31b48aad 23 - [reset-password.js](#reset-passwordjs)
13126d99 24 - [plugin install/uninstall](#plugin-installuninstall)
c141f68b
RK
25 - [REPL (Read Eval Print Loop)](#repl-read-eval-print-loop)
26 - [.help](#help)
27 - [Lodash example](#lodash-example)
28 - [YoutubeDL example](#youtubedl-example)
29 - [Models examples](#models-examples)
12b119c0
RK
30
31<!-- END doctoc generated TOC please keep comment here to allow auto update -->
32
d639c3bf
C
33## Remote Tools
34
35You need at least 512MB RAM to run the script.
36Scripts can be launched directly from a PeerTube server, or from a separate server, even a desktop PC.
37You need to follow all the following steps even if you are on a PeerTube server (including cloning the git repository in a different directory than your production installation because the scripts utilize non-production dependencies).
38
39### Dependencies
40
7e9d3f25 41Install the [PeerTube dependencies](dependencies.md) except PostgreSQL and Redis.
d639c3bf
C
42
43### Installation
44
45Clone the PeerTube repo to get the latest version (even if you are on your PeerTube server):
46
c83af8f9 47```bash
d639c3bf
C
48$ git clone https://github.com/Chocobozzz/PeerTube.git
49$ CLONE="$(pwd)/PeerTube"
d639c3bf 50$ cd ${CLONE}
d639c3bf
C
51```
52
7e9d3f25
C
53Install dependencies and build CLI tools:
54
c83af8f9 55```bash
7e9d3f25
C
56$ NOCLIENT=1 yarn install --pure-lockfile
57$ npm run setup:cli
d639c3bf
C
58```
59
60### CLI wrapper
8704acf4 61
bb8f7872
C
62The wrapper provides a convenient interface to the following scripts.
63You can access it as `peertube` via an alias in your `.bashrc` like `alias peertube="cd /your/peertube/directory/ && node ./dist/server/tools/peertube.js"` (you have to keep the `cd` command):
8704acf4
RK
64
65```
66 Usage: peertube [command] [options]
67
68 Options:
69
70 -v, --version output the version number
71 -h, --help output usage information
72
73 Commands:
74
75 auth [action] register your accounts on remote instances to use them with other commands
76 upload|up upload a video
77 import-videos|import import a video from a streaming platform
78 watch|w watch a video in the terminal ✩°。⋆
c141f68b 79 repl initiate a REPL to access internals
e669ff58
C
80 plugins|p [action] manage instance plugins
81 redundancy|r [action] manage video redundancies
8704acf4
RK
82 help [cmd] display help for [cmd]
83```
84
85The wrapper can keep track of instances you have an account on. We limit to one account per instance for now.
86
87```bash
5b036b8e 88$ peertube auth add -u 'PEERTUBE_URL' -U 'PEERTUBE_USER' --password 'PEERTUBE_PASSWORD'
8704acf4
RK
89$ peertube auth list
90┌──────────────────────────────┬──────────────────────────────┐
91│ instance │ login │
92├──────────────────────────────┼──────────────────────────────┤
5b036b8e 93│ 'PEERTUBE_URL' │ 'PEERTUBE_USER' │
8704acf4
RK
94└──────────────────────────────┴──────────────────────────────┘
95```
96
97You can now use that account to upload videos without feeding the same parameters again.
98
99```bash
100$ peertube up <videoFile>
101```
102
103And now that your video is online, you can watch it from the confort of your terminal (use `peertube watch --help` to see the supported players):
104
105```bash
106$ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10
107```
108
9b474844
C
109To list, install, uninstall dynamically plugins/themes of an instance:
110
111```bash
112$ peertube plugins list
113$ peertube plugins install --path /local/plugin/path
114$ peertube plugins install --npm-name peertube-plugin-myplugin
115$ peertube plugins uninstall --npm-name peertube-plugin-myplugin
116```
117
d639c3bf 118#### peertube-import-videos.js
358770db 119
1f8ac024 120You can use this script to import videos from all [supported sites of youtube-dl](https://rg3.github.io/youtube-dl/supportedsites.html) into PeerTube.
358770db 121Be sure you own the videos or have the author's authorization to do so.
2519d9fe 122
a5f0521f 123```sh
8704acf4 124$ node dist/server/tools/peertube-import-videos.js \
5b036b8e
C
125 -u 'PEERTUBE_URL' \
126 -U 'PEERTUBE_USER' \
9024bece 127 --password 'PEERTUBE_PASSWORD' \
8a08bc1e 128 --target-url 'TARGET_URL'
2519d9fe
L
129```
130
a5f0521f
RK
131* `PEERTUBE_URL` : the full URL of your PeerTube server where you want to import, eg: https://peertube.cpy.re
132* `PEERTUBE_USER` : your PeerTube account where videos will be uploaded
e8a739e8 133* `PEERTUBE_PASSWORD` : password of your PeerTube account (if `--password PEERTUBE_PASSWORD` is omitted, you will be prompted for it)
a5f0521f
RK
134* `TARGET_URL` : the target url you want to import. Examples:
135 * YouTube:
136 * Channel: https://www.youtube.com/channel/ChannelId
137 * User https://www.youtube.com/c/UserName or https://www.youtube.com/user/UserName
138 * Video https://www.youtube.com/watch?v=blabla
139 * Vimeo: https://vimeo.com/xxxxxx
140 * Dailymotion: https://www.dailymotion.com/xxxxx
2519d9fe 141
2186386c
C
142The script will get all public videos from Youtube, download them and upload to PeerTube.
143Already downloaded videos will not be uploaded twice, so you can run and re-run the script in case of crash, disconnection...
144
145Videos will be publicly available after transcoding (you can see them before that in your account on the web interface).
146
1f8ac024
F
147**NB**: If you want to synchronize a Youtube channel to your PeerTube instance (ensure you have the agreement from the author),
148you can add a [crontab rule](https://help.ubuntu.com/community/CronHowto) (or an equivalent of your OS) and insert
149these rules (ensure to customize them to your needs):
150
151```
152# Update youtube-dl every day at midnight
1530 0 * * * /usr/bin/npm rebuild youtube-dl --prefix /PATH/TO/PEERTUBE/
154
155# Synchronize the YT channel every sunday at 22:00 all the videos published since last monday included
1560 22 * * 0 /usr/bin/node /PATH/TO/PEERTUBE/dist/server/tools/peertube-import-videos.js -u '__PEERTUBE_URL__' -U '__USER__' --password '__PASSWORD__' --target-url 'https://www.youtube.com/channel/___CHANNEL__' --since $(date --date="-6 days" +%Y-%m-%d)
157```
158
159Also you may want to subscribe to the PeerTube channel in order to manually check the synchronization is successful.
358770db 160
d639c3bf 161#### peertube-upload.js
358770db
C
162
163You can use this script to import videos directly from the CLI.
164
2186386c
C
165Videos will be publicly available after transcoding (you can see them before that in your account on the web interface).
166
c83af8f9 167```bash
05e67d62 168$ cd ${CLONE}
8704acf4 169$ node dist/server/tools/peertube-upload.js --help
358770db 170```
a5f0521f 171
d639c3bf 172#### peertube-watch.js
8704acf4
RK
173
174You can use this script to play videos directly from the CLI.
175
176It provides support for different players:
177
178- ascii (default ; plays in ascii art in your terminal!)
179- mpv
180- mplayer
181- vlc
182- stdout
183- xbmc
184- airplay
185- chromecast
186
54a3a12e 187
8dd2d050
C
188#### peertube-plugins.js
189
190Install/update/uninstall or list local or NPM PeerTube plugins:
191
c83af8f9 192```bash
8dd2d050
C
193$ cd ${CLONE}
194$ node dist/server/tools/peertube-plugins.js --help
195$ node dist/server/tools/peertube-plugins.js list --help
196$ node dist/server/tools/peertube-plugins.js install --help
197$ node dist/server/tools/peertube-plugins.js update --help
198$ node dist/server/tools/peertube-plugins.js uninstall --help
199
200$ node dist/server/tools/peertube-plugins.js install --path /my/plugin/path
201$ node dist/server/tools/peertube-plugins.js install --npm-name peertube-theme-example
202```
203
e669ff58
C
204#### peertube-redundancy.js
205
206Manage (list/add/remove) video redundancies:
207
208To list your videos that are duplicated by remote instances:
209
c83af8f9 210```bash
e669ff58
C
211$ node dist/server/tools/peertube.js redundancy list-remote-redundancies
212```
213
214To list remote videos that your instance duplicated:
215
c83af8f9 216```bash
e669ff58
C
217$ node dist/server/tools/peertube.js redundancy list-my-redundancies
218```
219
220To duplicate a specific video in your redundancy system:
221
c83af8f9 222```bash
e669ff58
C
223$ node dist/server/tools/peertube.js redundancy add --video 823
224```
225
226To remove a video redundancy:
227
c83af8f9 228```bash
e669ff58
C
229$ node dist/server/tools/peertube.js redundancy remove --video 823
230```
231
54a3a12e
C
232## Server tools
233
234These scripts should be run on the server, in `peertube-latest` directory.
a5f0521f 235
0ee02734
C
236### parse-log
237
238To parse PeerTube last log file:
239
c83af8f9 240```bash
c977fd3e 241$ cd /var/www/peertube/peertube-latest
0ee02734
C
242$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run parse-log -- --level info
243```
244
245`--level` is optional and could be `info`/`warn`/`error`
246
7992c9e1
C
247You can also remove SQL or HTTP logs using `--not-tags`:
248
249```
250$ cd /var/www/peertube/peertube-latest
251$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run parse-log -- --level debug --not-tags http sql
252```
253
a5f0521f
RK
254### create-transcoding-job.js
255
12b119c0 256You can use this script to force transcoding of an existing video. PeerTube needs to be running.
a5f0521f 257
c83af8f9
C
258To generate transcoding jobs depending on the instance configuration:
259```bash
c977fd3e 260$ cd /var/www/peertube/peertube-latest
54a3a12e 261$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- -v [videoUUID]
a5f0521f 262```
05623b90
F
263
264Or to transcode to a specific resolution:
c83af8f9 265```bash
c977fd3e 266$ cd /var/www/peertube/peertube-latest
05623b90
F
267$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- -v [videoUUID] -r [resolution]
268```
1c5c31a1 269The resolution should be an integer (`1080`, `720`, `480`, etc.)
1f8ac024 270
8b7bd166
C
271To generate an HLS playlist for a video:
272
c83af8f9 273```bash
c977fd3e 274$ cd /var/www/peertube/peertube-latest
8b7bd166
C
275$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- --generate-hls -v [videoUUID]
276```
277
a5f0521f
RK
278### create-import-video-file-job.js
279
12b119c0 280You can use this script to import a video file to replace an already uploaded file or to add a new resolution to a video. PeerTube needs to be running.
a5f0521f 281
c83af8f9 282```bash
c977fd3e 283$ cd /var/www/peertube/peertube-latest
54a3a12e
C
284$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-import-video-file-job -- -v [videoUUID] -i [videoFile]
285```
286
287### prune-storage.js
288
289Some transcoded videos or shutdown at a bad time can leave some unused files on your storage.
7089e7b4 290Stop PeerTube and delete these files (a confirmation will be demanded first):
54a3a12e 291
c83af8f9 292```bash
c977fd3e 293$ cd /var/www/peertube/peertube-latest
7089e7b4 294$ sudo systemctl stop peertube && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run prune-storage
23687332
C
295```
296
edb4ffc7
FA
297### optimize-old-videos.js
298
12b119c0
RK
299Before version v1.0.0-beta.16, Peertube did not specify a bitrate for the
300transcoding of uploaded videos. This means that videos might be encoded into
301very large files that are too large for streaming. This script re-transcodes
302these videos so that they can be watched properly, even on slow connections.
edb4ffc7 303
c83af8f9 304```bash
c977fd3e 305$ cd /var/www/peertube/peertube-latest
edb4ffc7
FA
306$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run optimize-old-videos
307```
308
309
23687332
C
310### update-host.js
311
fffc7c08 312**Changing the hostname is unsupported and may be a risky operation, especially if you have already federated.**
12b119c0
RK
313If you started PeerTube with a domain, and then changed it you will have
314invalid torrent files and invalid URLs in your database. To fix this, you have
fffc7c08 315to run the command below (keep in mind your follower instances will NOT update their URLs).
23687332 316
c83af8f9 317```bash
c977fd3e 318$ cd /var/www/peertube/peertube-latest
23687332 319$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run update-host
ecf06378 320```
1e59ca3b 321
31b48aad
C
322### reset-password.js
323
324To reset a user password from CLI, run:
325
c83af8f9 326```bash
c977fd3e 327$ cd /var/www/peertube/peertube-latest
31b48aad
C
328$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run reset-password -- -u target_username
329```
330
9b474844
C
331
332### plugin install/uninstall
333
334The difference with `peertube plugins` CLI is that these scripts can be used even if PeerTube is not running.
335If PeerTube is running, you need to restart it for the changes to take effect (whereas with `peertube plugins` CLI, plugins/themes are dynamically loaded on the server).
336
8dd2d050 337To install/update a plugin or a theme from the disk:
9b474844 338
c83af8f9 339```bash
c977fd3e 340$ cd /var/www/peertube/peertube-latest
e9bdf8b4 341$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run plugin:install -- --plugin-path /local/plugin/path
9b474844
C
342```
343
344From NPM:
345
c83af8f9 346```bash
c977fd3e 347$ cd /var/www/peertube/peertube-latest
e9bdf8b4 348$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run plugin:install -- --npm-name peertube-plugin-myplugin
9b474844
C
349```
350
351To uninstall a plugin or a theme:
352
c83af8f9 353```bash
c977fd3e 354$ cd /var/www/peertube/peertube-latest
e9bdf8b4 355$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run plugin:uninstall -- --npm-name peertube-plugin-myplugin
9b474844
C
356```
357
9162476f 358### REPL (Read Eval Print Loop)
1e59ca3b 359
12b119c0 360If you want to interact with the application libraries and objects even when PeerTube is not running, there is a REPL for that.
1e59ca3b 361
402b634b 362usage: `node ./dist/server/tools/peertube-repl.js`
1e59ca3b
BY
363
364"The default evaluator will, by default, assign the result of the most recently evaluated expression to the special variable `_` (underscore). Explicitly setting `_` to a value will disable this behavior."
365
366- type `.help` to list commands available in the repl, notice it starts with a dot
367- type `.exit` to exit, note that you still have to press CTRL-C to actually exit, or press CTRL-C (3 times) without typing `.exit` to exit
368- type `context` to list all available objects and libraries in the context, note: `Promise` is also available but it's not listed in the context, in case you need promises for something
369- type `env` to see the loaded environment variables
370- type `path` to access path library
371- type `lodash` to access lodash library
372- type `uuidv1` to access uuid/v1 library
373- type `uuidv3` to access uuid/v3 library
374- type `uuidv4` to access uuid/v4 library
375- type `uuidv5` to access uuid/v5 library
376- type `YoutubeDL` to access youtube-dl library
377- type `cli` to access the cli helpers object
378- type `logger` to access the logger; if you log to it, it will write to stdout and to the peertube.log file
379- type `constants` to access the constants loaded by the server
380- type `coreUtils` to access the core-utils helpers object
381- type `ffmpegUtils` to access the ffmpeg-utils helpers object
382- type `peertubeCryptoUtils` to access the peertube-crypto helpers object
383- type `signupUtils` to access the signup helpers object
384- type `utils` to access the utils helpers object
385- type `YoutubeDLUtils` to access the youtube-dl helpers object
386- type `sequelizeTypescript` to access sequelizeTypescript
387- type `modelsUtils` to access the models/utils
388- type `models` to access the shortcut to sequelizeTypescript.models
389- type `transaction` to access the shortcut to sequelizeTypescript.transaction
390- type `query` to access the shortcut to sequelizeTypescript.query
391- type `queryInterface` to access the shortcut to sequelizeTypescript.queryInterface
392
393#### .help
394
395```
396PeerTube [1.0.0] (b10eb595)> .help
397.break Sometimes you get stuck, this gets you out
398.clear Break, and also clear the local context
399.editor Enter editor mode
400.exit Exit the repl
401.help Print this help message
402.load Load JS from a file into the REPL session
403.r Reset REPL
404.reset Reset REPL
405.save Save all evaluated commands in this REPL session to a file
406PeerTube [1.0.0] (b10eb595)>
407```
408
409#### Lodash example
410
411```
412PeerTube [1.0.0] (b10eb595)> lodash.keys(context)
413[ 'global',
414 'console',
415 'DTRACE_NET_SERVER_CONNECTION',
416 'DTRACE_NET_STREAM_END',
417 'DTRACE_HTTP_SERVER_REQUEST',
418 'DTRACE_HTTP_SERVER_RESPONSE',
419 'DTRACE_HTTP_CLIENT_REQUEST',
420 'DTRACE_HTTP_CLIENT_RESPONSE',
421 'process',
422 'Buffer',
423 'clearImmediate',
424 'clearInterval',
425 'clearTimeout',
426 'setImmediate',
427 'setInterval',
428 'setTimeout',
429 'XMLHttpRequest',
430 'compact2string',
431 'module',
432 'require',
433 'path',
434 'repl',
435 'context',
436 'env',
437 'lodash',
438 'uuidv1',
439 'uuidv3',
440 'uuidv4',
441 'uuidv5',
442 'cli',
443 'logger',
444 'constants',
445 'Sequelize',
446 'sequelizeTypescript',
447 'modelsUtils',
448 'models',
449 'transaction',
450 'query',
451 'queryInterface',
452 'YoutubeDL',
453 'coreUtils',
454 'ffmpegUtils',
455 'peertubeCryptoUtils',
456 'signupUtils',
457 'utils',
458 'YoutubeDLUtils' ]
459PeerTube [1.0.0] (b10eb595)>
460```
461
462#### YoutubeDL example
463```
464YoutubeDL.getInfo('https://www.youtube.com/watch?v=I5ZN289jjDo', function(err, data) {console.log(err, data)})
465```
466
467#### Models examples
468```
469PeerTube [1.0.0] (b10eb595)> new models.ActorModel({id: 3}).getVideoChannel().then(function(data){console.log(data.dataValues.name)})
470Promise {
471 _bitField: 0,
472 _fulfillmentHandler0: undefined,
473 _rejectionHandler0: undefined,
474 _promise0: undefined,
475 _receiver0: undefined }
476PeerTube [1.0.0] (b10eb595)> Main root channel
477PeerTube [1.0.0] (b10eb595)> let out; new models.UserModel({id: 1}).getAccount().then(function (data) {out = data.dataValues.id})
478Promise {
479 _bitField: 0,
480 _fulfillmentHandler0: undefined,
481 _rejectionHandler0: undefined,
482 _promise0: undefined,
483 _receiver0: undefined }
484PeerTube [1.0.0] (b10eb595)> out
4852
486PeerTube [1.0.0] (b10eb595)>
487```