aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-07-21 10:37:29 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-07-21 10:37:29 +0200
commit1ca81df4d8e9b4769345690e43154aeb7b6dd335 (patch)
tree3b796bab796125df1949c01113123c32c213bf87 /README.md
parentd3b5237869d0dce6d339fef14dd0817e32b38f84 (diff)
downloadPeerTube-1ca81df4d8e9b4769345690e43154aeb7b6dd335.tar.gz
PeerTube-1ca81df4d8e9b4769345690e43154aeb7b6dd335.tar.zst
PeerTube-1ca81df4d8e9b4769345690e43154aeb7b6dd335.zip
Improve README informations
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/README.md b/README.md
index 248057f25..e2ffef0a1 100644
--- a/README.md
+++ b/README.md
@@ -172,17 +172,18 @@ See [ARCHITECTURE.md](https://github.com/Chocobozzz/PeerTube/blob/master/ARCHITE
172 172
173### Backend 173### Backend
174 174
175 * The backend whould be a REST API 175 * The backend is a REST API
176 * Servers would communicate with each others with it 176 * Servers communicate with each others through it
177 * Each server of a network has a list of all other servers of the network 177 * A network is composed by servers that communicate between them
178 * When a new installed server wants to join a network, it just has to get the list of the servers via one server and tell them "Hi I'm new in the network, communicate with me too please" 178 * Each server of a network has a list of all other servers of this network
179 * When a new installed server wants to join a network, it just has to get the servers list through a server that is already in the network and tell "Hi I'm new in the network, communicate with me and share me your servers list please". Then the server will "make friend" with each server of this list
179 * Each server has its own users who query it (search videos, where the torrent URI of this specific video is...) 180 * Each server has its own users who query it (search videos, where the torrent URI of this specific video is...)
180 * Server begins to seed and sends to the other servers of the network the video information (name, short description, torrent URI) of a new uploaded video 181 * If an user upload a video, the server seeds it and sends the video informations (name, short description, torrent URI...) to each server of the network
181 * Each server has a RSA key to encrypt and sign communications with other servers 182 * Each server has a RSA key to encrypt and sign communications with other servers
182 * A server is a tracker responsible for all the videos uploaded in it 183 * A server is a tracker responsible for all the videos uploaded in it
183 * Even if nobody watches a video, it is seeded by the server where the video was uploaded 184 * Even if nobody watches a video, it is seeded by the server where the video was uploaded
184 * A server would run webtorrent-hybrid to be a bridge with webrtc/standard bittorrent protocol
185 * A network can live and evolve by expelling bad pod (with too many downtimes for example) 185 * A network can live and evolve by expelling bad pod (with too many downtimes for example)
186 * A server **would** run webtorrent-hybrid to be a bridge with webrtc/standard bittorrent protocol
186 187
187See the ARCHITECTURE.md for more informations. Do not hesitate to give your opinion :) 188See the ARCHITECTURE.md for more informations. Do not hesitate to give your opinion :)
188 189
@@ -204,5 +205,5 @@ Here are some simple schemes:
204 205
205### Frontend 206### Frontend
206 207
207There would be a simple frontend (Bootstrap, AngularJS) but since the backend is a REST API anybody could build a frontend (Web application, desktop application...). 208There already is a frontend (Angular 2) but the backend is a REST API so anybody can build a frontend (Web application, desktop application...).
208The backend uses bittorrent protocol, so users could use their favorite bittorrent client to download/play the video after having its torrent URI. 209The backend uses bittorrent protocol, so users could use their favorite bittorrent client to download/play the video with its torrent URI.