]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - FAQ.md
Move docker do in support/doc
[github/Chocobozzz/PeerTube.git] / FAQ.md
... / ...
CommitLineData
1# FAQ
2
3## If nobody watches a video, is it seeded?
4
5Yes, the origin server always seeds videos uploaded on it thanks to
6[Webseed](http://www.bittorrent.org/beps/bep_0019.html).
7
8
9## What is WebSeed?
10
11It is a BitTorrent extension that allows a server to seed a file through HTTP.
12It just needs to statically serve a file, then the clients will request chunks
13with a `Content-Range` HTTP header.
14
15
16## If a client requests each chunk of a video through HTTP, will the server be overloaded?
17
18Not really. Reverse proxies like Nginx handle very well requests of static
19files. In my tests, it can send chunks at 10MB/s without consuming more than 5%
20of CPU on a very small VPS.
21
22
23## Will an index of all the videos of servers you follow be too large for small servers?
24
25In our benchmarks, 1,000,000 videos takes around 2GB of storage on PostgreSQL.
26We think it is acceptable for a video platform.
27
28
29## What codecs can I use for the videos I want to upload?
30
31WEBM, MP4 or OGV videos.
32
33
34## I want to change my host, how can I do that?
35
36If you already have followers, you can't.
37
38If you don't have any followers, update your configuration and run
39`NODE_ENV=production npm run update-host` to update the torrent files (they contain your domain name).