Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent and Angular.
TypeScript HTML CSS Other
Permalink
Failed to load latest commit information.
.github Add translation guide Jun 21, 2018
client filter to Cap the maximum resolution to the screen resolution Jun 30, 2018
config Add warning regarding transcoding Jun 7, 2018
scripts Fix npm run dev:server Jun 29, 2018
server Handle higher FPS for high resolution (test) Jun 29, 2018
shared Handle higher FPS for high resolution (test) Jun 29, 2018
support Increase upload limit to 8GB (test) Jun 29, 2018
.codeclimate.yml Fetch outbox to grab old activities Nov 27, 2017
.dockerignore Improve dockerfile Apr 16, 2018
.editorconfig add .editorconfig to maintain consistent coding styles (#429) Mar 29, 2018
.gitignore Update iso639 translations for french and deutch Jun 19, 2018
.prettierignore added linter and prettifier via commit hooks May 13, 2018
.prettierrc.yml Upgrade to rxjs 6 May 16, 2018
.sass-lint.yml Blue links color in comments Jun 18, 2018
.travis.yml Test travis retry Jun 21, 2018
ARCHITECTURE.md Try to improve documentations/readme Jan 12, 2018
CHANGELOG.md Fix changelog syntax related to AP url warning Jun 25, 2018
CODE_OF_CONDUCT.md Add `etc` on some points of the CoC (#305) Feb 20, 2018
CREDITS.md Fix git credits Jun 22, 2018
FAQ.md (doc) out of date summary with broken link + rephrase (#621) Jun 3, 2018
LICENSE Change licence to AGPL Feb 24, 2017
README.md Add "What is PeerTube" video in README Jun 22, 2018
package.json (feed) adding thumbnail support for RSS feed Jun 29, 2018
server.ts Do not enable cors twice on /api in test mode Jun 29, 2018
tsconfig.json feature: initial syndication feeds tests for instance-wide feeds Apr 26, 2018
tslint.json Fix lint momory issues Mar 8, 2018
yarn.lock (feed) adding thumbnail support for RSS feed Jun 29, 2018
zanata.xml Prepare i18n files Jun 5, 2018

README.md

PeerTube

Federated (ActivityPub) video streaming platform using P2P (BitTorrent) directly in the web browser with WebTorrent.

We are running a crowdfunding campaign to pave the road to version 1.0 of PeerTube!

Client
Dependency Status devDependency Status

Server
Build Status Dependencies Status devDependency Status JavaScript Style Guide PeerTube Freenode IRC


screenshot

Getting Started

Demonstration

Want to see it in action?

Why

We can't build a FOSS video streaming alternatives to YouTube, Dailymotion, Vimeo... with a centralized software. One organization alone may not have enough money to pay for bandwidth and video storage of its servers.

So we need to have a decentralized network of servers seeding videos (as Diaspora for example). But it's not enough because one video could become famous and overload the server. It's the reason why we need to use a P2P protocol to limit the server load. Thanks to WebTorrent, we can make P2P (thus BitTorrent) inside the web browser, as of today.

Dependencies

  • nginx
  • PostgreSQL
  • Redis
  • NodeJS >= 8.x
  • yarn
  • OpenSSL (cli)
  • FFmpeg >= 3.x

Run using Docker

See the docker guide

Run on YunoHost

Install Peertube with YunoHost

Peertube app for YunoHost. See here

Production

See the production guide.

Contribute/Translate/Test

See the contributing guide to see how to test or contribute to PeerTube (write documentation, translate, develop...). Spoiler alert: you don't need to be a coder to help!

API REST documentation

Quick Start: /support/doc/api/quickstart.md

Endpoints documentation:

Tools

FAQ

If you have a question, please try to find the answer in the FAQ first.

Architecture

See ARCHITECTURE.md for a more detailed explanation.

Backend

  • The backend is a REST API.
  • Servers communicate with each others with Activity Pub.
  • Each server has its own users who query it (search videos, query where the torrent URI of this specific video is...).
  • If a user uploads a video, the server seeds it and sends its followers some metadata (name, short description, torrent URI...).
  • A server is a tracker responsible for all the videos uploaded in it.
  • Even if nobody watches a video, it is seeded by the server (through WebSeed protocol) where the video was uploaded.

Here are some simple schemes:

Decentralized Watch a video Watch a P2P video

License

Copyright (C) 2018 PeerTube Contributors

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.

You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.