2018-03-05 10:00:15 +01:00
# CLI tools guide
2018-09-13 14:27:44 +02:00
- [CLI wrapper ](#cli-wrapper )
2018-06-11 15:47:32 +02:00
- [Remote tools ](#remote-tools )
2018-09-13 14:27:44 +02:00
- [peertube-import-videos.js ](#peertube-import-videosjs )
- [peertube-upload.js ](#peertube-uploadjs )
- [peertube-watch.js ](#peertube-watch )
2018-06-11 15:47:32 +02:00
- [Server tools ](#server-tools )
2018-08-27 15:59:00 +02:00
- [parse-log ](#parse-log )
2018-06-07 11:55:34 +02:00
- [create-transcoding-job.js ](#create-transcoding-jobjs )
- [create-import-video-file-job.js ](#create-import-video-file-jobjs )
2018-06-11 15:47:32 +02:00
- [prune-storage.js ](#prune-storagejs )
2018-02-19 09:42:43 +01:00
2018-09-13 14:27:44 +02:00
## CLI wrapper
The wrapper provides a convenient interface to most scripts, and requires the [same dependencies ](#dependencies ). You can access it as `peertube` via an alias in your `.bashrc` like `alias peertube="node ${PEERTUBE_PATH}/dist/server/tools/peertube.js"` :
```
Usage: peertube [command] [options]
Options:
-v, --version output the version number
-h, --help output usage information
Commands:
auth [action] register your accounts on remote instances to use them with other commands
upload|up upload a video
import-videos|import import a video from a streaming platform
watch|w watch a video in the terminal ✩°。⋆
help [cmd] display help for [cmd]
```
The wrapper can keep track of instances you have an account on. We limit to one account per instance for now.
```bash
$ peertube auth add -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD"
$ peertube auth list
┌──────────────────────────────┬──────────────────────────────┐
│ instance │ login │
├──────────────────────────────┼──────────────────────────────┤
│ "PEERTUBE_URL" │ "PEERTUBE_USER" │
└──────────────────────────────┴──────────────────────────────┘
```
You can now use that account to upload videos without feeding the same parameters again.
```bash
$ peertube up < videoFile >
```
And 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):
```bash
$ peertube watch https://peertube.cpy.re/videos/watch/e8a1af4e-414a-4d58-bfe6-2146eed06d10
```
2018-06-11 15:47:32 +02:00
## Remote Tools
2018-02-19 09:42:43 +01:00
2018-03-14 09:15:17 +01:00
You need at least 512MB RAM to run the script.
Scripts can be launched directly from a PeerTube server, or from a separate server, even a desktop PC.
2018-09-10 13:37:06 +02:00
You 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).
2018-02-19 09:42:43 +01:00
### Dependencies
2018-03-05 10:00:15 +01:00
Install the [PeerTube dependencies ](dependencies.md ).
2018-02-19 09:42:43 +01:00
### Installation
2018-03-14 09:15:17 +01:00
Clone the PeerTube repo to get the latest version (even if you are on your PeerTube server):
2018-02-19 09:42:43 +01:00
```
2018-03-22 11:32:43 +01:00
$ git clone https://github.com/Chocobozzz/PeerTube.git
$ CLONE="$(pwd)/PeerTube"
2018-02-19 09:42:43 +01:00
```
Run ``yarn install``
```
2018-03-22 11:32:43 +01:00
$ cd ${CLONE}
$ yarn install
2018-02-19 09:42:43 +01:00
```
Build server tools:
```
2018-03-22 11:32:43 +01:00
$ cd ${CLONE}
$ npm run build:server
2018-02-19 09:42:43 +01:00
```
2018-09-13 14:27:44 +02:00
### peertube-import-videos.js
2018-03-05 10:00:15 +01:00
You can use this script to import videos from all [supported sites of youtube-dl ](https://rg3.github.io/youtube-dl/supportedsites.html ) into PeerTube.
Be sure you own the videos or have the author's authorization to do so.
2018-02-19 09:42:43 +01:00
2018-06-07 11:55:34 +02:00
```sh
2018-09-13 14:27:44 +02:00
$ node dist/server/tools/peertube-import-videos.js \
2018-06-07 11:55:34 +02:00
-u "PEERTUBE_URL" \
-U "PEERTUBE_USER" \
--password "PEERTUBE_PASSWORD" \
-t "TARGET_URL"
2018-02-19 09:42:43 +01:00
```
2018-06-07 11:55:34 +02:00
* `PEERTUBE_URL` : the full URL of your PeerTube server where you want to import, eg: https://peertube.cpy.re
* `PEERTUBE_USER` : your PeerTube account where videos will be uploaded
* `PEERTUBE_PASSWORD` : password of your PeerTube account (if omitted, you will be prompted for it)
* `TARGET_URL` : the target url you want to import. Examples:
* YouTube:
* Channel: https://www.youtube.com/channel/ChannelId
* User https://www.youtube.com/c/UserName or https://www.youtube.com/user/UserName
* Video https://www.youtube.com/watch?v=blabla
* Vimeo: https://vimeo.com/xxxxxx
* Dailymotion: https://www.dailymotion.com/xxxxx
2018-02-19 09:42:43 +01:00
2018-06-12 20:04:58 +02:00
The script will get all public videos from Youtube, download them and upload to PeerTube.
Already downloaded videos will not be uploaded twice, so you can run and re-run the script in case of crash, disconnection...
Videos will be publicly available after transcoding (you can see them before that in your account on the web interface).
2018-03-05 10:00:15 +01:00
2018-09-13 14:27:44 +02:00
### peertube-upload.js
2018-03-05 10:00:15 +01:00
You can use this script to import videos directly from the CLI.
2018-06-12 20:04:58 +02:00
Videos will be publicly available after transcoding (you can see them before that in your account on the web interface).
2018-03-05 10:00:15 +01:00
```
2018-03-22 11:32:43 +01:00
$ cd ${CLONE}
2018-09-13 14:27:44 +02:00
$ node dist/server/tools/peertube-upload.js --help
2018-03-05 10:00:15 +01:00
```
2018-06-07 11:55:34 +02:00
2018-09-13 14:27:44 +02:00
### peertube-watch.js
You can use this script to play videos directly from the CLI.
It provides support for different players:
- ascii (default ; plays in ascii art in your terminal!)
- mpv
- mplayer
- vlc
- stdout
- xbmc
- airplay
- chromecast
2018-06-11 15:47:32 +02:00
## Server tools
These scripts should be run on the server, in `peertube-latest` directory.
2018-06-07 11:55:34 +02:00
2018-08-27 15:33:22 +02:00
### parse-log
To parse PeerTube last log file:
```
$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run parse-log -- --level info
```
`--level` is optional and could be `info` /`warn`/`error`
2018-06-07 11:55:34 +02:00
### create-transcoding-job.js
You can use this script to force transcoding of an existing video.
```
2018-06-11 15:47:32 +02:00
$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- -v [videoUUID]
2018-06-07 11:55:34 +02:00
```
2018-06-15 18:27:35 +02:00
Or to transcode to a specific resolution:
```
$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-transcoding-job -- -v [videoUUID] -r [resolution]
```
2018-06-07 11:55:34 +02:00
### create-import-video-file-job.js
You can use this script to import a video file to replace an already uploaded file or to add a new resolution to a video.
```
2018-06-11 15:47:32 +02:00
$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run create-import-video-file-job -- -v [videoUUID] -i [videoFile]
```
### prune-storage.js
Some transcoded videos or shutdown at a bad time can leave some unused files on your storage.
To delete them (a confirmation will be demanded first):
2018-06-07 11:55:34 +02:00
```
2018-06-11 15:47:32 +02:00
$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run prune-storage
2018-06-21 18:29:28 +02:00
```
### update-host.js
If you started PeerTube with a domain, and then changed it you will have invalid torrent files and invalid URLs in your database.
To fix this, you have to run:
```
$ sudo -u peertube NODE_CONFIG_DIR=/var/www/peertube/config NODE_ENV=production npm run update-host
2018-09-10 13:37:06 +02:00
```