2018-03-05 04:00:15 -05:00
|
|
|
# CLI tools guide
|
2018-02-19 03:42:43 -05:00
|
|
|
|
|
|
|
- [Installation](#installation)
|
|
|
|
- [Usage](#usage)
|
2018-03-06 02:27:20 -05:00
|
|
|
- [import-videos.js](#import-videosjs)
|
|
|
|
- [upload.js](#uploadjs)
|
2018-06-07 05:55:34 -04:00
|
|
|
- [create-transcoding-job.js](#create-transcoding-jobjs)
|
|
|
|
- [create-import-video-file-job.js](#create-import-video-file-jobjs)
|
2018-02-19 03:42:43 -05:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
2018-03-14 04:15:17 -04: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-03-22 06:32:43 -04:00
|
|
|
You need to follow all the following steps even if you are on a PeerTube server.
|
2018-02-19 03:42:43 -05:00
|
|
|
|
|
|
|
### Dependencies
|
|
|
|
|
2018-03-05 04:00:15 -05:00
|
|
|
Install the [PeerTube dependencies](dependencies.md).
|
2018-02-19 03:42:43 -05:00
|
|
|
|
|
|
|
### Installation
|
|
|
|
|
2018-03-14 04:15:17 -04:00
|
|
|
Clone the PeerTube repo to get the latest version (even if you are on your PeerTube server):
|
2018-02-19 03:42:43 -05:00
|
|
|
|
|
|
|
```
|
2018-03-22 06:32:43 -04:00
|
|
|
$ git clone https://github.com/Chocobozzz/PeerTube.git
|
|
|
|
$ CLONE="$(pwd)/PeerTube"
|
2018-02-19 03:42:43 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
Run ``yarn install``
|
|
|
|
```
|
2018-03-22 06:32:43 -04:00
|
|
|
$ cd ${CLONE}
|
|
|
|
$ yarn install
|
2018-02-19 03:42:43 -05:00
|
|
|
```
|
|
|
|
|
|
|
|
Build server tools:
|
|
|
|
```
|
2018-03-22 06:32:43 -04:00
|
|
|
$ cd ${CLONE}
|
|
|
|
$ npm run build:server
|
2018-02-19 03:42:43 -05:00
|
|
|
```
|
|
|
|
|
2018-03-05 04:00:15 -05:00
|
|
|
## Tools
|
2018-02-19 03:42:43 -05:00
|
|
|
|
2018-03-05 04:00:15 -05:00
|
|
|
### import-videos.js
|
|
|
|
|
|
|
|
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 03:42:43 -05:00
|
|
|
|
2018-06-07 05:55:34 -04:00
|
|
|
```sh
|
|
|
|
$ node dist/server/tools/import-videos.js \
|
|
|
|
-u "PEERTUBE_URL" \
|
|
|
|
-U "PEERTUBE_USER" \
|
|
|
|
--password "PEERTUBE_PASSWORD" \
|
|
|
|
-t "TARGET_URL"
|
2018-02-19 03:42:43 -05:00
|
|
|
```
|
|
|
|
|
2018-06-07 05:55:34 -04: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 03:42:43 -05:00
|
|
|
|
2018-02-19 05:12:58 -05: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...
|
2018-03-05 04:00:15 -05:00
|
|
|
|
|
|
|
### upload.js
|
|
|
|
|
|
|
|
You can use this script to import videos directly from the CLI.
|
|
|
|
|
|
|
|
```
|
2018-03-22 06:32:43 -04:00
|
|
|
$ cd ${CLONE}
|
|
|
|
$ node dist/server/tools/upload.js --help
|
2018-03-05 04:00:15 -05:00
|
|
|
```
|
2018-06-07 05:55:34 -04:00
|
|
|
|
|
|
|
## Tools to create jobs in the queue
|
|
|
|
|
|
|
|
### create-transcoding-job.js
|
|
|
|
|
|
|
|
You can use this script to force transcoding of an existing video.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ npm run create-transcoding-job -- -v [videoUUID]
|
|
|
|
```
|
|
|
|
|
|
|
|
### 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.
|
|
|
|
|
|
|
|
```
|
|
|
|
$ npm run create-import-video-file-job -- -v [videoUUID] -i [videoFile]
|
|
|
|
```
|