]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - support/doc/tools.md
Update changelog, 2.1.0-rc.1 -> end of January
[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)
c141f68b
RK
15- [Server tools](#server-tools)
16 - [parse-log](#parse-log)
17 - [create-transcoding-job.js](#create-transcoding-jobjs)
18 - [create-import-video-file-job.js](#create-import-video-file-jobjs)
19 - [prune-storage.js](#prune-storagejs)
20 - [optimize-old-videos.js](#optimize-old-videosjs)
21 - [update-host.js](#update-hostjs)
31b48aad 22 - [reset-password.js](#reset-passwordjs)
13126d99 23 - [plugin install/uninstall](#plugin-installuninstall)
c141f68b
RK
24 - [REPL (Read Eval Print Loop)](#repl-read-eval-print-loop)
25 - [.help](#help)
26 - [Lodash example](#lodash-example)
27 - [YoutubeDL example](#youtubedl-example)
28 - [Models examples](#models-examples)
12b119c0
RK
29
30<!-- END doctoc generated TOC please keep comment here to allow auto update -->
31
d639c3bf
C
32## Remote Tools
33
34You need at least 512MB RAM to run the script.
35Scripts can be launched directly from a PeerTube server, or from a separate server, even a desktop PC.
36You 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).
37
38### Dependencies
39
7e9d3f25 40Install the [PeerTube dependencies](dependencies.md) except PostgreSQL and Redis.
51c35447 41PeerTube only supports NodeJS 10.x.
d639c3bf
C
42
43### Installation
44
45Clone the PeerTube repo to get the latest version (even if you are on your PeerTube server):
46
47```
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
d639c3bf 55```
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
9b474844 80 plugins|p [action] manag instance plugins
8704acf4
RK
81 help [cmd] display help for [cmd]
82```
83
84The wrapper can keep track of instances you have an account on. We limit to one account per instance for now.
85
86```bash
5b036b8e 87$ peertube auth add -u 'PEERTUBE_URL' -U 'PEERTUBE_USER' --password 'PEERTUBE_PASSWORD'
8704acf4
RK
88$ peertube auth list
89┌──────────────────────────────┬──────────────────────────────┐
90│ instance │ login │
91├──────────────────────────────┼──────────────────────────────┤
5b036b8e 92│ 'PEERTUBE_URL' │ 'PEERTUBE_USER' │
8704acf4
RK
93└──────────────────────────────┴──────────────────────────────┘
94```
95
96You can now use that account to upload videos without feeding the same parameters again.
97
98```bash
99$ peertube up <videoFile>
100```
101
102And 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):
103
104```bash
105$ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10
106```
107
9b474844
C
108To list, install, uninstall dynamically plugins/themes of an instance:
109
110```bash
111$ peertube plugins list
112$ peertube plugins install --path /local/plugin/path
113$ peertube plugins install --npm-name peertube-plugin-myplugin
114$ peertube plugins uninstall --npm-name peertube-plugin-myplugin
115```
116
d639c3bf 117#### peertube-import-videos.js
358770db 118
1f8ac024 119You 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 120Be sure you own the videos or have the author's authorization to do so.
2519d9fe 121
a5f0521f 122```sh
8704acf4 123$ node dist/server/tools/peertube-import-videos.js \
5b036b8e
C
124 -u 'PEERTUBE_URL' \
125 -U 'PEERTUBE_USER' \
9024bece 126 --password 'PEERTUBE_PASSWORD' \
8a08bc1e 127 --target-url 'TARGET_URL'
2519d9fe
L
128```
129
a5f0521f
RK
130* `PEERTUBE_URL` : the full URL of your PeerTube server where you want to import, eg: https://peertube.cpy.re
131* `PEERTUBE_USER` : your PeerTube account where videos will be uploaded
e8a739e8 132* `PEERTUBE_PASSWORD` : password of your PeerTube account (if `--password PEERTUBE_PASSWORD` is omitted, you will be prompted for it)
a5f0521f
RK
133* `TARGET_URL` : the target url you want to import. Examples:
134 * YouTube:
135 * Channel: https://www.youtube.com/channel/ChannelId
136 * User https://www.youtube.com/c/UserName or https://www.youtube.com/user/UserName
137 * Video https://www.youtube.com/watch?v=blabla
138 * Vimeo: https://vimeo.com/xxxxxx
139 * Dailymotion: https://www.dailymotion.com/xxxxx
2519d9fe 140
2186386c
C
141The script will get all public videos from Youtube, download them and upload to PeerTube.
142Already downloaded videos will not be uploaded twice, so you can run and re-run the script in case of crash, disconnection...
143
144Videos will be publicly available after transcoding (you can see them before that in your account on the web interface).
145
1f8ac024
F
146**NB**: If you want to synchronize a Youtube channel to your PeerTube instance (ensure you have the agreement from the author),
147you can add a [crontab rule](https://help.ubuntu.com/community/CronHowto) (or an equivalent of your OS) and insert
148these rules (ensure to customize them to your needs):
149
150```
151# Update youtube-dl every day at midnight
1520 0 * * * /usr/bin/npm rebuild youtube-dl --prefix /PATH/TO/PEERTUBE/
153
154# Synchronize the YT channel every sunday at 22:00 all the videos published since last monday included
1550 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)
156```
157
158Also you may want to subscribe to the PeerTube channel in order to manually check the synchronization is successful.
358770db 159
d639c3bf 160#### peertube-upload.js
358770db
C
161
162You can use this script to import videos directly from the CLI.
163
2186386c
C
164Videos will be publicly available after transcoding (you can see them before that in your account on the web interface).
165
358770db 166```
05e67d62 167$ cd ${CLONE}
8704acf4 168$ node dist/server/tools/peertube-upload.js --help
358770db 169```
a5f0521f 170
d639c3bf 171#### peertube-watch.js
8704acf4
RK
172
173You can use this script to play videos directly from the CLI.
174
175It provides support for different players:
176
177- ascii (default ; plays in ascii art in your terminal!)
178- mpv
179- mplayer
180- vlc
181- stdout
182- xbmc
183- airplay
184- chromecast
185
54a3a12e 186
8dd2d050
C
187#### peertube-plugins.js
188
189Install/update/uninstall or list local or NPM PeerTube plugins:
190
191```
192$ cd ${CLONE}
193$ node dist/server/tools/peertube-plugins.js --help
194$ node dist/server/tools/peertube-plugins.js list --help
195$ node dist/server/tools/peertube-plugins.js install --help
196$ node dist/server/tools/peertube-plugins.js update --help
197$ node dist/server/tools/peertube-plugins.js uninstall --help
198
199$ node dist/server/tools/peertube-plugins.js install --path /my/plugin/path
200$ node dist/server/tools/peertube-plugins.js install --npm-name peertube-theme-example
201```
202
54a3a12e
C
203## Server tools
204
205These scripts should be run on the server, in `peertube-latest` directory.
a5f0521f 206
0ee02734
C
207### parse-log
208
209To parse PeerTube last log file:
210
211```
212$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run parse-log -- --level info
213```
214
215`--level` is optional and could be `info`/`warn`/`error`
216
a5f0521f
RK
217### create-transcoding-job.js
218
12b119c0 219You can use this script to force transcoding of an existing video. PeerTube needs to be running.
a5f0521f
RK
220
221```
54a3a12e 222$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- -v [videoUUID]
a5f0521f 223```
05623b90
F
224
225Or to transcode to a specific resolution:
226```
227$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- -v [videoUUID] -r [resolution]
228```
1f8ac024 229
8b7bd166
C
230To generate an HLS playlist for a video:
231
232```
233$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- --generate-hls -v [videoUUID]
234```
235
a5f0521f
RK
236### create-import-video-file-job.js
237
12b119c0 238You 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
RK
239
240```
54a3a12e
C
241$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-import-video-file-job -- -v [videoUUID] -i [videoFile]
242```
243
244### prune-storage.js
245
246Some transcoded videos or shutdown at a bad time can leave some unused files on your storage.
7089e7b4 247Stop PeerTube and delete these files (a confirmation will be demanded first):
54a3a12e 248
a5f0521f 249```
7089e7b4 250$ sudo systemctl stop peertube && sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run prune-storage
23687332
C
251```
252
edb4ffc7
FA
253### optimize-old-videos.js
254
12b119c0
RK
255Before version v1.0.0-beta.16, Peertube did not specify a bitrate for the
256transcoding of uploaded videos. This means that videos might be encoded into
257very large files that are too large for streaming. This script re-transcodes
258these videos so that they can be watched properly, even on slow connections.
edb4ffc7
FA
259
260```
261$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run optimize-old-videos
262```
263
264
23687332
C
265### update-host.js
266
12b119c0
RK
267If you started PeerTube with a domain, and then changed it you will have
268invalid torrent files and invalid URLs in your database. To fix this, you have
269to run:
23687332
C
270
271```
272$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run update-host
ecf06378 273```
1e59ca3b 274
31b48aad
C
275### reset-password.js
276
277To reset a user password from CLI, run:
278
279```
280$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run reset-password -- -u target_username
281```
282
9b474844
C
283
284### plugin install/uninstall
285
286The difference with `peertube plugins` CLI is that these scripts can be used even if PeerTube is not running.
287If 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).
288
8dd2d050 289To install/update a plugin or a theme from the disk:
9b474844
C
290
291```
e9bdf8b4 292$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run plugin:install -- --plugin-path /local/plugin/path
9b474844
C
293```
294
295From NPM:
296
297```
e9bdf8b4 298$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run plugin:install -- --npm-name peertube-plugin-myplugin
9b474844
C
299```
300
301To uninstall a plugin or a theme:
302
303```
e9bdf8b4 304$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run plugin:uninstall -- --npm-name peertube-plugin-myplugin
9b474844
C
305```
306
51c35447 307### REPL ([Read Eval Print Loop](https://nodejs.org/docs/latest-v10.x/api/repl.html))
1e59ca3b 308
12b119c0 309If you want to interact with the application libraries and objects even when PeerTube is not running, there is a REPL for that.
1e59ca3b 310
402b634b 311usage: `node ./dist/server/tools/peertube-repl.js`
1e59ca3b
BY
312
313"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."
314
315- type `.help` to list commands available in the repl, notice it starts with a dot
316- 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
317- 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
318- type `env` to see the loaded environment variables
319- type `path` to access path library
320- type `lodash` to access lodash library
321- type `uuidv1` to access uuid/v1 library
322- type `uuidv3` to access uuid/v3 library
323- type `uuidv4` to access uuid/v4 library
324- type `uuidv5` to access uuid/v5 library
325- type `YoutubeDL` to access youtube-dl library
326- type `cli` to access the cli helpers object
327- type `logger` to access the logger; if you log to it, it will write to stdout and to the peertube.log file
328- type `constants` to access the constants loaded by the server
329- type `coreUtils` to access the core-utils helpers object
330- type `ffmpegUtils` to access the ffmpeg-utils helpers object
331- type `peertubeCryptoUtils` to access the peertube-crypto helpers object
332- type `signupUtils` to access the signup helpers object
333- type `utils` to access the utils helpers object
334- type `YoutubeDLUtils` to access the youtube-dl helpers object
335- type `sequelizeTypescript` to access sequelizeTypescript
336- type `modelsUtils` to access the models/utils
337- type `models` to access the shortcut to sequelizeTypescript.models
338- type `transaction` to access the shortcut to sequelizeTypescript.transaction
339- type `query` to access the shortcut to sequelizeTypescript.query
340- type `queryInterface` to access the shortcut to sequelizeTypescript.queryInterface
341
342#### .help
343
344```
345PeerTube [1.0.0] (b10eb595)> .help
346.break Sometimes you get stuck, this gets you out
347.clear Break, and also clear the local context
348.editor Enter editor mode
349.exit Exit the repl
350.help Print this help message
351.load Load JS from a file into the REPL session
352.r Reset REPL
353.reset Reset REPL
354.save Save all evaluated commands in this REPL session to a file
355PeerTube [1.0.0] (b10eb595)>
356```
357
358#### Lodash example
359
360```
361PeerTube [1.0.0] (b10eb595)> lodash.keys(context)
362[ 'global',
363 'console',
364 'DTRACE_NET_SERVER_CONNECTION',
365 'DTRACE_NET_STREAM_END',
366 'DTRACE_HTTP_SERVER_REQUEST',
367 'DTRACE_HTTP_SERVER_RESPONSE',
368 'DTRACE_HTTP_CLIENT_REQUEST',
369 'DTRACE_HTTP_CLIENT_RESPONSE',
370 'process',
371 'Buffer',
372 'clearImmediate',
373 'clearInterval',
374 'clearTimeout',
375 'setImmediate',
376 'setInterval',
377 'setTimeout',
378 'XMLHttpRequest',
379 'compact2string',
380 'module',
381 'require',
382 'path',
383 'repl',
384 'context',
385 'env',
386 'lodash',
387 'uuidv1',
388 'uuidv3',
389 'uuidv4',
390 'uuidv5',
391 'cli',
392 'logger',
393 'constants',
394 'Sequelize',
395 'sequelizeTypescript',
396 'modelsUtils',
397 'models',
398 'transaction',
399 'query',
400 'queryInterface',
401 'YoutubeDL',
402 'coreUtils',
403 'ffmpegUtils',
404 'peertubeCryptoUtils',
405 'signupUtils',
406 'utils',
407 'YoutubeDLUtils' ]
408PeerTube [1.0.0] (b10eb595)>
409```
410
411#### YoutubeDL example
412```
413YoutubeDL.getInfo('https://www.youtube.com/watch?v=I5ZN289jjDo', function(err, data) {console.log(err, data)})
414```
415
416#### Models examples
417```
418PeerTube [1.0.0] (b10eb595)> new models.ActorModel({id: 3}).getVideoChannel().then(function(data){console.log(data.dataValues.name)})
419Promise {
420 _bitField: 0,
421 _fulfillmentHandler0: undefined,
422 _rejectionHandler0: undefined,
423 _promise0: undefined,
424 _receiver0: undefined }
425PeerTube [1.0.0] (b10eb595)> Main root channel
426PeerTube [1.0.0] (b10eb595)> let out; new models.UserModel({id: 1}).getAccount().then(function (data) {out = data.dataValues.id})
427Promise {
428 _bitField: 0,
429 _fulfillmentHandler0: undefined,
430 _rejectionHandler0: undefined,
431 _promise0: undefined,
432 _receiver0: undefined }
433PeerTube [1.0.0] (b10eb595)> out
4342
435PeerTube [1.0.0] (b10eb595)>
436```