diff options
author | LecygneNoir <victor.jlc@laposte.net> | 2018-02-19 09:42:43 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-02-19 09:42:43 +0100 |
commit | 2519d9fec6f84906d1b10770be791ad367186ca7 (patch) | |
tree | 935b88ac0c71b60b207797452a1c326cb84c14e4 /support/doc/import-youtube.md | |
parent | d5b53822ae7e1660cebe3a35be5ce76ea73dc1b9 (diff) | |
download | PeerTube-2519d9fec6f84906d1b10770be791ad367186ca7.tar.gz PeerTube-2519d9fec6f84906d1b10770be791ad367186ca7.tar.zst PeerTube-2519d9fec6f84906d1b10770be791ad367186ca7.zip |
add import-youtube guide inside documentation (#298)
* add import-youtube guide inside documentation
* safer to use unlink instead of rm to delete symbolic link, avoid risk of deleting entire directories in case of syntax error
* spelling mistake corrections
* anonymise URLs
* git also needed as dependencies to run yarn install
Diffstat (limited to 'support/doc/import-youtube.md')
-rw-r--r-- | support/doc/import-youtube.md | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/support/doc/import-youtube.md b/support/doc/import-youtube.md new file mode 100644 index 000000000..3b8b515a7 --- /dev/null +++ b/support/doc/import-youtube.md | |||
@@ -0,0 +1,57 @@ | |||
1 | # Import videos from Youtube guide | ||
2 | |||
3 | You can use this script to import videos from Youtube channel to Peertube. | ||
4 | Be sure you own the videos or have the author's authorization to do so. | ||
5 | |||
6 | - [Installation](#installation) | ||
7 | - [Usage](#usage) | ||
8 | |||
9 | ## Installation | ||
10 | |||
11 | ## Prerequisites | ||
12 | |||
13 | You need at least 512MB RAM to run the script. | ||
14 | Importation can be launched directly from a peertube server (in this case you already have dependencies installed :+1:) or from a separate server, even a dekstop PC. | ||
15 | |||
16 | ### Dependencies | ||
17 | |||
18 | If you do not run the script from a Peertube server, you need to follow the steps of the [dependencies guide](dependencies.md). | ||
19 | |||
20 | ### Installation | ||
21 | |||
22 | Clone the Peertube repo to get the latest version inside your server: | ||
23 | |||
24 | ``` | ||
25 | git clone https://github.com/Chocobozzz/PeerTube.git | ||
26 | CLONE="$(pwd)/Peertube" | ||
27 | ``` | ||
28 | |||
29 | Run ``yarn install`` | ||
30 | ``` | ||
31 | cd ${CLONE} | ||
32 | yarn install | ||
33 | ``` | ||
34 | |||
35 | Build server tools: | ||
36 | ``` | ||
37 | cd ${CLONE} | ||
38 | npm run build:server | ||
39 | ``` | ||
40 | |||
41 | |||
42 | ## Usage | ||
43 | |||
44 | You are now ready to run the script : | ||
45 | |||
46 | ``` | ||
47 | cd ${CLONE} | ||
48 | node dist/server/tools/import-youtube.js -u "PEERTUBE_URL" -U "PEERTUBE_USER" --password "PEERTUBE_PASSWORD" -y "YOUTUBE_URL" | ||
49 | ``` | ||
50 | |||
51 | - PEERTUBE_URL : the full URL of your peertube server where you want to import, eg: https://peertube.cpy.re/ | ||
52 | - PEERTUBE_USER : your peertube account where videos will be uploaded | ||
53 | - PEERTUBE_PASSWORD : password of your peertube account | ||
54 | - YOUTUBE_URL : the youtube channel you want to import. Supports Youtube channel (eg https://www.youtube.com/channel/ChannelId) or Youtube user (eg: https://www.youtube.com/c/UserName or https://www.youtube.com/user/UserName) | ||
55 | |||
56 | The script will get all public videos from Youtube, download them, then upload to Peertube. | ||
57 | Already downloaded videos will not be uploaded twice, so you can run and re-run the script in case of crash, disconnection, ... without problem. \ No newline at end of file | ||