PeerTube (7.1.0)

Download OpenAPI specification:Download

The PeerTube API is built on HTTP(S) and is RESTful. You can use your favorite HTTP/REST library for your programming language to use PeerTube. The spec API is fully compatible with openapi-generator which generates a client SDK in the language of your choice - we generate some client SDKs automatically:

See the REST API quick start for a few examples of using the PeerTube API.

Authentication

When you sign up for an account on a PeerTube instance, you are given the possibility to generate sessions on it, and authenticate there using an access token. Only one access token can currently be used at a time.

Roles

Accounts are given permissions based on their role. There are three roles on PeerTube: Administrator, Moderator, and User. See the roles guide for a detail of their permissions.

Errors

The API uses standard HTTP status codes to indicate the success or failure of the API call, completed by a RFC7807-compliant response body.

HTTP 1.1 404 Not Found
Content-Type: application/problem+json; charset=utf-8

{
  "detail": "Video not found",
  "docs": "https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo",
  "status": 404,
  "title": "Not Found",
  "type": "about:blank"
}

We provide error type (following RFC7807) and code (internal PeerTube code) values for a growing number of cases, but it is still optional. Types are used to disambiguate errors that bear the same status code and are non-obvious:

HTTP 1.1 403 Forbidden
Content-Type: application/problem+json; charset=utf-8

{
  "detail": "Cannot get this video regarding follow constraints",
  "docs": "https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo",
  "status": 403,
  "title": "Forbidden",
  "type": "https://docs.joinpeertube.org/api-rest-reference.html#section/Errors/does_not_respect_follow_constraints"
}

Here a 403 error could otherwise mean that the video is private or blocklisted.

Validation errors

Each parameter is evaluated on its own against a set of rules before the route validator proceeds with potential testing involving parameter combinations. Errors coming from validation errors appear earlier and benefit from a more detailed error description:

HTTP 1.1 400 Bad Request
Content-Type: application/problem+json; charset=utf-8

{
  "detail": "Incorrect request parameters: id",
  "docs": "https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo",
  "instance": "/api/v1/videos/9c9de5e8-0a1e-484a-b099-e80766180",
  "invalid-params": {
    "id": {
      "location": "params",
      "msg": "Invalid value",
      "param": "id",
      "value": "9c9de5e8-0a1e-484a-b099-e80766180"
    }
  },
  "status": 400,
  "title": "Bad Request",
  "type": "about:blank"
}

Where id is the name of the field concerned by the error, within the route definition. invalid-params.<field>.location can be either 'params', 'body', 'header', 'query' or 'cookies', and invalid-params.<field>.value reports the value that didn't pass validation whose invalid-params.<field>.msg is about.

Deprecated error fields

Some fields could be included with previous versions. They are still included but their use is deprecated:

  • error: superseded by detail

Rate limits

We are rate-limiting all endpoints of PeerTube's API. Custom values can be set by administrators:

Endpoint (prefix: /api/v1) Calls Time frame
/* 50 10 seconds
POST /users/token 15 5 minutes
POST /users/register 2* 5 minutes
POST /users/ask-send-verify-email 3 5 minutes

Depending on the endpoint, *failed requests are not taken into account. A service limit is announced by a 429 Too Many Requests status code.

You can get details about the current state of your rate limit by reading the following headers:

Header Description
X-RateLimit-Limit Number of max requests allowed in the current time period
X-RateLimit-Remaining Number of remaining requests in the current time period
X-RateLimit-Reset Timestamp of end of current time period as UNIX timestamp
Retry-After Seconds to delay after the first 429 is received

CORS

This API features Cross-Origin Resource Sharing (CORS), allowing cross-domain communication from the browser for some routes:

| Endpoint | |------------------------- ---| | /api/* | | /download/* | | /lazy-static/* | | /.well-known/webfinger |

In addition, all routes serving ActivityPub are CORS-enabled for all origins.

Static Video Files

Get public Web Video file

PeerTube >= 6.0

path Parameters
filename
required
string

Filename

Responses

Get private Web Video file

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
filename
required
string

Filename

query Parameters
videoFileToken
string

Video file token generated by PeerTube so you don't need to provide an OAuth token in the request header.

Responses

Get public HLS video file

Authorizations:
OAuth2
path Parameters
filename
required
string

Filename

Responses

Get private HLS video file

Authorizations:
OAuth2
path Parameters
filename
required
string

Filename

query Parameters
reinjectVideoFileToken
boolean

Ask the server to reinject videoFileToken in URLs in m3u8 playlist

videoFileToken
string

Video file token generated by PeerTube so you don't need to provide an OAuth token in the request header.

Responses

Video Download

Download video files

Download video file

Generate a mp4 container that contains at most 1 video stream and at most 1 audio stream. Mainly used to merge the HLS audio only video file and the HLS video only resolution file.

path Parameters
videoId
required
integer >= 1
Example: 42

The video id

query Parameters
videoFileIds
required
Array of integers

streams of video files to mux in the output

videoFileToken
string

Video file token generated by PeerTube so you don't need to provide an OAuth token in the request header.

Responses

Video Feeds

Server syndication feeds of videos

Comments on videos feeds

path Parameters
format
required
string
Enum: "xml" "rss" "rss2" "atom" "atom1" "json" "json1"

format expected (we focus on making rss the most featureful ; it serves Media RSS)

query Parameters
accountId
string

limit listing comments to videos of a specific account

accountName
string

limit listing comments to videos of a specific account

videoChannelId
string

limit listing comments to videos of a specific video channel

videoChannelName
string

limit listing comments to videos of a specific video channel

videoId
string

limit listing comments to a specific video

Responses

Response samples

Content type
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>PeerTube Nightly</title>
        <link>https://peertube2.cpy.re</link>
        <description>This instance is a test instance of the PeerTube project. It is updated to the latest commit in the develop branch every business day, 8pm CET.</description>
        <lastBuildDate>Wed, 02 Jul 2025 03:03:35 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>PeerTube - https://peertube2.cpy.re</generator>
        <image>
            <title>PeerTube Nightly</title>
            <url>https://peertube2.cpy.re/client/assets/images/icons/icon-96x96.png</url>
            <link>https://peertube2.cpy.re</link>
        </image>
        <copyright>All rights reserved, unless otherwise specified in the terms specified at https://peertube2.cpy.re/about and potential licenses granted by each content's rightholder.</copyright>
        <atom:link href="https://peertube2.cpy.re/feeds/video-comments.xml?scope=local" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[Il refait ses dessins après son opération au cerveau II - JB Meybeck]]></title>
            <link>https://peertube2.cpy.re/w/uZwwwsRgLDoMsWEU9sBbuV;threadId=181514</link>
            <guid>https://peertube2.cpy.re/w/uZwwwsRgLDoMsWEU9sBbuV;threadId=181514</guid>
            <pubDate>Mon, 30 Jun 2025 10:22:13 GMT</pubDate>
            <content:encoded><![CDATA[<p>❤️</p>
]]></content:encoded>
            <dc:creator>JB Meybeck</dc:creator>
        </item>
        <item>
            <title><![CDATA[Il refait ses dessins après son opération au cerveau II - JB Meybeck]]></title>
            <link>https://peertube2.cpy.re/w/uZwwwsRgLDoMsWEU9sBbuV;threadId=181513</link>
            <guid>https://peertube2.cpy.re/w/uZwwwsRgLDoMsWEU9sBbuV;threadId=181513</guid>
            <pubDate>Mon, 30 Jun 2025 10:21:53 GMT</pubDate>
            <content:encoded><![CDATA[<p>@pascal_c1 Tu taffes sur le sujet, comme ça après tu fais une conf à l'Eurêkafé et pis un bouquin ^^</p>
]]></content:encoded>
            <dc:creator>JB Meybeck</dc:creator>
        </item>
        <item>
            <title><![CDATA[Fascisme, blocus et génocide : on s’organise et on combat - InternetDev-Anti-Communicant🍉]]></title>
            <link>https://peertube2.cpy.re/w/eXcARPNbabd4gQqsRUCNAX;threadId=181537</link>
            <guid>https://peertube2.cpy.re/w/eXcARPNbabd4gQqsRUCNAX;threadId=181537</guid>
            <pubDate>Mon, 30 Jun 2025 04:29:52 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> </p><p>Bien d'organiser le combat,  mieux de voir venir AVANT que 
1 - tout est lié
2 - et que le génocide  , comme le glissement raciste de la France et pas que, a commencé dés 2003 / 2005 / 2009 2011 / 2012 / 2014 etc....</p><p>Tout est lié; mais ces enculés qui ,nous bombardent de propagandes croient qu'on a tout oublié. (et parfois je crains qu'ils aient raison quand on voit comment même à gauche trop tardent)</p>]]></content:encoded>
            <dc:creator>InternetDev-Anti-Communicant🍉</dc:creator>
        </item>
        <item>
            <title><![CDATA[🦏 Gaza, Iran, etc. : pour les grands médias, Israël a tous les droits - Loupdescimes]]></title>
            <link>https://peertube2.cpy.re/w/9hMvy777CPj7w8jYWjYqcp;threadId=181535</link>
            <guid>https://peertube2.cpy.re/w/9hMvy777CPj7w8jYWjYqcp;threadId=181535</guid>
            <pubDate>Sun, 29 Jun 2025 18:20:11 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> et oui Truchot, Mabrouk, Fourest, Praud...les étrons du PAF</p>]]></content:encoded>
            <dc:creator>Loupdescimes</dc:creator>
        </item>
        <item>
            <title><![CDATA[IAgricole, un drone réparable et mutualisé pour limiter la consommation de pesticides et d’eau - Stéphane Crozat]]></title>
            <link>https://peertube2.cpy.re/w/2XkMFMpjUHpUfZsS3R5R6T;threadId=181522</link>
            <guid>https://peertube2.cpy.re/w/2XkMFMpjUHpUfZsS3R5R6T;threadId=181522</guid>
            <pubDate>Fri, 27 Jun 2025 17:36:23 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://aperi.tube/accounts/stph" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>stph@aperi.tube</span></a></span> <a href="https://framapiaf.org/tags/lownum" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>lownum</span></a> <a href="https://framapiaf.org/tags/drone" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>drone</span></a> <span><a href="https://mastodon.social/@IAgricole" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>IAgricole</span></a></span></p>]]></content:encoded>
            <dc:creator>Stéphane Crozat</dc:creator>
        </item>
        <item>
            <title><![CDATA[Low-Tech Push - Stéphane Crozat]]></title>
            <link>https://peertube2.cpy.re/w/8WydfbnH6axnCscfE2UAj5;threadId=181521</link>
            <guid>https://peertube2.cpy.re/w/8WydfbnH6axnCscfE2UAj5;threadId=181521</guid>
            <pubDate>Fri, 27 Jun 2025 17:36:08 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://aperi.tube/accounts/stph" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>stph@aperi.tube</span></a></span> <a href="https://framapiaf.org/tags/lownum" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>lownum</span></a> <a href="https://framapiaf.org/tags/lowtech" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>lowtech</span></a> <span><a href="https://piaille.fr/@IS03_lowtechpush" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>IS03_lowtechpush</span></a></span></p>]]></content:encoded>
            <dc:creator>Stéphane Crozat</dc:creator>
        </item>
        <item>
            <title><![CDATA[Pourquoi les gens ne savent pas voter ? - Syl ⏚]]></title>
            <link>https://peertube2.cpy.re/w/2KtyfNG2VboJgYU7os8YWk;threadId=181520</link>
            <guid>https://peertube2.cpy.re/w/2KtyfNG2VboJgYU7os8YWk;threadId=181520</guid>
            <pubDate>Fri, 27 Jun 2025 14:45:46 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> et rappelez-vous les gens, votez bien !</p>]]></content:encoded>
            <dc:creator>Syl ⏚</dc:creator>
        </item>
        <item>
            <title><![CDATA[Agribots - Stéphane Crozat]]></title>
            <link>https://peertube2.cpy.re/w/iDbtUCNQcoPMFkvjLmD5h1;threadId=181518</link>
            <guid>https://peertube2.cpy.re/w/iDbtUCNQcoPMFkvjLmD5h1;threadId=181518</guid>
            <pubDate>Fri, 27 Jun 2025 10:34:49 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://aperi.tube/accounts/stph" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>stph@aperi.tube</span></a></span> <span><a href="https://mastodon.social/@agribots" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>agribots</span></a></span> <a href="https://framapiaf.org/tags/lownum" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>lownum</span></a></p>]]></content:encoded>
            <dc:creator>Stéphane Crozat</dc:creator>
        </item>
        <item>
            <title><![CDATA[Le Notebook : un ordinateur portable pour durer 50 ans - Stéphane Crozat]]></title>
            <link>https://peertube2.cpy.re/w/pP8fxY5ykUcncaahneg1F7;threadId=181517</link>
            <guid>https://peertube2.cpy.re/w/pP8fxY5ykUcncaahneg1F7;threadId=181517</guid>
            <pubDate>Fri, 27 Jun 2025 10:34:28 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://aperi.tube/accounts/stph" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>stph@aperi.tube</span></a></span> <span><a href="https://mastodon.social/@notebook_project" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>notebook_project</span></a></span> <a href="https://framapiaf.org/tags/lownum" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>lownum</span></a> <a href="https://framapiaf.org/tags/permacomputing" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>permacomputing</span></a></p>]]></content:encoded>
            <dc:creator>Stéphane Crozat</dc:creator>
        </item>
        <item>
            <title><![CDATA[Microscope lowtechisé - Stéphane Crozat]]></title>
            <link>https://peertube2.cpy.re/w/8ixvTdRF45N3mXwGPr1fKC;threadId=181516</link>
            <guid>https://peertube2.cpy.re/w/8ixvTdRF45N3mXwGPr1fKC;threadId=181516</guid>
            <pubDate>Fri, 27 Jun 2025 10:34:04 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://aperi.tube/accounts/stph" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>stph@aperi.tube</span></a></span> <span><a href="https://mastodon.social/@microscope" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>microscope</span></a></span> <a href="https://framapiaf.org/tags/lownum" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>lownum</span></a></p>]]></content:encoded>
            <dc:creator>Stéphane Crozat</dc:creator>
        </item>
        <item>
            <title><![CDATA[Le Wokisme rend bête et méchant - admin]]></title>
            <link>https://peertube2.cpy.re/w/fA3FzoHpnWrkPZ9uB8NpJ1;threadId=181528</link>
            <guid>https://peertube2.cpy.re/w/fA3FzoHpnWrkPZ9uB8NpJ1;threadId=181528</guid>
            <pubDate>Thu, 26 Jun 2025 17:32:23 GMT</pubDate>
            <content:encoded><![CDATA[<p>@impromptux@video.liberta.vip 1) La haute finance soutient le Wokisme. Les élections ne sont qu'un leurre pour faire croire à la population qu'elle possède encore le moindre pouvoir. Le pouvoir en régime capitaliste (surtout la phase que l'on connait actuellement) est fonction de ton portefeuille, rien d'autre.<br />
2) On s'en fout que sa blesse ou gène. Imagine si je dis demain que je suis gêné par toi, on fait quoi ? On te bannit de la société ??? A l'origine du monde c'était celui qui gênait à la majorité qui sortait.<br />
3) Pour un marxiste-léniniste, le mot centre signifie: Social-Libéral. Un radis, Blanc à l'intérieur et Rouge à l'extérieur et toujours près de l'assiette au beurre.<br />
4) Non les mouvements ne représentent plus les LGBT standards mais une clique de jouisseurs sans entrave qui veulent redéfinir le monde pour eux (BOBOS-LGBT).</p>
<p>Regarde les sources que je t'ai passé.</p>
]]></content:encoded>
            <dc:creator>admin</dc:creator>
        </item>
        <item>
            <title><![CDATA[Le Wokisme rend bête et méchant - impromptux]]></title>
            <link>https://peertube2.cpy.re/w/fA3FzoHpnWrkPZ9uB8NpJ1;threadId=181528</link>
            <guid>https://peertube2.cpy.re/w/fA3FzoHpnWrkPZ9uB8NpJ1;threadId=181528</guid>
            <pubDate>Thu, 26 Jun 2025 15:57:10 GMT</pubDate>
            <content:encoded><![CDATA[<p>Que dire de plus… Vous n'avez rien compris au fond de mon message. Aujourd'hui traiter de woke n'importe qui sert en réalité à décrédibiliser des luttes importantes comme celles contre le racisme. Je suis cependant d'accord avec votre avis sur l'impact négatif du wokisme sur les luttes sociales et sur l'égalité en général.<br />
Vous m'accusez de plein de propos que je n'ai jamais exprimés(voir 9:57 par exemple).<br />
En 11:54, vous dites que j'utilise l'opinion du moment. Au vu de la progression du populisme d’extrême droite (états unis, Italie, Hongrie, Finlande…), vous m'accusez donc d'être d’extrême droite? À moins que vous ne rejoigniez vous-même l'opinion du moment, celle selon laquelle le wokisme est en train de prendre le pouvoir (alors que, au vu des résultats des élections récentes, il me semble que ce n'est pas le cas).<br />
"Je demande à ce que le libre ne fasse pas le tri"(12:13): Je suis totalement d'accord avec vous mais je considère que, pour cela, le libre ne doit pas être politique, ne parlons pas de politique sur les listes de discussion de projets libres et le problème serait réglé. Dans le cas contraire, certaines idées politique pourraient blesser ou gêner d'autres personnes et les rendre réticentes à la participation à ces logiciels ce qui limiterait le côté collaboratif de ces projets libres.<br />
14:35 : Non! Je me suis mal exprimé: ce que je signifie par "centre gauche" c'est une gauche qui combat le capitalisme sans vouloir défendre des propositions purement idéologiques alors qu'elles ne sont pas réalisables et une gauche qui s'oppose aux extrêmes(droite comme gauche) et donc au wokisme.</p>
<p>En résumé, je suis à la fois contre le racisme et contre le wokisme ce qui semble difficile à défendre en cette époque où l’extrémisme et le populisme progressent.</p>
<p>Je précise quand même: ma vision du libre est celle d'un communauté de bénévoles qui s'entraident sans en demander en échange, je suis d'accord avec vous, cette vision n'existe plus aujourd'hui sauf dans de tout petits projets. Mais elle n'a jamais été plus présente: aux débuts du logiciel libre, c'était de petite communautés qui travaillaient sur de petits projets: aujourd'hui, de grandes entreprises ou organisation ce sont ajoutée à cette édifice mais de petites communautés perdurent.</p>
<p>J'ai aussi des questions:<br />
En 11:30 vous dites que vous tolérez les personnes pas les mouvements, signifiez-vous tous les mouvements ou seulement ceux se comportant de façon extrême?<br />
Pourquoi m'avoir à la fois accusé d'être macroniste à un moment puis wokiste à un autre? N'est-ce pas une incohérence?</p>
<p>Quoi qu'il en soit, merci d'avoir répondu à mon message et de m'avoir permis de mieux comprendre votre point de vue.<br />
Bonne journée.</p>
]]></content:encoded>
            <dc:creator>impromptux</dc:creator>
        </item>
        <item>
            <title><![CDATA[Il refait ses dessins après son opération au cerveau II - Pascal C1]]></title>
            <link>https://peertube2.cpy.re/w/uZwwwsRgLDoMsWEU9sBbuV;threadId=181514</link>
            <guid>https://peertube2.cpy.re/w/uZwwwsRgLDoMsWEU9sBbuV;threadId=181514</guid>
            <pubDate>Thu, 26 Jun 2025 11:32:09 GMT</pubDate>
            <content:encoded><![CDATA[<p>La croyance en des cathares dualistes aux XIIe et XIIIe siècle a beaucoup été promue par l'anthroposophe Déodat Roché... Mais il ne l'a peut-être pas inventée et il n'était peut-être pas seul...</p>
]]></content:encoded>
            <dc:creator>Pascal C1</dc:creator>
        </item>
        <item>
            <title><![CDATA[Il refait ses dessins après son opération au cerveau II - Pascal C1]]></title>
            <link>https://peertube2.cpy.re/w/uZwwwsRgLDoMsWEU9sBbuV;threadId=181513</link>
            <guid>https://peertube2.cpy.re/w/uZwwwsRgLDoMsWEU9sBbuV;threadId=181513</guid>
            <pubDate>Thu, 26 Jun 2025 11:30:26 GMT</pubDate>
            <content:encoded><![CDATA[<p>03:30 Alooooors ! Une partie de moi a envie de te répondre "Bien-sûr! On fait ça quand tu veux!"<br />
Et l'autre partie de moi a conscience de ne pas savoir le 10e de tout ce qu'il y a à savoir sur le sujet ^^<br />
Du coup je sais pas, si tu veux on peut faire un live ensemble mais je risque de beaucoup dire "je sais pas" XD</p>
]]></content:encoded>
            <dc:creator>Pascal C1</dc:creator>
        </item>
        <item>
            <title><![CDATA[Intergalactic Wasabi Mix - Live Mix by snowdusk - Episode 1148 - aNONradio.net - 2025/06/22 - vidak]]></title>
            <link>https://peertube2.cpy.re/w/viJ331BGu6x1CvLzbiBJbQ;threadId=181512</link>
            <guid>https://peertube2.cpy.re/w/viJ331BGu6x1CvLzbiBJbQ;threadId=181512</guid>
            <pubDate>Thu, 26 Jun 2025 09:00:49 GMT</pubDate>
            <content:encoded><![CDATA[<p>this looks amazing</p>
]]></content:encoded>
            <dc:creator>vidak</dc:creator>
        </item>
        <item>
            <title><![CDATA[Nucléaire iranien : le revirement inattendu de Trump - Lien Rag]]></title>
            <link>https://peertube2.cpy.re/w/iEn9rh95HANCeJEa3JH7LE;threadId=181508</link>
            <guid>https://peertube2.cpy.re/w/iEn9rh95HANCeJEa3JH7LE;threadId=181508</guid>
            <pubDate>Tue, 24 Jun 2025 19:07:47 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast</span></a></span> </p><p>"Un sujet qui fait un peu moins la une : l'Iran"
Ça a pas tout à fait bien vieilli...</p>]]></content:encoded>
            <dc:creator>Lien Rag</dc:creator>
        </item>
        <item>
            <title><![CDATA[Intergalactic Wasabi Mix - Live Mix by snowdusk - on aNONradio.net! - snowdusk]]></title>
            <link>https://peertube2.cpy.re/w/37RMa2Mw9fj7BfAVhypVqa;threadId=181503</link>
            <guid>https://peertube2.cpy.re/w/37RMa2Mw9fj7BfAVhypVqa;threadId=181503</guid>
            <pubDate>Sun, 22 Jun 2025 03:41:25 GMT</pubDate>
            <content:encoded><![CDATA[<p>@rat@social.sdf.org YESSS! YAY! Thank you for tuning in and for chatting on com earlier!</p>
]]></content:encoded>
            <dc:creator>snowdusk</dc:creator>
        </item>
        <item>
            <title><![CDATA[Intergalactic Wasabi Mix - Live Mix by snowdusk - on aNONradio.net! - 𝚛𝚊𝚝]]></title>
            <link>https://peertube2.cpy.re/w/37RMa2Mw9fj7BfAVhypVqa;threadId=181503</link>
            <guid>https://peertube2.cpy.re/w/37RMa2Mw9fj7BfAVhypVqa;threadId=181503</guid>
            <pubDate>Sat, 21 Jun 2025 23:21:30 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://toobnix.org/accounts/snowdusk" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>snowdusk</span></a></span> HI-NRG NITE TONITE! ❤️ 🎶</p>]]></content:encoded>
            <dc:creator>𝚛𝚊𝚝</dc:creator>
        </item>
        <item>
            <title><![CDATA[anonradio - 𝚛𝚊𝚝]]></title>
            <link>https://peertube2.cpy.re/w/5SoZiTxRU4jm5zXg8CQj6k;threadId=181502</link>
            <guid>https://peertube2.cpy.re/w/5SoZiTxRU4jm5zXg8CQj6k;threadId=181502</guid>
            <pubDate>Sat, 21 Jun 2025 21:28:47 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://toobnix.org/accounts/tanakian" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>tanakian</span></a></span> very nice mix 🎶</p>]]></content:encoded>
            <dc:creator>𝚛𝚊𝚝</dc:creator>
        </item>
        <item>
            <title><![CDATA[The BEST email clients for Linux - Nanook]]></title>
            <link>https://peertube2.cpy.re/w/uYSsuQicHbfRgnDKv5CyiP;threadId=181500</link>
            <guid>https://peertube2.cpy.re/w/uYSsuQicHbfRgnDKv5CyiP;threadId=181500</guid>
            <pubDate>Fri, 20 Jun 2025 06:09:10 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://tilvids.com/accounts/thelinuxexperiment" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>thelinuxexperiment</span></a></span> A much better command line e-mail than mutt is alpine.</p>
]]></content:encoded>
            <dc:creator>Nanook</dc:creator>
        </item>
    </channel>
</rss>

Common videos feeds

path Parameters
format
required
string
Enum: "xml" "rss" "rss2" "atom" "atom1" "json" "json1"

format expected (we focus on making rss the most featureful ; it serves Media RSS)

query Parameters
accountId
string

limit listing to a specific account

accountName
string

limit listing to a specific account

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

sort
string
Example: sort=-createdAt

Sort column

videoChannelId
string

limit listing to a specific video channel

videoChannelName
string

limit listing to a specific video channel

Responses

Response samples

Content type
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:podcast="https://podcastindex.org/namespace/1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>PeerTube Nightly</title>
        <link>https://peertube2.cpy.re</link>
        <description>This instance is a test instance of the PeerTube project. It is updated to the latest commit in the develop branch every business day, 8pm CET.</description>
        <lastBuildDate>Wed, 02 Jul 2025 03:03:36 GMT</lastBuildDate>
        <docs>https://validator.w3.org/feed/docs/rss2.html</docs>
        <generator>PeerTube - https://peertube2.cpy.re</generator>
        <image>
            <title>PeerTube Nightly</title>
            <url>https://peertube2.cpy.re/client/assets/images/icons/icon-96x96.png</url>
            <link>https://peertube2.cpy.re</link>
        </image>
        <copyright>All rights reserved, unless otherwise specified in the terms specified at https://peertube2.cpy.re/about and potential licenses granted by each content's rightholder.</copyright>
        <atom:link href="https://peertube2.cpy.re/feeds/videos.xml?scope=local" rel="self" type="application/rss+xml"/>
        <item>
            <title><![CDATA[Operation Harsh Doorstop - Daddy Mi8 Has Just Enough Health]]></title>
            <link>https://peertube2.cpy.re/w/fYo9DBAxwWSace7X7X486t</link>
            <guid>https://peertube2.cpy.re/w/fYo9DBAxwWSace7X7X486t</guid>
            <pubDate>Wed, 02 Jul 2025 02:59:17 GMT</pubDate>
            <description><![CDATA[Mi8 has justtt enough health to survive a failed rooftop inset that was too hot. After getting away somehow, the heli was far too damaged to pick up more players so I landed on nearby roof and ditched the heli.]]></description>
            <content:encoded><![CDATA[<p>Mi8 has justtt enough health to survive a failed rooftop inset that was too hot. After getting away somehow, the heli was far too damaged to pick up more players so I landed on nearby roof and ditched the heli.</p>
]]></content:encoded>
            <dc:creator>Steam Deck - Gyro &amp; Joysticks Gameplay</dc:creator>
            <category>Gaming</category>
            <enclosure length="72556411" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/793f3e03-2179-4ce9-8379-338d165bd1a1?videoFileIds=5477455&amp;videoFileIds=5477458"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/fYo9DBAxwWSace7X7X486t"/>
            <media:player url="https://peertube2.cpy.re/w/fYo9DBAxwWSace7X7X486t"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4054420e-440a-42e9-a81b-ba00ac76fa0d-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5fcc6763-2180-4777-a616-97ca6c636bda-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/93c0e7ce-d411-4e54-8afb-6e59fbdbc712-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e6583ab8-1921-432a-8313-2b0eb3e3b806-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="72489798" url="https://lostpod.space/static/streaming-playlists/hls/793f3e03-2179-4ce9-8379-338d165bd1a1/08b8de43-d5d9-4a86-960c-762e21f9b8dc-720-fragmented.mp4" framerate="60" duration="143" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="22980948" url="https://lostpod.space/static/streaming-playlists/hls/793f3e03-2179-4ce9-8379-338d165bd1a1/be97171f-8a55-4528-a15a-689f10db0022-480-fragmented.mp4" framerate="30" duration="143" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="3193804" url="https://lostpod.space/static/streaming-playlists/hls/793f3e03-2179-4ce9-8379-338d165bd1a1/a7d349f1-1868-4464-b82f-9871bfecee7e-144-fragmented.mp4" framerate="30" duration="143" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="66613" url="https://lostpod.space/static/streaming-playlists/hls/793f3e03-2179-4ce9-8379-338d165bd1a1/2b14716a-b43a-4c21-a085-81c9e161ac23-0-fragmented.mp4" framerate="0" duration="143" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/b71dee94-cb53-44a4-a296-c44c40f52745.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/d9df10b5-56f4-4110-9c5b-2874686f1508.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Operation Harsh Doorstop - Daddy Mi8 Has Just Enough Health</media:title>
            <media:description type="plain">Mi8 has justtt enough health to survive a failed rooftop inset that was too hot. After getting away somehow, the heli was far too damaged to pick up more players so I landed on nearby roof and ditched the heli.</media:description>
        </item>
        <item>
            <title><![CDATA[Operation Harsh Doorstop mi8blackhawkacrobatics]]></title>
            <link>https://peertube2.cpy.re/w/id9wMqsEmHSD9xQCTchQ9r</link>
            <guid>https://peertube2.cpy.re/w/id9wMqsEmHSD9xQCTchQ9r</guid>
            <pubDate>Tue, 01 Jul 2025 23:55:06 GMT</pubDate>
            <dc:creator>Steam Deck - Gyro &amp; Joysticks Gameplay</dc:creator>
            <category>Gaming</category>
            <enclosure length="84118010" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/8b5d8a2a-eb5a-4fdf-85d9-3519d21af5b9?videoFileIds=5477431&amp;videoFileIds=5477432"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/id9wMqsEmHSD9xQCTchQ9r"/>
            <media:player url="https://peertube2.cpy.re/w/id9wMqsEmHSD9xQCTchQ9r"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6c881ef4-d859-4260-bd56-47522c73897c-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/af9d3508-5f30-46c7-b45b-b34e732d1cb3-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/765fc688-30de-4160-a8af-279098839a44-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/a1a8ce0f-87bf-48b5-873e-91ad1af501f8-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="79212232" url="https://lostpod.space/static/streaming-playlists/hls/8b5d8a2a-eb5a-4fdf-85d9-3519d21af5b9/1fd2ca46-1b96-4059-8e9c-7f8ea627cf51-720-fragmented.mp4" framerate="60" duration="240" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="27514787" url="https://lostpod.space/static/streaming-playlists/hls/8b5d8a2a-eb5a-4fdf-85d9-3519d21af5b9/76210f96-694b-44d1-a523-7e1d5803c002-480-fragmented.mp4" framerate="30" duration="240" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="4059962" url="https://lostpod.space/static/streaming-playlists/hls/8b5d8a2a-eb5a-4fdf-85d9-3519d21af5b9/d8cacd91-0c75-47b0-857a-e6b039eb07ac-144-fragmented.mp4" framerate="30" duration="240" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="4905778" url="https://lostpod.space/static/streaming-playlists/hls/8b5d8a2a-eb5a-4fdf-85d9-3519d21af5b9/7869f8c2-c2d4-4aa0-9471-43a719383f6c-0-fragmented.mp4" framerate="0" duration="240" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/5c14ef72-70f4-4266-a446-c128f11b2735.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/0aade6b2-3532-48cd-960b-37348e08ef19.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Operation Harsh Doorstop mi8blackhawkacrobatics</media:title>
        </item>
        <item>
            <title><![CDATA[Operation- Harsh Doorstop - 2025-06-28 2-58-17 PM]]></title>
            <link>https://peertube2.cpy.re/w/qUyc9YLX69RK4xokm98qCW</link>
            <guid>https://peertube2.cpy.re/w/qUyc9YLX69RK4xokm98qCW</guid>
            <pubDate>Tue, 01 Jul 2025 23:43:09 GMT</pubDate>
            <dc:creator>Steam Deck - Gyro &amp; Joysticks Gameplay</dc:creator>
            <category>Gaming</category>
            <enclosure length="84587857" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/c9b1d7d5-b1ce-41bd-bb68-067cd48bb296?videoFileIds=5477422&amp;videoFileIds=5477425"/>
            <media:community>
                <media:statistics views="14"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/qUyc9YLX69RK4xokm98qCW"/>
            <media:player url="https://peertube2.cpy.re/w/qUyc9YLX69RK4xokm98qCW"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f604f5e6-b61e-4ee2-b568-310a323d415b-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/28fbde76-9b35-49d8-95a0-fb9435982e52-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b5a83039-f092-429e-aaa1-b0e721cc7317-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d20474d9-88c1-418b-be23-e55375a0d112-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="80399298" url="https://lostpod.space/static/streaming-playlists/hls/c9b1d7d5-b1ce-41bd-bb68-067cd48bb296/95ec93f4-8056-4ea7-b9ea-4344566061a3-720-fragmented.mp4" framerate="60" duration="199" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="26156218" url="https://lostpod.space/static/streaming-playlists/hls/c9b1d7d5-b1ce-41bd-bb68-067cd48bb296/4b2d62ba-c453-4bf9-ba8e-144212eec030-480-fragmented.mp4" framerate="30" duration="199" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="3223555" url="https://lostpod.space/static/streaming-playlists/hls/c9b1d7d5-b1ce-41bd-bb68-067cd48bb296/b0717616-553c-412f-ac13-73e52fcfc106-144-fragmented.mp4" framerate="30" duration="199" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="4188559" url="https://lostpod.space/static/streaming-playlists/hls/c9b1d7d5-b1ce-41bd-bb68-067cd48bb296/0ce2ad42-d45f-4af8-a129-38e7591d6242-0-fragmented.mp4" framerate="0" duration="199" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/7b267a5c-bad9-46b1-81c0-03ffcc5c7d2b.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/0a162434-99ab-41eb-8a04-f22ef5bc7b7f.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Operation- Harsh Doorstop - 2025-06-28 2-58-17 PM</media:title>
        </item>
        <item>
            <title><![CDATA[Un triangle de gazon pas tondu]]></title>
            <link>https://peertube2.cpy.re/w/47JXu6zy93foq89HXbcA5U</link>
            <guid>https://peertube2.cpy.re/w/47JXu6zy93foq89HXbcA5U</guid>
            <pubDate>Tue, 01 Jul 2025 21:45:29 GMT</pubDate>
            <dc:creator>Petits paysages</dc:creator>
            <category>Travels</category>
            <enclosure length="216293468" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/193c59ff-fff8-4164-ad91-92d0a5e7fadc?videoFileIds=5477391"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/47JXu6zy93foq89HXbcA5U"/>
            <media:player url="https://peertube2.cpy.re/w/47JXu6zy93foq89HXbcA5U"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e2200319-5fa3-423c-8f56-b1141be6b401-1920-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4982c929-cc0f-4bca-a7e3-e55684fa4da8-1280-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d4bb1142-c123-444a-9c54-79538db87a2c-854-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f5f2f1bf-bc7f-4b54-ac80-49143f1b8e95-426-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d158249c-ef29-4076-a297-4a7c6a937ae0-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1920" fileSize="216293468" url="https://static.indymotion.fr/streaming-playlists/hls/193c59ff-fff8-4164-ad91-92d0a5e7fadc/4420773c-ae82-4141-8939-8880ca15cf18-1080-fragmented.mp4" framerate="30" duration="276" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1280" fileSize="106856798" url="https://static.indymotion.fr/streaming-playlists/hls/193c59ff-fff8-4164-ad91-92d0a5e7fadc/0fb11554-ebd4-4f26-91dc-fc6567705a4c-720-fragmented.mp4" framerate="30" duration="276" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="854" fileSize="54103198" url="https://static.indymotion.fr/streaming-playlists/hls/193c59ff-fff8-4164-ad91-92d0a5e7fadc/edaf8bdc-e0a5-4f03-ae04-f990dcdfb1d2-480-fragmented.mp4" framerate="30" duration="276" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="426" fileSize="21087359" url="https://static.indymotion.fr/streaming-playlists/hls/193c59ff-fff8-4164-ad91-92d0a5e7fadc/ce58d457-d0be-44c5-b058-862f8f716603-240-fragmented.mp4" framerate="30" duration="276" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="4465610" url="https://static.indymotion.fr/streaming-playlists/hls/193c59ff-fff8-4164-ad91-92d0a5e7fadc/a5ec6222-ddb9-4baa-af43-33e171302892-0-fragmented.mp4" framerate="0" duration="276" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/e6e791de-dfa7-423e-b1bc-90e1892def77.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/fd7a3fda-0c23-4789-b1f9-a2a1f41da021.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Un triangle de gazon pas tondu</media:title>
        </item>
        <item>
            <title><![CDATA[Comment parler de sciences ? avec Julien Bobroff]]></title>
            <link>https://peertube2.cpy.re/w/wSwNcNzctqLgqbiMVfTX9J</link>
            <guid>https://peertube2.cpy.re/w/wSwNcNzctqLgqbiMVfTX9J</guid>
            <pubDate>Tue, 01 Jul 2025 17:02:55 GMT</pubDate>
            <description><![CDATA[🔥 Le Greenletter Club est 100% indépendant, pour nous aider, c'est ici 👉 https://bit.ly/3ppLx68 Physique de l’atmosphère, chimie des océans ou paléoclimatologie : les sciences peuvent rebuter, alors qu’elles sont essentielles pour comprendre la...]]></description>
            <content:encoded><![CDATA[<p>🔥 Le Greenletter Club est 100% indépendant, pour nous aider, c'est ici 👉 <a href="https://bit.ly/3ppLx68" target="_blank" rel="noopener noreferrer">https://bit.ly/3ppLx68</a></p>
<p>Physique de l’atmosphère, chimie des océans ou paléoclimatologie : les sciences peuvent rebuter, alors qu’elles sont essentielles pour comprendre la crise climatique. D’où cette question : comment parler de sciences à un large public ?</p>
<p>Pour y répondre, nous recevons Julien Bobroff, physicien spécialiste de la physique quantique et de la supraconductivité, et dirige La physique autrement, une équipe de recherche travaillant sur les nouvelles façons de vulgariser la physique.</p>
<p>Interview réalisée par Maxime Thuillez à l'Académie du climat</p>
<p>CHAPITRES<br />
00:00 - Extraits<br />
01:04 - Introduction<br />
02:55 - Vulgarisation : quels enjeux ?<br />
04:31 - Quel niveau de complexité ?<br />
05:45 - Les implications politiques<br />
08:04 - La méthode scientifique<br />
09:04 - Les rapports du GIEC<br />
11:22 - Les ordres de grandeurs : une boussole ?<br />
16:30 - Comment vulgariser les questions climatiques ?<br />
18:38 - La difficulté des scientifiques à vulgariser<br />
20:53 - La vulgarisation nuit-elle aux chercheurs ?<br />
23:09 - Comment éviter le catastrophisme quand on parle de climat ?<br />
27:12 - L'enthousiasme : quel rôle ?<br />
28:38 - Les épiphanies climatiques<br />
30:03 - Comment capter l'attention en ligne ?<br />
31:18 - Pourquoi Tik Tok ?<br />
33:36 - Fred &amp; Jamy ?<br />
35:12 - Une bataille culturelle ?<br />
36:45 - Le débunck : le rôle des scientifiques ?<br />
39:05 - Culture scientifique : des lacunes ?<br />
42:45 - L'intérêt pour les sciences ?<br />
44:45 - Pourquoi les sciences effraient-elles à l'école ?<br />
47:40 - Que tester sur le climat ?<br />
52:26 - La liberté scientifique est elle menacée ?<br />
55:25 - Science vs Recherche<br />
59:39 - Les chercheurs pressurisés ?<br />
01:01:43 - La science menacée par l'ère de l'opinion ?<br />
01:03:50 - L'effet blouse blanche<br />
01:07:35 - Les chercheurs doivent-ils se concentrer sur le climat ?</p>
<p>Dans cette interview, Julien Bobroff raconte comment parler de sciences, et notamment de la question climatique. Faut-il investir les réseaux sociaux ? Donner des conférences de vulgarisation ? Comment se défaire du regard de ses pairs ? Toutes ces questions sont centrales pour amener les scientifiques à mieux communiquer sur les grandes menacent qui pèsent sur la planète.</p>
]]></content:encoded>
            <dc:creator>green_letter_club</dc:creator>
            <enclosure length="893597262" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/fa0053cf-94cf-45f8-81c5-7fa927ba1d6e?videoFileIds=5477358"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/wSwNcNzctqLgqbiMVfTX9J"/>
            <media:player url="https://peertube2.cpy.re/w/wSwNcNzctqLgqbiMVfTX9J"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3ea97135-5a54-4218-9ad2-e68894cef1a5-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/086f1a43-ae33-410e-a92e-3e5a50a84687-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1fef59c6-8526-4ac5-ab71-ab8771f9d3fd-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cc96a5a7-0acd-42d4-b4be-d7feeb9f7ba1-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0c05e7c2-f46f-441f-ba70-10d3bae66ad4-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="893597262" url="https://static.indymotion.fr/streaming-playlists/hls/fa0053cf-94cf-45f8-81c5-7fa927ba1d6e/e1097920-beb2-4b9b-ba25-f2076356d422-1080-fragmented.mp4" framerate="25" duration="4358" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="588046097" url="https://static.indymotion.fr/streaming-playlists/hls/fa0053cf-94cf-45f8-81c5-7fa927ba1d6e/e9f02c82-f924-42a9-9c0f-a041d953511b-720-fragmented.mp4" framerate="25" duration="4358" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="356288316" url="https://static.indymotion.fr/streaming-playlists/hls/fa0053cf-94cf-45f8-81c5-7fa927ba1d6e/acf0d8bb-b458-4ce9-b822-b669e1171bca-480-fragmented.mp4" framerate="25" duration="4358" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="170588325" url="https://static.indymotion.fr/streaming-playlists/hls/fa0053cf-94cf-45f8-81c5-7fa927ba1d6e/43e0d050-ec03-4374-86f2-e3dcfee87b82-240-fragmented.mp4" framerate="25" duration="4358" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="70565210" url="https://static.indymotion.fr/streaming-playlists/hls/fa0053cf-94cf-45f8-81c5-7fa927ba1d6e/07e9b363-56ce-47b0-9fb6-e907caa151c6-0-fragmented.mp4" framerate="0" duration="4358" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/d7ac2180-10ac-415f-b563-5ec08e3a0b34.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/953f4cc9-a91e-4e06-8017-913a26936488.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Comment parler de sciences ? avec Julien Bobroff</media:title>
            <media:description type="plain">🔥 Le Greenletter Club est 100% indépendant, pour nous aider, c'est ici 👉 https://bit.ly/3ppLx68 Physique de l’atmosphère, chimie des océans ou paléoclimatologie : les sciences peuvent rebuter, alors qu’elles sont essentielles pour comprendre la...</media:description>
        </item>
        <item>
            <title><![CDATA[Pourquoi les FILMS D'HORREUR sont si CLICHÉS ?]]></title>
            <link>https://peertube2.cpy.re/w/d7imTNZ3PyZvaLAum1vHVw</link>
            <guid>https://peertube2.cpy.re/w/d7imTNZ3PyZvaLAum1vHVw</guid>
            <pubDate>Tue, 01 Jul 2025 16:57:52 GMT</pubDate>
            <description><![CDATA[D'où viennent les clichés si présents dans les films d'horreur et pourquoi on les connait tous, même si on ne s'intéresse pas à ce genre ? Sont-ils seulement vrais et, dans tous les cas, qu'est-ce qu'ils signifient ? Le personnage noir meurt-il vr...]]></description>
            <content:encoded><![CDATA[<p>D'où viennent les clichés si présents dans les films d'horreur et pourquoi on les connait tous, même si on ne s'intéresse pas à ce genre ? Sont-ils seulement vrais et, dans tous les cas, qu'est-ce qu'ils signifient ?<br />
Le personnage noir meurt-il vraiment en premier ? Le trope de la final girl est-il sexiste ou au contraire féministes ? Faut-il foutre tout ça à la poubelle ?</p>
<p>Pour vous abonner à MÉTAL⚡HURLANT tout en soutenant la chaîne<br />
⬇️⬇️⬇️<br />
<a href="https://tinyurl.com/yyvrbavu" target="_blank" rel="noopener noreferrer">https://tinyurl.com/yyvrbavu</a></p>
<p>Commander un numéro sur :<br />
Fnac : <a href="https://www.fnac.com/SearchResult/ResultList.aspx?SCat=0&amp;Search=metal+hurlant&amp;sft=1&amp;sa=0" target="_blank" rel="noopener noreferrer">https://www.fnac.com/SearchResult/ResultList.aspx?SCat=0&amp;Search=metal+hurlant&amp;sft=1&amp;sa=0</a><br />
BDfugue : <a href="https://www.bdfugue.com/serie/metal-hurlant" target="_blank" rel="noopener noreferrer">https://www.bdfugue.com/serie/metal-hurlant</a></p>
<p>Pour participer au Stabathon 2025 :<br />
<a href="https://www.stabathon.fr/" target="_blank" rel="noopener noreferrer">https://www.stabathon.fr/</a></p>
<p>!!!LE SYNDROME MAGNETO DANS TOUTES LES BONNES LIBRAIRIES!!!</p>
<p>Pour soutenir la chaîne en rejoignant le ParTip :</p>
<p><a href="https://www.kisskissbankbank.com/fr/projects/soutenez-la-chaine-bolchegeek" target="_blank" rel="noopener noreferrer">https://www.kisskissbankbank.com/fr/projects/soutenez-la-chaine-bolchegeek</a></p>
<p><a href="https://fr.tipeee.com/bolchegeek" target="_blank" rel="noopener noreferrer">https://fr.tipeee.com/bolchegeek</a></p>
<p>Écrit par @WelcomeToPrimetimeBITCH et Benjamin Patinaud<br />
Montage : @Lecoindubis<br />
Image : Nicolas Landais<br />
Prod : Kath LaPetiteVoix<br />
Décor : Charly Hopp<br />
Musiques : Epidemic Sound<br />
The Intruder by Karl Casey @ White Bat Audio<br />
Sanity Unravels by Karl Casey @ White Bat Audio</p>
<p>0:00 Intro<br />
2:05 Partenariat Métal Hurlant<br />
3:29 C'est quoi le SLASHER ?<br />
12:49 D'où ça vient ?<br />
26:51 Quand soudain : les années 80<br />
35:28 Le retour inattendu du slasher<br />
43:38 La final girl : sexiste ou féministe ?<br />
54:29 Conclusion : qui meurt en premier ?</p>
]]></content:encoded>
            <dc:creator>bolchegeek</dc:creator>
            <enclosure length="833073927" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/620ed33d-c170-4a0e-8d6c-95a50c2e53ec?videoFileIds=5477352"/>
            <media:community>
                <media:statistics views="5"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/d7imTNZ3PyZvaLAum1vHVw"/>
            <media:player url="https://peertube2.cpy.re/w/d7imTNZ3PyZvaLAum1vHVw"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/705030c4-c6a8-406d-8535-833a6c3e5f54-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4e3357aa-03f0-4a10-a179-7c15d67e1b38-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cc324b95-52f8-4813-8bd2-5972a808377a-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/64d243c0-2bdf-4585-9547-c9baf80eab16-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/10821de3-0598-4fb5-bca0-38d121f2e9b6-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="833073927" url="https://static.indymotion.fr/streaming-playlists/hls/620ed33d-c170-4a0e-8d6c-95a50c2e53ec/d46d8b6f-b563-4a91-a6d8-40043accee46-1080-fragmented.mp4" framerate="25" duration="3961" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="550272829" url="https://static.indymotion.fr/streaming-playlists/hls/620ed33d-c170-4a0e-8d6c-95a50c2e53ec/52cbe523-e5b7-4833-ad3b-0125aacd4135-720-fragmented.mp4" framerate="25" duration="3961" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="342636950" url="https://static.indymotion.fr/streaming-playlists/hls/620ed33d-c170-4a0e-8d6c-95a50c2e53ec/960c47bb-1b22-4626-bbe3-dc09ec539fe7-480-fragmented.mp4" framerate="25" duration="3961" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="169222935" url="https://static.indymotion.fr/streaming-playlists/hls/620ed33d-c170-4a0e-8d6c-95a50c2e53ec/9ccaa8be-d44c-40e1-bfd1-d1032625a739-240-fragmented.mp4" framerate="25" duration="3961" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="67189069" url="https://static.indymotion.fr/streaming-playlists/hls/620ed33d-c170-4a0e-8d6c-95a50c2e53ec/a28351af-d94e-499f-9dbe-cb5cf7764acd-0-fragmented.mp4" framerate="0" duration="3961" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/f520b8b7-1ba2-4d6a-a012-3cbd6ddc51da.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/331bc4af-fa57-468e-88ca-5aee059fb0ef.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Pourquoi les FILMS D'HORREUR sont si CLICHÉS ?</media:title>
            <media:description type="plain">D'où viennent les clichés si présents dans les films d'horreur et pourquoi on les connait tous, même si on ne s'intéresse pas à ce genre ? Sont-ils seulement vrais et, dans tous les cas, qu'est-ce qu'ils signifient ? Le personnage noir meurt-il vr...</media:description>
        </item>
        <item>
            <title><![CDATA[Gérard Miller : anatomie d’une prédation]]></title>
            <link>https://peertube2.cpy.re/w/cLrAS7aZFohtjk6h4iJaFM</link>
            <guid>https://peertube2.cpy.re/w/cLrAS7aZFohtjk6h4iJaFM</guid>
            <pubDate>Tue, 01 Jul 2025 16:12:15 GMT</pubDate>
            <description><![CDATA[Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir C’est l’histoire d’un homme, qui s’autoproclamait féministe, de gauche, et qui est aujourd’hui accusé d’agressions sexuelles et de viol par des dizaines de femmes. G...]]></description>
            <content:encoded><![CDATA[<p>Soutenez Blast, nouveau média indépendant : <a href="https://www.blast-info.fr/soutenir" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/soutenir</a></p>
<p>C’est l’histoire d’un homme, qui s’autoproclamait féministe, de gauche, et qui est aujourd’hui accusé d’agressions sexuelles et de viol par des dizaines de femmes. Gérard Miller, a été toute sa vie un professeur d'université respecté, ami de nombreuses célébrités, homme charismatique et éloquent. Aujourd’hui, il est accusé, dans une enquête choc, d'avoir profité de son aura pour manipuler et agresser de très jeunes filles, parfois mineures. Dans leur livre Anatomie d’une prédation, Alice Augustin et Cécile Ollivier décrivent une prédation qui aurait eu pour décor les plateaux télé comme les bancs de la faculté et pour mode opératoire, l’hypnose, l’emprise psychologique et la domination. Selon les journalistes, 10 plaintes ont été déposées. Plus de 80 femmes dénoncent aujourd’hui les agissements du célèbre psychanalyste qu'il conteste vigoureusement, et pour lesquels il reste présumé innocent. Alors qui est Gérard Miller, de quoi est-il accusé, qui savait, qui n’a pas voulu voir ? Réponse dans cette nouvelle émission pour Blast.</p>
<p>Journaliste : Salomé Saqué<br />
Montage : Émilie Fortun<br />
Son : Baptiste Veilhan, Théo Duchesne<br />
Graphisme : Morgane Sabouret, Margaux Simon<br />
Production : Hicham Tragha<br />
Directeur du développement des collaborations extérieures : Mathias Enthoven<br />
Co-directrice de la rédaction : Soumaya Benaïssa<br />
Directeur de la publication : Denis Robert</p>
<p>Le site : <a href="https://www.blast-info.fr/" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/</a><br />
Facebook : <a href="https://www.facebook.com/blastofficiel" target="_blank" rel="noopener noreferrer">https://www.facebook.com/blastofficiel</a><br />
Twitter : <a href="https://twitter.com/blast_france" target="_blank" rel="noopener noreferrer">https://twitter.com/blast_france</a><br />
Instagram : <a href="https://www.instagram.com/blastofficiel/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/blastofficiel/</a><br />
Mastodon : <a href="https://mamot.fr/web/@blast_info" target="_blank" rel="noopener noreferrer">https://mamot.fr/web/@blast_info</a><br />
Peertube : <a href="https://video.blast-info.fr/" target="_blank" rel="noopener noreferrer">https://video.blast-info.fr/</a><br />
Twitch : <a href="https://www.twitch.tv/blastinfo" target="_blank" rel="noopener noreferrer">https://www.twitch.tv/blastinfo</a><br />
Bluesky : <a href="https://bsky.app/profile/blast-info.fr" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/blast-info.fr</a></p>
<p>#GerardMiller<br />
#Entretien<br />
#médias</p>
]]></content:encoded>
            <dc:creator>blast, le souffle de l’info</dc:creator>
            <enclosure length="713507913" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/5f490743-dfc5-4c23-b941-6e041fb73447?videoFileIds=5477340"/>
            <media:community>
                <media:statistics views="470"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/cLrAS7aZFohtjk6h4iJaFM"/>
            <media:player url="https://peertube2.cpy.re/w/cLrAS7aZFohtjk6h4iJaFM"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1e15932f-dc35-4550-b104-6ff2369d7341-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/517eaa42-7b19-4d38-8fe8-157d486448c2-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fa2f0100-95df-48bd-b4ee-7a085766b775-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8e7592d8-ad8b-4ac8-be83-fc5c9c9574de-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/385640a3-e792-466b-aead-b9e06a2a129b-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="713507913" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/5f490743-dfc5-4c23-b941-6e041fb73447/e5c00cd8-84c4-4818-a9b3-3e4cca94f867-1080-fragmented.mp4" framerate="25" duration="2859" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="368043109" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/5f490743-dfc5-4c23-b941-6e041fb73447/d289a4e0-ad74-4c0e-8439-28d5dfa9e311-720-fragmented.mp4" framerate="25" duration="2859" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="218000590" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/5f490743-dfc5-4c23-b941-6e041fb73447/3302add6-bd57-425b-88a8-a5b5c62fab42-480-fragmented.mp4" framerate="25" duration="2859" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="105229715" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/5f490743-dfc5-4c23-b941-6e041fb73447/823e6cd4-35dc-4af2-85e3-5a97a37b2ef5-240-fragmented.mp4" framerate="25" duration="2859" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="46309762" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/5f490743-dfc5-4c23-b941-6e041fb73447/eebc8192-6a40-4f95-ad31-419f52f422a4-0-fragmented.mp4" framerate="0" duration="2859" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/a92a8f29-08c0-4908-a80b-29fdace0a280.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/bf8f68c0-48fb-4090-b23b-fd5e20583746.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Gérard Miller : anatomie d’une prédation</media:title>
            <media:description type="plain">Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir C’est l’histoire d’un homme, qui s’autoproclamait féministe, de gauche, et qui est aujourd’hui accusé d’agressions sexuelles et de viol par des dizaines de femmes. G...</media:description>
        </item>
        <item>
            <title><![CDATA[Jancovici retourne Apolline de Malherbe sur la clim' en 2 minutes]]></title>
            <link>https://peertube2.cpy.re/w/uSsUTh9SWvMRnviYnkbHhp</link>
            <guid>https://peertube2.cpy.re/w/uSsUTh9SWvMRnviYnkbHhp</guid>
            <pubDate>Tue, 01 Jul 2025 16:06:46 GMT</pubDate>
            <description><![CDATA[Jean-Marc Jancovici, expert énergie-climat, président du Shift Project, est invité par Apolline de Malherbe pour discuter de la canicule actuelle et de la possibilité de faire un plan climatisation, comme proposé par Marine Le Pen. Réduire la qu...]]></description>
            <content:encoded><![CDATA[<p>Jean-Marc Jancovici, expert énergie-climat, président du Shift Project, est invité par Apolline de Malherbe pour discuter de la canicule actuelle et de la possibilité de faire un plan climatisation, comme proposé par Marine Le Pen.</p>
<p>Réduire la qualité de la vidéo.</p>
<p>Pour changer le système :<br />
Réclamer le RIC constituant : <a href="https://www.mouvement-constituant-populaire.fr/" target="_blank" rel="noopener noreferrer">https://www.mouvement-constituant-populaire.fr/</a><br />
Changer de banque: <a href="https://www.lanef.com/" target="_blank" rel="noopener noreferrer">https://www.lanef.com/</a> <a href="https://change-de-banque.org/particulier/" target="_blank" rel="noopener noreferrer">https://change-de-banque.org/particulier/</a><br />
Passer à l'action militante: <a href="https://extinctionrebellion.fr/" target="_blank" rel="noopener noreferrer">https://extinctionrebellion.fr/</a> <a href="https://ripostealimentaire.fr/" target="_blank" rel="noopener noreferrer">https://ripostealimentaire.fr/</a><br />
Changer de travail : <a href="https://jobs.makesense.org/fr" target="_blank" rel="noopener noreferrer">https://jobs.makesense.org/fr</a></p>
<p>Sources<br />
Janco <a href="https://www.youtube.com/watch?v=IAXgwais5EA" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=IAXgwais5EA</a><br />
Musique <a href="https://www.youtube.com/watch?v=39PVEaSytpo" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=39PVEaSytpo</a></p>
<p>Réponses au quiz de fin :</p>
<p>/!\ Description à ne pas lire avant d'avoir vu la vidéo entièrement<br />
/!\</p>
<p>/!\</p>
<p>/!\ <br />
/!\</p>
<p>Quels sont les problèmes majeurs posés par les canicules selon Jancovici ?<br />
Sécheresse donc agriculture, accidents climatiques : intensification des orages, augmentation de la taille des grêlons.</p>
<p>Pourquoi la Garonne pourrait connaître de faibles débits l'été ?<br />
Moins de neige en hiver donc fonte des neiges diminuée, donc moins d'écoulement au printemps et en été.</p>
<p>L'eau de la Garonne est-elle assez froide pour refroidir la centrale nucléaire de Golfech ?<br />
Oui, le problème du réchauffement de l'eau via les rejets des eaux de refroidissement est un problème de biodiversité.</p>
<p>#jancovici #écologie #canicule #climatisation #climat #extrait #ethiqueettac</p>
]]></content:encoded>
            <dc:creator>ethique_et_tac</dc:creator>
            <enclosure length="81555528" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/e9cba7ed-2b27-4f51-bf58-9b1fd9098ddb?videoFileIds=5477333"/>
            <media:community>
                <media:statistics views="10"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/uSsUTh9SWvMRnviYnkbHhp"/>
            <media:player url="https://peertube2.cpy.re/w/uSsUTh9SWvMRnviYnkbHhp"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b632ccf8-f7dd-4d28-986c-e59a3abbf949-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/de535fff-d2c9-4a04-8433-b7453a8a5168-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/43daefb4-eeda-40b1-b689-069671e071ee-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1c0cba0c-8f3e-42e7-8d29-0d95b041fce5-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/86ab8d51-8c17-4bec-8a14-e80a4bfdeaa4-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="81555528" url="https://static.indymotion.fr/streaming-playlists/hls/e9cba7ed-2b27-4f51-bf58-9b1fd9098ddb/a6a62ce8-b56e-4f07-9d30-6ea13e3af6a9-1080-fragmented.mp4" framerate="25" duration="487" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="52299535" url="https://static.indymotion.fr/streaming-playlists/hls/e9cba7ed-2b27-4f51-bf58-9b1fd9098ddb/0b9783fd-dc00-4d56-96e2-7174ec313fc5-720-fragmented.mp4" framerate="25" duration="487" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="33289494" url="https://static.indymotion.fr/streaming-playlists/hls/e9cba7ed-2b27-4f51-bf58-9b1fd9098ddb/047f431a-115c-46f5-a6ad-12a1c9d67169-480-fragmented.mp4" framerate="25" duration="487" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="17656804" url="https://static.indymotion.fr/streaming-playlists/hls/e9cba7ed-2b27-4f51-bf58-9b1fd9098ddb/a9470f57-3ecc-4da8-b164-ea67548d2562-240-fragmented.mp4" framerate="25" duration="487" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="8094380" url="https://static.indymotion.fr/streaming-playlists/hls/e9cba7ed-2b27-4f51-bf58-9b1fd9098ddb/c65324b2-611d-4b5c-9033-bedb26c54dba-0-fragmented.mp4" framerate="0" duration="487" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/5f3059ab-a7d3-43af-9f7d-9db95e91d854.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/4322f4f1-9cda-45a5-bf97-42e701998bea.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Jancovici retourne Apolline de Malherbe sur la clim' en 2 minutes</media:title>
            <media:description type="plain">Jean-Marc Jancovici, expert énergie-climat, président du Shift Project, est invité par Apolline de Malherbe pour discuter de la canicule actuelle et de la possibilité de faire un plan climatisation, comme proposé par Marine Le Pen. Réduire la qu...</media:description>
        </item>
        <item>
            <title><![CDATA[Un tournant libéral ? (1860-1870) - De 1848 à 1870, épisode 6]]></title>
            <link>https://peertube2.cpy.re/w/rbCtbVb98oFprXxUBqc3Ta</link>
            <guid>https://peertube2.cpy.re/w/rbCtbVb98oFprXxUBqc3Ta</guid>
            <pubDate>Tue, 01 Jul 2025 15:56:20 GMT</pubDate>
            <description><![CDATA[Soutenez financièrement la chaîne sur Hello Asso : https://www.helloasso.com/associations/association-pour-la-diffusion-de-l-histoire-univer/formulaires/1 Un régime autoritaire qui se libéralise peu à peu de lui-même et parfois contre lui-même, c...]]></description>
            <content:encoded><![CDATA[<p>Soutenez financièrement la chaîne sur Hello Asso : <a href="https://www.helloasso.com/associations/association-pour-la-diffusion-de-l-histoire-univer/formulaires/1" target="_blank" rel="noopener noreferrer">https://www.helloasso.com/associations/association-pour-la-diffusion-de-l-histoire-univer/formulaires/1</a></p>
<p>Un régime autoritaire qui se libéralise peu à peu de lui-même et parfois contre lui-même, ce n'est pas courant. Voyons ce qui se passe dans la vie politique française des années 1860.</p>
<p>Au sommaire :</p>
<p>00:00 : Introduction<br />
02:09 : Pourquoi libéraliser ?<br />
10:21 : Premières réformes<br />
15:49 : Un nouveau jeu électoral ?<br />
22:52 : Un essai d'Empire social<br />
28:35 : L'Empire en recherche de pérennité<br />
32:00 : Demi-mesures et oppositions<br />
35:33 : 69, année électrique<br />
40:37 : 1870 : l'Empire renouvelé</p>
<p>Une vidéo écrite et présentée par Histony ; montée, réalisée et illustrée par Loma, le tout sous licence CC-BY-SA.</p>
<p>Retrouvez les sources de la vidéo et des précisions sur notre site, pour aller plus loin et recouper les infos :<br />
<a href="https://venividisensivvs.wordpress.com/2025/07/01/un-tournant-liberal-1860-1870/" target="_blank" rel="noopener noreferrer">https://venividisensivvs.wordpress.com/2025/07/01/un-tournant-liberal-1860-1870/</a></p>
<p>Retrouvez les créations de Loma, monteuse et illustratrice de l'émission : <a href="https://www.loma-portrait.com/" target="_blank" rel="noopener noreferrer">https://www.loma-portrait.com/</a></p>
<p>Abonnez-vous à notre newsletter mensuelle pour suivre notre activité sans dépendre des algorithmes des réseaux sociaux !<br />
<a href="https://venividisensivvs.wordpress.com/nous-suivre/" target="_blank" rel="noopener noreferrer">https://venividisensivvs.wordpress.com/nous-suivre/</a></p>
]]></content:encoded>
            <dc:creator>Histony</dc:creator>
            <category>Education</category>
            <enclosure length="805669305" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/cbf060fd-d415-41db-a23f-8fb16773f377?videoFileIds=5477330"/>
            <media:community>
                <media:statistics views="24"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/rbCtbVb98oFprXxUBqc3Ta"/>
            <media:player url="https://peertube2.cpy.re/w/rbCtbVb98oFprXxUBqc3Ta"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f1e2da22-5177-4da2-9446-d09845d0b75e-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6f1bbf38-9d9b-48cc-893d-8f6d2a03af3b-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/32750bf3-1a03-45ed-b264-7cc77a873793-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c4066738-d953-43ab-9714-adbb2e210eb6-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/13f82360-b676-4f57-9a4e-7fb1f643e01f-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c807c17c-bf1f-4d6c-ac22-1a79aee4a5ce-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="805669305" url="https://skeptikon.fr/static/streaming-playlists/hls/cbf060fd-d415-41db-a23f-8fb16773f377/a471d00a-1ab6-44ce-96de-6bffd3079d05-1080-fragmented.mp4" framerate="30" duration="2887" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="455421058" url="https://skeptikon.fr/static/streaming-playlists/hls/cbf060fd-d415-41db-a23f-8fb16773f377/44545bde-603b-481d-848f-bd5c64dc500c-720-fragmented.mp4" framerate="30" duration="2887" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="281225911" url="https://skeptikon.fr/static/streaming-playlists/hls/cbf060fd-d415-41db-a23f-8fb16773f377/77322617-2508-4cd5-897e-37b35cdc359f-480-fragmented.mp4" framerate="30" duration="2887" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="205329170" url="https://skeptikon.fr/static/streaming-playlists/hls/cbf060fd-d415-41db-a23f-8fb16773f377/39ac75b0-5ea4-4f96-a58f-3317bfb5ed02-360-fragmented.mp4" framerate="30" duration="2887" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="122866528" url="https://skeptikon.fr/static/streaming-playlists/hls/cbf060fd-d415-41db-a23f-8fb16773f377/70c63f64-d2e5-4a05-8882-2572394434d6-240-fragmented.mp4" framerate="30" duration="2887" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="47052535" url="https://skeptikon.fr/static/streaming-playlists/hls/cbf060fd-d415-41db-a23f-8fb16773f377/6928af0b-ac93-46b8-b319-af4039402409-0-fragmented.mp4" framerate="0" duration="2887" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/0d1daa24-ec5b-4384-b482-957dd6c459ad.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/0efc27fa-e14d-4765-9115-95262a406252.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Un tournant libéral ? (1860-1870) - De 1848 à 1870, épisode 6</media:title>
            <media:description type="plain">Soutenez financièrement la chaîne sur Hello Asso : https://www.helloasso.com/associations/association-pour-la-diffusion-de-l-histoire-univer/formulaires/1 Un régime autoritaire qui se libéralise peu à peu de lui-même et parfois contre lui-même, c...</media:description>
        </item>
        <item>
            <title><![CDATA["Je ne suis pas Bardella" Rima Hassan]]></title>
            <link>https://peertube2.cpy.re/w/hoCVS1CBaCdtxSo1Tp69rj</link>
            <guid>https://peertube2.cpy.re/w/hoCVS1CBaCdtxSo1Tp69rj</guid>
            <pubDate>Tue, 01 Jul 2025 07:07:31 GMT</pubDate>
            <description><![CDATA[https://www.arretsurimages.net/emissions/arret-sur-images/rima-hassan-dun-ecran-a-lautre]]></description>
            <content:encoded><![CDATA[<p><a href="https://www.arretsurimages.net/emissions/arret-sur-images/rima-hassan-dun-ecran-a-lautre" target="_blank" rel="noopener noreferrer">https://www.arretsurimages.net/emissions/arret-sur-images/rima-hassan-dun-ecran-a-lautre</a></p>
]]></content:encoded>
            <dc:creator>a_gauche</dc:creator>
            <enclosure length="9136434" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/84bb56ef-b127-43de-b1ab-a193118537f4?videoFileIds=5477252"/>
            <media:community>
                <media:statistics views="4"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/hoCVS1CBaCdtxSo1Tp69rj"/>
            <media:player url="https://peertube2.cpy.re/w/hoCVS1CBaCdtxSo1Tp69rj"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/56b61050-8df2-402a-9562-b2a438dd3527-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4e1239cd-49ae-46e2-8f1c-28188b22e53a-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e388cd88-6f8a-4514-a203-6d13b2e6ca24-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c53c4de8-8396-48df-96b1-2ede1602452d-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="9136434" url="https://static.indymotion.fr/streaming-playlists/hls/84bb56ef-b127-43de-b1ab-a193118537f4/12de3439-73c0-447f-9b63-a15522bd6dbc-720-fragmented.mp4" framerate="50" duration="65" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="5476277" url="https://static.indymotion.fr/streaming-playlists/hls/84bb56ef-b127-43de-b1ab-a193118537f4/e0d94e11-2929-43b9-a893-d3b11798d30b-480-fragmented.mp4" framerate="25" duration="65" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="2652847" url="https://static.indymotion.fr/streaming-playlists/hls/84bb56ef-b127-43de-b1ab-a193118537f4/ccb06173-d06e-4e5a-8196-665ce8bd9ac9-240-fragmented.mp4" framerate="25" duration="65" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1046051" url="https://static.indymotion.fr/streaming-playlists/hls/84bb56ef-b127-43de-b1ab-a193118537f4/9720a59d-9e5f-4e15-ab4e-8d9a66990d28-0-fragmented.mp4" framerate="0" duration="65" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/aaa358ed-f331-44a5-819e-52217349a96b.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/6d7e8127-c82d-48b9-abde-113fa1a53e8c.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">"Je ne suis pas Bardella" Rima Hassan</media:title>
            <media:description type="plain">https://www.arretsurimages.net/emissions/arret-sur-images/rima-hassan-dun-ecran-a-lautre</media:description>
        </item>
        <item>
            <title><![CDATA[Chaleur à Lautre Voie]]></title>
            <link>https://peertube2.cpy.re/w/odJKLAJPWRUGCLM99JBzwq</link>
            <guid>https://peertube2.cpy.re/w/odJKLAJPWRUGCLM99JBzwq</guid>
            <pubDate>Mon, 30 Jun 2025 21:18:39 GMT</pubDate>
            <description><![CDATA[Extrait d'un concert de Lautre voie au Remue-Méninges à Saint-Étienne.]]></description>
            <content:encoded><![CDATA[<p>Extrait d'un concert de <a href="https://lautrevoie.fr" target="_blank" rel="noopener noreferrer">Lautre voie</a> au Remue-Méninges à Saint-Étienne.</p>
]]></content:encoded>
            <dc:creator>Extraits sociaux</dc:creator>
            <category>Music</category>
            <enclosure length="155507682" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/b3f05301-755a-43dd-917b-338f94fc4c20?videoFileIds=5477177"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/odJKLAJPWRUGCLM99JBzwq"/>
            <media:player url="https://peertube2.cpy.re/w/odJKLAJPWRUGCLM99JBzwq"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e800cf4b-9f96-4bc6-af91-3d16a4a95485-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b9e42872-5bc1-4f5d-9210-2d95e6a9a5cd-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/db90a658-1080-43f8-b619-0d62c3830394-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/36cf8298-3f7f-4006-a121-9813353f26cb-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f7617dda-7afe-4b3e-8f7d-475671754605-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="155507682" url="https://static.indymotion.fr/streaming-playlists/hls/b3f05301-755a-43dd-917b-338f94fc4c20/93e16288-62a0-4b51-9000-73d537f027e5-1080-fragmented.mp4" framerate="50" duration="257" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="75155208" url="https://static.indymotion.fr/streaming-playlists/hls/b3f05301-755a-43dd-917b-338f94fc4c20/4265430d-02e0-40b3-9880-63c473805e52-720-fragmented.mp4" framerate="50" duration="257" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="38802787" url="https://static.indymotion.fr/streaming-playlists/hls/b3f05301-755a-43dd-917b-338f94fc4c20/d3c5c450-8557-493f-b496-d427a8402580-480-fragmented.mp4" framerate="25" duration="257" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="16491897" url="https://static.indymotion.fr/streaming-playlists/hls/b3f05301-755a-43dd-917b-338f94fc4c20/09b9f222-98de-4cab-b18c-51daf852ce74-240-fragmented.mp4" framerate="25" duration="257" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="4227998" url="https://static.indymotion.fr/streaming-playlists/hls/b3f05301-755a-43dd-917b-338f94fc4c20/e449c9d4-4ee0-42a2-b6b5-149cc4c95865-0-fragmented.mp4" framerate="0" duration="257" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/919f32c7-eef0-4df1-98de-b3a00a0874c6.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/d32abdcb-d0aa-4575-aaf6-b902af1efa01.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Chaleur à Lautre Voie</media:title>
            <media:description type="plain">Extrait d'un concert de Lautre voie au Remue-Méninges à Saint-Étienne.</media:description>
        </item>
        <item>
            <title><![CDATA[A New World: Demanding Freedom & Justice, 1 June 2025]]></title>
            <link>https://peertube2.cpy.re/w/8tA4CvEiSooiRxagwtXDc4</link>
            <guid>https://peertube2.cpy.re/w/8tA4CvEiSooiRxagwtXDc4</guid>
            <pubDate>Mon, 30 Jun 2025 20:45:42 GMT</pubDate>
            <description><![CDATA[Seattle Peace Chorus, directed by Frederick N. West, performs with the Miho &amp; Diego Duo. We sing Afro-Colombian songs from the fusion of Indigenous, Spanish, and African traditions, to energize us to resist oppression and injustice. From there, wi...]]></description>
            <content:encoded><![CDATA[<p>Seattle Peace Chorus, directed by Frederick N. West, performs with the Miho &amp; Diego Duo. We sing Afro-Colombian songs from the fusion of Indigenous, Spanish, and African traditions, to energize us to resist oppression and injustice. From there, with baritone soloist Yusef Seevers, we turn to the powerful words of Langston Hughes. In contrast to those who call for America to be great for the privileged few, we call for America to be based on the equality of all people:</p>
<p>Let America be the dream the dreamers dreamed—<br />
Let it be that great strong land of love<br />
Where never kings connive nor tyrants scheme<br />
That any man be crushed by one above.</p>
<p>Our concert program is here:<br />
<a href="https://seattlepeacechorus.org/events/concerts/spring2025/program-a-new-world-demanding-freedom-and-justice/" target="_blank" rel="noopener noreferrer">https://seattlepeacechorus.org/events/concerts/spring2025/program-a-new-world-demanding-freedom-and-justice/</a></p>
]]></content:encoded>
            <dc:creator>seattlepeacechorus_channel</dc:creator>
            <category>Entertainment</category>
            <enclosure length="2698481030" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/3c8a0b51-f46d-4db4-b001-899ebb9d79fd?videoFileIds=5477168"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/8tA4CvEiSooiRxagwtXDc4"/>
            <media:player url="https://peertube2.cpy.re/w/8tA4CvEiSooiRxagwtXDc4"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/843a591a-47c8-4288-a704-cf29beb1d828-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/166c6132-eeed-4cdd-8daa-4274f993b9a9-720.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4f18e675-3137-4494-8032-02d5b20d8d07-480.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1d872a11-2a8f-4e12-978a-c6e0c642afc7-360.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b652605f-2bf8-4fa3-aa9c-b714af6bc4ef-240.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c0420d93-8e78-43e3-b182-482d22e6a799-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/34951c6a-20b7-4256-a9d2-2fae75197d6a-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c7905eaa-3425-4b25-9a07-b92bf5aba6f6-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5aa6dfe1-10b3-4168-b536-733408b3f9d4-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/28ac279b-6a2b-4525-9ca3-ea2523b7e586-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/675c6a94-dae3-4b16-8e20-f87b46197b2e-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1db3539c-c4e6-4a24-b0b5-488132bd815f-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="2698481030" url="https://toobnix.org/static/web-videos/43803f85-3807-44c8-a469-acb8d2df8114-1080.mp4" framerate="24" duration="6600" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="1416199351" url="https://toobnix.org/static/web-videos/0cac18db-8960-4f00-94d7-71a9ca011fe0-720.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="840418467" url="https://toobnix.org/static/web-videos/2b10f13d-bfac-44ae-9636-6e0f39ea18e3-480.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="593827717" url="https://toobnix.org/static/web-videos/90733c19-e494-48d9-aa02-73e629000169-360.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="361082044" url="https://toobnix.org/static/web-videos/cb7f524b-be84-41ae-8abc-dc2b04cb89f6-240.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="108430358" url="https://toobnix.org/static/web-videos/9431b914-cc57-420b-bbaf-41c7394213a9-0.mp4" framerate="0" duration="6600" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="2697628424" url="https://toobnix.org/static/streaming-playlists/hls/3c8a0b51-f46d-4db4-b001-899ebb9d79fd/a9c8c50f-adcb-4c24-962b-f22bb22ccdb1-1080-fragmented.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="1415389137" url="https://toobnix.org/static/streaming-playlists/hls/3c8a0b51-f46d-4db4-b001-899ebb9d79fd/86e4eb72-18c3-4a4c-a43b-223bfd58870d-720-fragmented.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="839798465" url="https://toobnix.org/static/streaming-playlists/hls/3c8a0b51-f46d-4db4-b001-899ebb9d79fd/1d7c083f-31af-4f6a-931e-e6a8f244b298-480-fragmented.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="593363179" url="https://toobnix.org/static/streaming-playlists/hls/3c8a0b51-f46d-4db4-b001-899ebb9d79fd/8ad6c1c0-230b-4d0e-9ab8-63987203c2b2-360-fragmented.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="360735570" url="https://toobnix.org/static/streaming-playlists/hls/3c8a0b51-f46d-4db4-b001-899ebb9d79fd/092e938b-c54a-4404-abc7-394fb30c8c05-240-fragmented.mp4" framerate="24" duration="6600" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="108693412" url="https://toobnix.org/static/streaming-playlists/hls/3c8a0b51-f46d-4db4-b001-899ebb9d79fd/89ade752-7e5c-4c69-8495-63c14b46fcf3-0-fragmented.mp4" framerate="0" duration="6600" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/af48fcdc-7662-4544-8881-f24f890e366c.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/6ba7fb19-e166-4a19-b297-ddd2806d88ac.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">A New World: Demanding Freedom &amp; Justice, 1 June 2025</media:title>
            <media:description type="plain">Seattle Peace Chorus, directed by Frederick N. West, performs with the Miho &amp; Diego Duo. We sing Afro-Colombian songs from the fusion of Indigenous, Spanish, and African traditions, to energize us to resist oppression and injustice. From there, wi...</media:description>
        </item>
        <item>
            <title><![CDATA[De Mussolini à Trump (en passant par Retailleau) : comprendre le fascisme]]></title>
            <link>https://peertube2.cpy.re/w/xv8MaCHJQZwuXuUdLmS9Z4</link>
            <guid>https://peertube2.cpy.re/w/xv8MaCHJQZwuXuUdLmS9Z4</guid>
            <pubDate>Mon, 30 Jun 2025 17:41:25 GMT</pubDate>
            <description><![CDATA[Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir Peut-on encore parler de fascisme ? Dans les médias dominants, employer ce terme pour décrire la montée des mouvements d'extrême-droite est tourné en dérision. Trop ...]]></description>
            <content:encoded><![CDATA[<p>Soutenez Blast, nouveau média indépendant : <a href="https://www.blast-info.fr/soutenir" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/soutenir</a></p>
<p>Peut-on encore parler de fascisme ? Dans les médias dominants, employer ce terme pour décrire la montée des mouvements d'extrême-droite est tourné en dérision. Trop radical, trop polémique : le mot "fascisme" serait anachronique, inopérant.</p>
<p>Pourtant, depuis 1945, jamais les discours autoritaires, racistes et identitaires n'ont autant imprégné le débat public dans les démocraties occidentales. L'ascension de Trump et le salut nazi d'Elon Musk incarnent une extrême droite décomplexée, désormais au pouvoir.</p>
<p>Malgré les discours populistes et antisystème de ces mouvements, leurs alliés s'affichent maintenant au grand jour : les milliardaires et leurs multinationales, de Zuckerberg à Arnault, et une partie grandissante de la bourgeoisie, prête à tout pour conserver son pouvoir. Le vent a définitivement tourné.</p>
<p>Alors, l'histoire se répète-t-elle ? Assistons-nous à l'émergence d'un nouveau fascisme ? Mais d'abord, qu'est-ce que le fascisme ?<br />
Dans ce climat de grande confusion où il devient urgent de nommer clairement l'ennemi pour mieux le combattre, Blast vous propose de revenir aux sources : comprendre les origines, l'histoire et les mutations du fascisme d'hier pour éclairer les dangers d'aujourd'hui.</p>
<p>Bibliographie :<br />
Ajari Norman, "Dark Gothic MAGA : « Elon Musk, la néoréaction et l’esthétique du cyberfascisme", LundiMatin, 2025<br />
Ajari Norman, Manifeste afro-décolonial, Seuil, 2024<br />
Gramsci Antonio, Combattre le fascisme, La Variation, 2025<br />
Jackson George, Devant mes yeux la mort, Gallimard, 1972<br />
Laurent Sylvie, Capital et race, Seuil, 2024<br />
Laurent Sylvie, La contre-révolution californienne, Seuil, 2025<br />
Matard-Bonucci Marie-Anne, Totalitarisme fasciste, CNRS Éditions, 2018<br />
Guérin Daniel, Fascisme et grand capital (1936), Libertalia, 2025<br />
Rigouste Mathieu, La guerre globale contre les peuples, La Fabrique, 2025<br />
Toscano Alberto, Fascisme tardif, La Tempête, 2025<br />
Traverso Enzo, La violence nazie, La Fabrique, 2002<br />
Traverso Enzo, Les nouveaux visages du fascisme, Textuel, 2017<br />
Vuillard Éric, L’ordre du jour, Actes Sud, 2017</p>
<p>00:00 : Intro<br />
02:36 : I - Définir le fascisme<br />
13:08 : II - Aux origines du fascisme<br />
22:54 : III - La matrice fasciste<br />
35:11 : IV -  Les nouveaux visage du fascisme<br />
50:54 : V - Combattre le fascisme du XXIe siècle<br />
57:03 : Conclusion</p>
<p>Journalistes : Marin Ben, Félix Cumer<br />
Montage : Thibault Lauras<br />
Son : Baptiste Veilhan, Théo Duchesne<br />
Graphisme : Morgane Sabouret, Margaux Simon<br />
Production : Hicham Tragha<br />
Directeur du développement des collaborations extérieures : Mathias Enthoven<br />
Co-directrice de la rédaction : Soumaya Benaïssa<br />
Directeur de la publication : Denis Robert</p>
<p>Le site : <a href="https://www.blast-info.fr/" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/</a><br />
Facebook : <a href="https://www.facebook.com/blastofficiel" target="_blank" rel="noopener noreferrer">https://www.facebook.com/blastofficiel</a><br />
Twitter : <a href="https://twitter.com/blast_france" target="_blank" rel="noopener noreferrer">https://twitter.com/blast_france</a><br />
Instagram : <a href="https://www.instagram.com/blastofficiel/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/blastofficiel/</a><br />
Mastodon : <a href="https://mamot.fr/web/@blast_info" target="_blank" rel="noopener noreferrer">https://mamot.fr/web/@blast_info</a><br />
Peertube : <a href="https://video.blast-info.fr/" target="_blank" rel="noopener noreferrer">https://video.blast-info.fr/</a><br />
Twitch : <a href="https://www.twitch.tv/blastinfo" target="_blank" rel="noopener noreferrer">https://www.twitch.tv/blastinfo</a><br />
Bluesky : <a href="https://bsky.app/profile/blast-info.fr" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/blast-info.fr</a></p>
<p>#documentaire<br />
#fascisme<br />
#politique</p>
]]></content:encoded>
            <dc:creator>blast, le souffle de l’info</dc:creator>
            <enclosure length="1015963421" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/ff1ca95e-9897-4d76-b613-8148a8547d9d?videoFileIds=5477143"/>
            <media:community>
                <media:statistics views="1207"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/xv8MaCHJQZwuXuUdLmS9Z4"/>
            <media:player url="https://peertube2.cpy.re/w/xv8MaCHJQZwuXuUdLmS9Z4"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/eb0bceb0-b875-4158-9a34-fef1ab8ca86a-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/27352088-3756-456e-a661-3d453782f41c-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/99248f2d-4d7f-4d00-9df9-466b76f227ee-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c13d9114-87b4-412f-ad93-003f3a79d06d-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6f1fadcf-51a0-4f13-ac2c-3b0d243e4cbc-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="1015963421" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/ff1ca95e-9897-4d76-b613-8148a8547d9d/48a1f144-2d30-4ef3-b98b-6842e836d6d5-1080-fragmented.mp4" framerate="25" duration="3569" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="550496131" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/ff1ca95e-9897-4d76-b613-8148a8547d9d/5a46c339-cc69-4623-af07-3dc80a545b80-720-fragmented.mp4" framerate="25" duration="3569" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="324871956" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/ff1ca95e-9897-4d76-b613-8148a8547d9d/953dc9b0-a015-4ee2-af2f-c4383f6a5f52-480-fragmented.mp4" framerate="25" duration="3569" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="151431036" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/ff1ca95e-9897-4d76-b613-8148a8547d9d/4fce877d-61c7-48f9-a111-6f29348b3001-240-fragmented.mp4" framerate="25" duration="3569" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="58759369" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/ff1ca95e-9897-4d76-b613-8148a8547d9d/75367a23-c947-44db-8521-df35e85db825-0-fragmented.mp4" framerate="0" duration="3569" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/cb490919-8e55-4ba3-a665-70692e3ed110.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/a360f9ca-00c7-4402-87af-fea14ea056cb.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">De Mussolini à Trump (en passant par Retailleau) : comprendre le fascisme</media:title>
            <media:description type="plain">Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir Peut-on encore parler de fascisme ? Dans les médias dominants, employer ce terme pour décrire la montée des mouvements d'extrême-droite est tourné en dérision. Trop ...</media:description>
        </item>
        <item>
            <title><![CDATA[La conférence d'hydrologie la plus passionnante de ces dernières années]]></title>
            <link>https://peertube2.cpy.re/w/tdwW4fAQBzeeRnWdRWsxhn</link>
            <guid>https://peertube2.cpy.re/w/tdwW4fAQBzeeRnWdRWsxhn</guid>
            <pubDate>Mon, 30 Jun 2025 16:56:47 GMT</pubDate>
            <description><![CDATA[Baptiste Morizot, philosophe, est invité à la manufacture d'idées pour parler de son ouvrage "L'inexploré". Cela lui donne l'occasion d'expliquer comment se forme les cours d'eau et comment ils sont liés à la Terre. Passionnant. Réduire la qualit...]]></description>
            <content:encoded><![CDATA[<p>Baptiste Morizot, philosophe, est invité à la manufacture d'idées pour parler de son ouvrage "L'inexploré". Cela lui donne l'occasion d'expliquer comment se forme les cours d'eau et comment ils sont liés à la Terre. Passionnant.</p>
<p>Réduire la qualité de la vidéo.</p>
<p>S'abonner à la chaîne <a href="https://www.youtube.com/@lamanufacturedideeslamanuf424" target="_blank" rel="noopener noreferrer">https://www.youtube.com/@lamanufacturedideeslamanuf424</a></p>
<p>Pour changer le système :<br />
Réclamer le RIC constituant : <a href="https://www.mouvement-constituant-populaire.fr/" target="_blank" rel="noopener noreferrer">https://www.mouvement-constituant-populaire.fr/</a><br />
Changer de banque: <a href="https://www.lanef.com/" target="_blank" rel="noopener noreferrer">https://www.lanef.com/</a> <a href="https://change-de-banque.org/particulier/" target="_blank" rel="noopener noreferrer">https://change-de-banque.org/particulier/</a><br />
Passer à l'action militante: <a href="https://extinctionrebellion.fr/" target="_blank" rel="noopener noreferrer">https://extinctionrebellion.fr/</a> <a href="https://ripostealimentaire.fr/" target="_blank" rel="noopener noreferrer">https://ripostealimentaire.fr/</a><br />
Changer de travail : <a href="https://jobs.makesense.org/fr" target="_blank" rel="noopener noreferrer">https://jobs.makesense.org/fr</a></p>
<p>Sources<br />
Morizot <a href="https://www.youtube.com/watch?v=XIAtKdX7_jc" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=XIAtKdX7_jc</a> 13/09/2023<br />
Musique <a href="https://www.youtube.com/watch?v=39PVEaSytpo" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=39PVEaSytpo</a></p>
<p>Réponses au quiz de fin :</p>
<p>/!\ Description à ne pas lire avant d'avoir vu la vidéo entièrement<br />
/!\</p>
<p>/!\</p>
<p>/!\ <br />
/!\</p>
<p>Combien de castors ont été tués durant le XIX et XXème siècle ?<br />
400 millions</p>
<p>Quelle proportion des rivières en France sont incisées ?<br />
90%</p>
<p>Quelles sont les deux types de sécheresses ?<br />
Hydrologique, lié à la capacité d'un système à conserver l'eau, et météorologique, liés au régime de précipitation.</p>
<p>#morizot #écologie #hydrologie #eau #castor #extrait #ethiqueettac</p>
]]></content:encoded>
            <dc:creator>ethique_et_tac</dc:creator>
            <enclosure length="153322150" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/dc66bb49-00e5-4458-8229-f8e596046521?videoFileIds=5477126"/>
            <media:community>
                <media:statistics views="7"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/tdwW4fAQBzeeRnWdRWsxhn"/>
            <media:player url="https://peertube2.cpy.re/w/tdwW4fAQBzeeRnWdRWsxhn"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ed2e6e8a-020d-48e3-b563-988b88a84d98-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3f52b326-600f-4dfb-9b43-f176e16c328c-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f293b7d3-4ea0-4a7a-9f13-cbfd8a0d9f13-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5027f69d-7aa6-4ad2-a0cd-10115b027e8e-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/45fe0d4d-5603-4439-83e8-73d16c7b5e07-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="153322150" url="https://static.indymotion.fr/streaming-playlists/hls/dc66bb49-00e5-4458-8229-f8e596046521/f9d43552-7de2-475c-9a03-8f2f9e527524-1080-fragmented.mp4" framerate="25" duration="879" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="95422907" url="https://static.indymotion.fr/streaming-playlists/hls/dc66bb49-00e5-4458-8229-f8e596046521/59551474-9b56-4d5c-b7aa-5eb5432b95da-720-fragmented.mp4" framerate="25" duration="879" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="61754477" url="https://static.indymotion.fr/streaming-playlists/hls/dc66bb49-00e5-4458-8229-f8e596046521/443efc84-1685-43a8-ba18-ebc234cf289d-480-fragmented.mp4" framerate="25" duration="879" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="33474036" url="https://static.indymotion.fr/streaming-playlists/hls/dc66bb49-00e5-4458-8229-f8e596046521/a1c65c76-313b-48cc-b4a1-6697b7da34de-240-fragmented.mp4" framerate="25" duration="879" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="14209184" url="https://static.indymotion.fr/streaming-playlists/hls/dc66bb49-00e5-4458-8229-f8e596046521/7452f503-2b93-41ec-a528-db759183e599-0-fragmented.mp4" framerate="0" duration="879" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/7fd1203b-7f41-46ff-af1e-951016c020c6.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/e8085887-92ac-4d0a-8c5b-b35926facf51.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">La conférence d'hydrologie la plus passionnante de ces dernières années</media:title>
            <media:description type="plain">Baptiste Morizot, philosophe, est invité à la manufacture d'idées pour parler de son ouvrage "L'inexploré". Cela lui donne l'occasion d'expliquer comment se forme les cours d'eau et comment ils sont liés à la Terre. Passionnant. Réduire la qualit...</media:description>
        </item>
        <item>
            <title><![CDATA[3 fois où Gaël Giraud m'a fait évoluer intellectuellement]]></title>
            <link>https://peertube2.cpy.re/w/fTs86g4aEAoa8dwWaQ1qGq</link>
            <guid>https://peertube2.cpy.re/w/fTs86g4aEAoa8dwWaQ1qGq</guid>
            <pubDate>Mon, 30 Jun 2025 08:36:18 GMT</pubDate>
            <description><![CDATA[Gaël Giraud, économiste de renom, est un pédagogue impressionnant. J'adore écouter ses interviews car j'apprends toujours de nouvelles choses. Ici 3 sujets : le capital humain, l'angle mort des énergies décarbonées, et l'eau potable. Réduire la ...]]></description>
            <content:encoded><![CDATA[<p>Gaël Giraud, économiste de renom, est un pédagogue impressionnant. J'adore écouter ses interviews car j'apprends toujours de nouvelles choses. Ici 3 sujets : le capital humain, l'angle mort des énergies décarbonées, et l'eau potable.</p>
<p>Réduire la qualité de la vidéo.</p>
<p>S'abonner aux chaînes<br />
<a href="https://www.youtube.com/@Aucoffre" target="_blank" rel="noopener noreferrer">https://www.youtube.com/@Aucoffre</a><br />
<a href="https://www.youtube.com/@ElucidMedia" target="_blank" rel="noopener noreferrer">https://www.youtube.com/@ElucidMedia</a><br />
<a href="https://www.youtube.com/@blastinfo" target="_blank" rel="noopener noreferrer">https://www.youtube.com/@blastinfo</a></p>
<p>Soutenir les chaînes<br />
Blast <a href="https://www.blast-info.fr/soutenir" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/soutenir</a><br />
Élucid <a href="https://donorbox.org/elucid" target="_blank" rel="noopener noreferrer">https://donorbox.org/elucid</a></p>
<p>00:00 Le capital humain<br />
05:21 Énergies renouvelables<br />
10:21 Eau potable</p>
<p>Pour changer le système :<br />
Réclamer le RIC constituant : <a href="https://www.mouvement-constituant-populaire.fr/" target="_blank" rel="noopener noreferrer">https://www.mouvement-constituant-populaire.fr/</a><br />
Changer de banque: <a href="https://www.lanef.com/" target="_blank" rel="noopener noreferrer">https://www.lanef.com/</a> <a href="https://change-de-banque.org/particulier/" target="_blank" rel="noopener noreferrer">https://change-de-banque.org/particulier/</a><br />
Passer à l'action militante: <a href="https://extinctionrebellion.fr/" target="_blank" rel="noopener noreferrer">https://extinctionrebellion.fr/</a> <a href="https://ripostealimentaire.fr/" target="_blank" rel="noopener noreferrer">https://ripostealimentaire.fr/</a><br />
Changer de travail : <a href="https://jobs.makesense.org/fr" target="_blank" rel="noopener noreferrer">https://jobs.makesense.org/fr</a></p>
<p>Sources<br />
Giraud <a href="http://Aucoffre.com" target="_blank" rel="noopener noreferrer">Aucoffre.com</a> <a href="https://www.youtube.com/watch?v=ITlQj2eWjEo" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=ITlQj2eWjEo</a><br />
Giraud Blast <a href="https://www.youtube.com/watch?v=4pKjB2u4PWk" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=4pKjB2u4PWk</a><br />
Giraud Élucid <a href="https://www.youtube.com/watch?v=NVUpYPGrlMc" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=NVUpYPGrlMc</a><br />
Musique <a href="https://www.youtube.com/watch?v=39PVEaSytpo" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=39PVEaSytpo</a></p>
<p>Réponses au quiz de fin :</p>
<p>/!\ Description à ne pas lire avant d'avoir vu la vidéo entièrement<br />
/!\</p>
<p>/!\</p>
<p>/!\ <br />
/!\</p>
<p>Que veut dire nudges ?<br />
Petites incitations.</p>
<p>Quel est le point que les militants écologistes n'ont pas vu selon Giraud ?<br />
Les ENR et le nucléaire sont beaucoup plus capitalistiques que les infra fossiles.<br />
La part du coût du capital, capex, est beaucoup plus élevée (40% pour ENR, nucléaire, 10/15% pour les fossiles.)</p>
<p>Quelle sera l'impact sur l'accès à l'eau potable en France en 2040 s'il n'y a pas de volonté politique claire ?<br />
-20% accès à l'eau potable.</p>
<p>#giraud #écologie #économie #énergie #extrait #ethiqueettac</p>
]]></content:encoded>
            <dc:creator>ethique_et_tac</dc:creator>
            <enclosure length="139050243" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/788ef8cf-c536-4592-8bee-d9f45a065ca8?videoFileIds=5477084"/>
            <media:community>
                <media:statistics views="12"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/fTs86g4aEAoa8dwWaQ1qGq"/>
            <media:player url="https://peertube2.cpy.re/w/fTs86g4aEAoa8dwWaQ1qGq"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0af53a65-77fa-46d0-9d1c-7703efb5e216-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/178a5589-d67b-4947-83d4-3e312360a176-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/87a3b01b-a2bb-49cf-a0a5-f4e393f4aeaf-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d8eb1237-cae9-44ff-b848-93e7851d2b08-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fa62c36b-c6b6-45b7-a6a1-75f6b7466280-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="139050243" url="https://static.indymotion.fr/streaming-playlists/hls/788ef8cf-c536-4592-8bee-d9f45a065ca8/b275a0a6-8f10-4b71-add5-cfa7c9c221ad-1080-fragmented.mp4" framerate="25" duration="878" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="89685874" url="https://static.indymotion.fr/streaming-playlists/hls/788ef8cf-c536-4592-8bee-d9f45a065ca8/db427090-e2a4-4884-98a2-1f740ff36fcd-720-fragmented.mp4" framerate="25" duration="878" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="58588141" url="https://static.indymotion.fr/streaming-playlists/hls/788ef8cf-c536-4592-8bee-d9f45a065ca8/aa52b096-c786-474c-b254-407598cc794b-480-fragmented.mp4" framerate="25" duration="878" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="32042759" url="https://static.indymotion.fr/streaming-playlists/hls/788ef8cf-c536-4592-8bee-d9f45a065ca8/c6055a6e-c52f-461d-93e9-fc8315ccfadb-240-fragmented.mp4" framerate="25" duration="878" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="14328192" url="https://static.indymotion.fr/streaming-playlists/hls/788ef8cf-c536-4592-8bee-d9f45a065ca8/b227e7e7-4106-4539-8711-c348b7a695f5-0-fragmented.mp4" framerate="0" duration="878" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/cc7efc08-3331-4d81-81ca-f370e469359d.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/dff9212d-f4a7-46e0-994a-9afd38a028fe.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">3 fois où Gaël Giraud m'a fait évoluer intellectuellement</media:title>
            <media:description type="plain">Gaël Giraud, économiste de renom, est un pédagogue impressionnant. J'adore écouter ses interviews car j'apprends toujours de nouvelles choses. Ici 3 sujets : le capital humain, l'angle mort des énergies décarbonées, et l'eau potable. Réduire la ...</media:description>
        </item>
        <item>
            <title><![CDATA[Natural Grains]]></title>
            <link>https://peertube2.cpy.re/w/3KCN4Sn9JphqGX9MuhcKqv</link>
            <guid>https://peertube2.cpy.re/w/3KCN4Sn9JphqGX9MuhcKqv</guid>
            <pubDate>Mon, 30 Jun 2025 08:29:44 GMT</pubDate>
            <dc:creator>qrstuv_channel</dc:creator>
            <enclosure length="111016552" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/1649ef48-1fd6-468b-a952-6236898c6d11?videoFileIds=5477072"/>
            <media:community>
                <media:statistics views="22"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/3KCN4Sn9JphqGX9MuhcKqv"/>
            <media:player url="https://peertube2.cpy.re/w/3KCN4Sn9JphqGX9MuhcKqv"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/741b88d1-2e6b-4c37-b48f-c5dc41ed4192-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3cd6fba1-a7a7-4347-81f2-f73b693ae8e0-720.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5ba6ecee-3564-4f66-b47b-fcf827dd7761-480.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/233a6e9a-448e-4f28-8902-db490325c2e7-360.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/409d19bd-eb28-4726-857f-44921d6ab3cf-240.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fac115ea-c555-46fc-b590-8d943b121afe-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2ca97f83-1db6-41f8-ba2f-6a3909c6284e-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/bbbe863d-af1e-4c9d-94f9-7129aa43f068-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/55035e16-65d2-4947-88c6-18c8071c85d7-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e23fc190-9c1c-44a1-ab56-37b7a08793b2-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/95ce3c5c-a603-4fa0-b5c0-968797ab95b1-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/a26081ae-f7eb-4145-a904-38141e6016c1-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="111016552" url="https://toobnix.org/static/web-videos/f7ec0eb7-93cd-4229-897a-d34eac749873-1080.mp4" framerate="30" duration="134" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="57668165" url="https://toobnix.org/static/web-videos/10ec0510-9360-460b-98de-2ce94c0b3edb-720.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="31313218" url="https://toobnix.org/static/web-videos/52156cac-646c-45ac-b2eb-b11d32c6f7ec-480.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="23967509" url="https://toobnix.org/static/web-videos/8c29e195-25fb-43b4-bec1-6c31fc8b71a4-360.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="15335018" url="https://toobnix.org/static/web-videos/fbc1d127-e2c1-48cc-8a17-b6b6f64efd01-240.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="6453250" url="https://toobnix.org/static/web-videos/f5fd1e6c-4252-4a3b-92ba-1eab63218175-0.mp4" framerate="0" duration="134" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="110962278" url="https://toobnix.org/static/streaming-playlists/hls/1649ef48-1fd6-468b-a952-6236898c6d11/5b9f47d3-fdde-4133-bef9-d47831e0e2cf-1080-fragmented.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="57615791" url="https://toobnix.org/static/streaming-playlists/hls/1649ef48-1fd6-468b-a952-6236898c6d11/01ce4abb-9964-48e2-8759-addc128d5745-720-fragmented.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="31261752" url="https://toobnix.org/static/streaming-playlists/hls/1649ef48-1fd6-468b-a952-6236898c6d11/7bfbd9e7-4cf3-4db2-8f2d-38b66974c4f3-480-fragmented.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="23915527" url="https://toobnix.org/static/streaming-playlists/hls/1649ef48-1fd6-468b-a952-6236898c6d11/29d658ac-6217-4b0a-8930-751013e69dfe-360-fragmented.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="15281456" url="https://toobnix.org/static/streaming-playlists/hls/1649ef48-1fd6-468b-a952-6236898c6d11/e87cd047-3720-4fba-8138-cd118e0041a1-240-fragmented.mp4" framerate="30" duration="134" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="6458876" url="https://toobnix.org/static/streaming-playlists/hls/1649ef48-1fd6-468b-a952-6236898c6d11/d3958b75-28f9-4a10-9f6f-306b1f0c0789-0-fragmented.mp4" framerate="0" duration="134" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/85f09325-8057-49cf-adc3-0c3e2797d5b2.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/573292b4-50c7-41c2-b788-94636ba361e3.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Natural Grains</media:title>
        </item>
        <item>
            <title><![CDATA[Comment fonctionne le nouveau management (important à écouter)]]></title>
            <link>https://peertube2.cpy.re/w/thPEQAAnSyQ24A6H9CRvbK</link>
            <guid>https://peertube2.cpy.re/w/thPEQAAnSyQ24A6H9CRvbK</guid>
            <pubDate>Mon, 30 Jun 2025 08:28:32 GMT</pubDate>
            <description><![CDATA[https://youtu.be/yybpiBWuI4o?si=0GWJ5KSRNb9yyKU6]]></description>
            <content:encoded><![CDATA[<p><a href="https://youtu.be/yybpiBWuI4o?si=0GWJ5KSRNb9yyKU6" target="_blank" rel="noopener noreferrer">https://youtu.be/yybpiBWuI4o?si=0GWJ5KSRNb9yyKU6</a></p>
]]></content:encoded>
            <dc:creator>a_gauche</dc:creator>
            <enclosure length="23889852" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/dd000586-a6c7-4e78-856d-1006c3e84d2b?videoFileIds=5477069"/>
            <media:community>
                <media:statistics views="7"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/thPEQAAnSyQ24A6H9CRvbK"/>
            <media:player url="https://peertube2.cpy.re/w/thPEQAAnSyQ24A6H9CRvbK"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/10e46342-8414-455f-9542-23663725ef4d-398-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/7b775c86-486a-4749-bc32-d6132a7c24d5-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/088a1c0a-f10c-4d4e-b3e0-4cd4341e5ac7-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="398" fileSize="23889852" url="https://static.indymotion.fr/streaming-playlists/hls/dd000586-a6c7-4e78-856d-1006c3e84d2b/dbbe99bc-69a6-4f93-8c4a-7cc3c6a3a807-398-fragmented.mp4" framerate="30" duration="382" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="16247531" url="https://static.indymotion.fr/streaming-playlists/hls/dd000586-a6c7-4e78-856d-1006c3e84d2b/9d2123f4-e591-4788-ba2f-174f6091ca73-240-fragmented.mp4" framerate="30" duration="382" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="6317923" url="https://static.indymotion.fr/streaming-playlists/hls/dd000586-a6c7-4e78-856d-1006c3e84d2b/3a602dc0-50aa-414d-8e9d-821b10c5e62f-0-fragmented.mp4" framerate="0" duration="382" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/dc8e6e35-feaa-489e-bac6-e1cf11919708.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/c3653b4d-2ccc-4e46-8de8-9aec50641db0.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Comment fonctionne le nouveau management (important à écouter)</media:title>
            <media:description type="plain">https://youtu.be/yybpiBWuI4o?si=0GWJ5KSRNb9yyKU6</media:description>
        </item>
        <item>
            <title><![CDATA[Parigo #274 - Trains et RER supprimés après 22 h : les travaux de la discorde]]></title>
            <link>https://peertube2.cpy.re/w/13jD8eX2yqUZiP1bWLqvyG</link>
            <guid>https://peertube2.cpy.re/w/13jD8eX2yqUZiP1bWLqvyG</guid>
            <pubDate>Mon, 30 Jun 2025 07:22:52 GMT</pubDate>
            <description><![CDATA[Cette semaine, Parigo plonge dans l'enfer des interruptions de trafic et des bus de substitution : de plus en plus de lignes Transilien et de RER ne circulent plus après 22 h. Un vrai casse-tête pour de nombreux franciliens. À quand la fin de ces...]]></description>
            <content:encoded><![CDATA[<p>Cette semaine, Parigo plonge dans l'enfer des interruptions de trafic et des bus de substitution : de plus en plus de lignes Transilien et de RER ne circulent plus après 22 h. Un vrai casse-tête pour de nombreux franciliens.<br />
À quand la fin de ces travaux ?</p>
<p>Abonnez-vous à notre chaîne YouTube :<br />
▶ <a href="https://www.youtube.com/user/France3Paris" target="_blank" rel="noopener noreferrer">https://www.youtube.com/user/France3Paris</a></p>
<p>Retrouvez-nous sur nos sites :<br />
▶ Replays : <a href="http://france.tv/idf" target="_blank" rel="noopener noreferrer">france.tv/idf</a><br />
<a href="https://www.france.tv/france-3/paris-ile-de-france/" target="_blank" rel="noopener noreferrer">https://www.france.tv/france-3/paris-ile-de-france/</a></p>
<p>▶ Info :  <a href="http://idf.france3.fr" target="_blank" rel="noopener noreferrer">idf.france3.fr</a><br />
<a href="http://france3-regions.franceinfo.fr/paris-ile-de-france/" target="_blank" rel="noopener noreferrer">http://france3-regions.franceinfo.fr/paris-ile-de-france/</a></p>
<p>Sur Instagram :<br />
▶ <a href="https://www.instagram.com/france3paris/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/france3paris/</a></p>
<p>Sur Facebook :<br />
▶ <a href="https://www.facebook.com/france3paris" target="_blank" rel="noopener noreferrer">https://www.facebook.com/france3paris</a></p>
<p>Sur X :<br />
▶ <a href="https://x.com/france3_paris" target="_blank" rel="noopener noreferrer">https://x.com/france3_paris</a></p>
<p>Sur TikTok<br />
▶  <a href="https://www.tiktok.com/@france3paris_idf" target="_blank" rel="noopener noreferrer">https://www.tiktok.com/@france3paris_idf</a></p>
]]></content:encoded>
            <dc:creator>Parigo</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="287931420" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/0052f993-041c-4592-a62c-fb4eafe9123c?videoFileIds=5477059"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/13jD8eX2yqUZiP1bWLqvyG"/>
            <media:player url="https://peertube2.cpy.re/w/13jD8eX2yqUZiP1bWLqvyG"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/015ad2f6-54c2-4a0c-bd7a-1e32b8792be3-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/34520f18-1bd7-44d7-83bd-65a161d34f29-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3e1b67b5-37fb-46e3-b296-2396dc98b765-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8daf57d0-3e6d-448a-be9a-51b3fa98dbff-360-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="287931420" url="https://tube.anjara.eu/static/streaming-playlists/hls/0052f993-041c-4592-a62c-fb4eafe9123c/6e262749-342e-4d98-b151-d21be50f448e-1080-fragmented.mp4" framerate="25" duration="919" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="178613574" url="https://tube.anjara.eu/static/streaming-playlists/hls/0052f993-041c-4592-a62c-fb4eafe9123c/d6c8fe72-3f11-4e37-8ce2-a4ded8d0fbee-720-fragmented.mp4" framerate="25" duration="919" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="106843040" url="https://tube.anjara.eu/static/streaming-playlists/hls/0052f993-041c-4592-a62c-fb4eafe9123c/127984f2-9ff8-4c3a-8da6-1e4eac60f522-480-fragmented.mp4" framerate="25" duration="919" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="77411105" url="https://tube.anjara.eu/static/streaming-playlists/hls/0052f993-041c-4592-a62c-fb4eafe9123c/955c3b95-596a-498c-b6df-36a63908c84b-360-fragmented.mp4" framerate="25" duration="919" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/22be5621-ba58-417a-9a80-331cc34444d2.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/b91c7273-7f42-4634-9005-dedb569fc07a.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Parigo #274 - Trains et RER supprimés après 22 h : les travaux de la discorde</media:title>
            <media:description type="plain">Cette semaine, Parigo plonge dans l'enfer des interruptions de trafic et des bus de substitution : de plus en plus de lignes Transilien et de RER ne circulent plus après 22 h. Un vrai casse-tête pour de nombreux franciliens. À quand la fin de ces...</media:description>
        </item>
        <item>
            <title><![CDATA[Intergalactic Wasabi Mix - Live Mix by snowdusk - Episode 1150 - aNONradio.net - 2025/06/29]]></title>
            <link>https://peertube2.cpy.re/w/eqXsinKThxPhjQysuHWQsi</link>
            <guid>https://peertube2.cpy.re/w/eqXsinKThxPhjQysuHWQsi</guid>
            <pubDate>Mon, 30 Jun 2025 02:22:29 GMT</pubDate>
            <description><![CDATA[Trackliste coming soon]]></description>
            <content:encoded><![CDATA[<p>Trackliste coming soon</p>
]]></content:encoded>
            <dc:creator>snowdusk_channel</dc:creator>
            <category>Music</category>
            <enclosure length="1893162638" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/6cc2d3d4-396a-4b6b-abe9-56b6a91594b5?videoFileIds=5476997"/>
            <media:community>
                <media:statistics views="4"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/eqXsinKThxPhjQysuHWQsi"/>
            <media:player url="https://peertube2.cpy.re/w/eqXsinKThxPhjQysuHWQsi"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6b8ec3a0-1a42-4d11-8542-01a49b150097-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/33931a8a-b95c-4f90-8fff-3b7ad63ec633-720.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b793a9c9-63f6-42df-a472-da03e3edd9d0-480.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/02c6dfbc-d995-44a0-94d3-2c14eee36ae1-360.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/43c5f4f0-271e-47ab-ac39-2116e50aef2c-240.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/dfc579b1-4053-4f63-b1d1-2eee65ebeea0-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3047dd54-85f4-4200-a543-39c026f57311-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8ff7e50e-9f2e-4333-9dcf-bfec6cb72e9f-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c26f91f8-0fe5-45b1-b7c0-5d06568e0b21-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/958d2ceb-06b1-4fd0-adff-96d2bb554e57-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ca2fc1ae-b04d-4514-82d7-39bacd8731dc-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cd03ce6e-b838-41dc-ab00-bfe88998bc6a-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="1893162638" url="https://toobnix.org/static/web-videos/8c0141e3-b436-4c33-b278-f381a2a00922-1080.mp4" framerate="30" duration="3610" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="1185928060" url="https://toobnix.org/static/web-videos/63347a3c-0b3c-4113-a212-d36d2f37c6ec-720.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="637289600" url="https://toobnix.org/static/web-videos/9ccec0b0-8272-4f75-96f7-d79913c16e23-480.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="461318460" url="https://toobnix.org/static/web-videos/f6c8f2fa-47c2-4ead-95e0-c7aaf7272047-360.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="278531733" url="https://toobnix.org/static/web-videos/b2288d24-1615-45d3-8b3f-5c9b4da99cfd-240.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="87271123" url="https://toobnix.org/static/web-videos/b4ebb39f-985a-4f87-b4ef-9ccec0ff202a-0.mp4" framerate="0" duration="3610" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="2115959641" url="https://toobnix.org/static/streaming-playlists/hls/6cc2d3d4-396a-4b6b-abe9-56b6a91594b5/c69ad81e-55da-487e-bcf0-f9df58d37354-1080-fragmented.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="1184492018" url="https://toobnix.org/static/streaming-playlists/hls/6cc2d3d4-396a-4b6b-abe9-56b6a91594b5/9f71b98b-37f9-42a4-a1fb-83c93c48b62a-720-fragmented.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="635865298" url="https://toobnix.org/static/streaming-playlists/hls/6cc2d3d4-396a-4b6b-abe9-56b6a91594b5/865b23b9-d20a-464f-b229-c9d9c0f8b698-480-fragmented.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="459869222" url="https://toobnix.org/static/streaming-playlists/hls/6cc2d3d4-396a-4b6b-abe9-56b6a91594b5/eacbb332-da3b-4968-bd80-54e406d05fba-360-fragmented.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="277087599" url="https://toobnix.org/static/streaming-playlists/hls/6cc2d3d4-396a-4b6b-abe9-56b6a91594b5/2a375ead-cae8-407e-90d2-53ea42331a5d-240-fragmented.mp4" framerate="30" duration="3610" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="87414549" url="https://toobnix.org/static/streaming-playlists/hls/6cc2d3d4-396a-4b6b-abe9-56b6a91594b5/b13eb762-3f03-4a65-8e7e-630e015841ea-0-fragmented.mp4" framerate="0" duration="3610" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/987de788-99dd-419d-af07-781d6f739d34.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/6d3c8c53-e27f-475e-a92b-6836fb4c0ba9.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Intergalactic Wasabi Mix - Live Mix by snowdusk - Episode 1150 - aNONradio.net - 2025/06/29</media:title>
            <media:description type="plain">Trackliste coming soon</media:description>
        </item>
        <item>
            <title><![CDATA[Pourquoi tout le monde dit N'IMPORTE QUOI sur le voile ?]]></title>
            <link>https://peertube2.cpy.re/w/bZqRMnt3bNhTUeG5NTi69v</link>
            <guid>https://peertube2.cpy.re/w/bZqRMnt3bNhTUeG5NTi69v</guid>
            <pubDate>Sun, 29 Jun 2025 20:25:01 GMT</pubDate>
            <description><![CDATA[Pourquoi tout le monde dit n'importe quoi sur le voile et la laïcité ? Que disent vraiment les principes philosophiques de la laïcité à ce sujet ? Et aussi, que disent les principales concernées ? Cette vidéo propose une exploration nuancée, à par...]]></description>
            <content:encoded><![CDATA[<p>Pourquoi tout le monde dit n'importe quoi sur le voile et la laïcité ? Que disent vraiment les principes philosophiques de la laïcité à ce sujet ? Et aussi, que disent les principales concernées ?<br />
Cette vidéo propose une exploration nuancée, à partir des principes philosophiques et de témoignages des concernées, et invite à réfléchir autrement à cette question complexe. 👇 CHAPITRES &amp; RÉFS 📕 👇 ➡️</p>
<p>🙏 Merci de votre soutien sur ces plateformes : 🙏<br />
👉 <a href="https://www.patreon.com/philoxime" target="_blank" rel="noopener noreferrer">https://www.patreon.com/philoxime</a><br />
👉 <a href="https://www.kisskissbankbank.com/fr/projects/philoxime" target="_blank" rel="noopener noreferrer">https://www.kisskissbankbank.com/fr/projects/philoxime</a><br />
👉 <a href="https://fr.tipeee.com/philoxime" target="_blank" rel="noopener noreferrer">https://fr.tipeee.com/philoxime</a></p>
<p>⌛ CHAPITRES :<br />
00:00 - Intro<br />
03:06 - Récap Micro-conceptothèque<br />
06:39 - La liberté de conscience<br />
13:55 - L'égal respect<br />
22:14 - L'émancipation individuelle<br />
24:27 -- Signification du voile islamique<br />
33:04 -- Efficacité de cette interdiction pour l'émancipation<br />
40:36 - L'intégration civique<br />
41:39 - Interdire le foulard dans le sport ?<br />
47:26 - Les accompagnatrices scolaires<br />
49:56 - Les élèves<br />
51:01 - Les enseignants<br />
52:58 - L'administration<br />
55:33 - Laïcité et xénophobie<br />
01:02:46 - Conclusion</p>
<p>📕 RÉFÉRENCES (Par ordre d'apparition)</p>
<ul>
<li>Laborde (2008) Critical republicanism: The hijab controversy and political philosophy. OUP.</li>
<li>Laborde (2010) Français, encore un effort pour être républicains! Seuil.</li>
<li>de Coorebyter (2017) "Laïcité : la mauvaise réputation" <a href="https://www.crisp.be/crisp/wp-content/uploads/analyses/2017-03-03_ACL-de_Coorebyter_V-2017-Politique-Laicite_la_mauvaise_reputation.pdf" target="_blank" rel="noopener noreferrer">https://www.crisp.be/crisp/wp-content/uploads/analyses/2017-03-03_ACL-de_Coorebyter_V-2017-Politique-Laicite_la_mauvaise_reputation.pdf</a></li>
<li>CEDH (1993)  Kokkinakis c. Grèce</li>
<li>Pena-Ruiz (2014) Dictionnaire amoureux de la laïcité</li>
<li>Goldman (2012) Le rejet français de l'islam. PUF.</li>
<li>Spinner-Halev (2005) "Hinduism, Christianity, and Liberal Religious Toleration" <a href="https://www.jstor.org/stable/30038394" target="_blank" rel="noopener noreferrer">https://www.jstor.org/stable/30038394</a></li>
<li>Baumgartner (2025) Religion in Liberal Democracy as a Form of Life. Routledge</li>
<li>Maclure &amp; Taylor (2010) Laïcité et liberté de conscience. La découverte</li>
<li>Baubérot &amp; Milot (2011) Laïcité sans frontières. Seuil.</li>
<li>Akbulut (2015) "Veiling as self-disciplining: Muslim women, Islamic discourses, and the headscarf ban in Turkey". <a href="https://link.springer.com/article/10.1007/s11562-015-0340-4" target="_blank" rel="noopener noreferrer">https://link.springer.com/article/10.1007/s11562-015-0340-4</a></li>
<li>Tijou (2004) <a href="https://shs.cairn.info/revue-vacarme-2004-2-page-109?lang=fr" target="_blank" rel="noopener noreferrer">https://shs.cairn.info/revue-vacarme-2004-2-page-109?lang=fr</a></li>
<li>Jopke (2009)</li>
<li>Howard (2012)</li>
<li>Mattei &amp; Aguilar (2016)</li>
<li>Chérifi (2005) <a href="http://www.persee.fr/doc/homig_1142-852x_2005_num_1258_1_4391" target="_blank" rel="noopener noreferrer">www.persee.fr/doc/homig_1142-852x_2005_num_1258_1_4391</a></li>
<li>Yazdiha (2019)</li>
<li>Abdelgadir &amp; Fouka (2020) "Political Secularism and Muslim Integration in the West" <a href="https://doi.org/10.1017/S0003055420000106" target="_blank" rel="noopener noreferrer">https://doi.org/10.1017/S0003055420000106</a></li>
<li>Bowen (2007) Why the French Don't Like Headscarves: Islam, the State, and Public Space. Princeton University Press</li>
<li>Banks &amp; al (2006) “An Examination of the African American Experience of Everyday Discrimination and Symptoms of Psychological Distress.” Community Mental Health Journal 42 (6)</li>
<li>Cano &amp; al (2016) Associations of Ethnic Discrimination with Symptoms of Anxiety and Depression among Hispanic Emerging Adults: A Moderated Mediation Model.” Anxiety, Stress, &amp; Coping 29 (6)</li>
<li>Coker &amp; al (2009) “Perceived Racial/Ethnic Discrimination among Fifth-Grade Students and its Association with Mental Health.” American Journal ofPublic Health 99 (5)</li>
<li>Padela &amp; Heisler (2010) “The Association of Perceived Abuse and Discrimination after September 11, 2001, With Psychological Distress, Level of Happiness, and Health Status Among Arab Americans.” American Journal of Public Health 100 (2)</li>
<li>Chouder &amp; al. (2008), Les filles voilées parlent. La Fabrique</li>
<li>Anne et al (2024) "Discrimination à l'embauche des femmes voilées<br />
en France : un test sur l’accès à l’apprentissage", <a href="https://www.univ-gustave-eiffel.fr/fileadmin/UniversiteGustaveEiffel/REP_Universite/WP-24-04.pdf" target="_blank" rel="noopener noreferrer">https://www.univ-gustave-eiffel.fr/fileadmin/UniversiteGustaveEiffel/REP_Universite/WP-24-04.pdf</a></li>
<li>Fondation Jean Jaurès et al (2019) <a href="https://www.jean-jaures.org/publication/etat-des-lieux-des-discriminations-et-des-agressions-racistes-envers-les-musulmans-de-france/" target="_blank" rel="noopener noreferrer">https://www.jean-jaures.org/publication/etat-des-lieux-des-discriminations-et-des-agressions-racistes-envers-les-musulmans-de-france/</a></li>
<li>Lazri (2025) "Port du voile et entrisme dans le sport". Nouvel Obs. <a href="https://www.nouvelobs.com/idees/20250319.OBS101640/port-du-voile-et-entrisme-dans-le-sport-derriere-les-polemiques-politiques-ce-que-disent-les-sciences-sociales.html" target="_blank" rel="noopener noreferrer">https://www.nouvelobs.com/idees/20250319.OBS101640/port-du-voile-et-entrisme-dans-le-sport-derriere-les-polemiques-politiques-ce-que-disent-les-sciences-sociales.html</a></li>
<li>Calvès (2022), La Laïcité, La Découverte</li>
<li>Jacquemain (2020) "Existe-t-il une laïcité raciste ?" <a href="https://www.revuepolitique.be/existe-t-il-une-laicite-raciste/" target="_blank" rel="noopener noreferrer">https://www.revuepolitique.be/existe-t-il-une-laicite-raciste/</a></li>
</ul>
<p>🙏 REMERCIEMENTS :<br />
Un tout grand merci à Pierre-Etienne Vandamme, avec qui j'ai co-écrit le script de cette vidéo. Merci également à Aurelia Bardon pour sa précieuse relecture du script de cette vidéo. Merci également à Florent Verfaillie, Olivier Milis, Vincent Aubert, Bugul Noz, Yohan C. et Tioui, pour leurs revisionnages !</p>
<p>©️LICENCES :<br />
Anthony Vega - The Sneaky Cat (Artlist)<br />
Would you Kindly - Harris Heller</p>
]]></content:encoded>
            <dc:creator>Philoxime</dc:creator>
            <category>Education</category>
            <enclosure length="948426408" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/590019d9-3457-4b01-94fd-63ea3dfb7b39?videoFileIds=5476944"/>
            <media:community>
                <media:statistics views="142"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/bZqRMnt3bNhTUeG5NTi69v"/>
            <media:player url="https://peertube2.cpy.re/w/bZqRMnt3bNhTUeG5NTi69v"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/506a68d7-3ac3-4112-ae8c-d87d76568d57-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/af0e338a-10c0-4c2e-8d69-538f5bf62305-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4545aa14-4e97-44e5-836f-ff0d814ddb6d-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8a21d5ad-5ccb-42fb-ad3c-07faebeb5c68-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d8461e7c-f5a2-461c-80a0-32c01287f2e8-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e6bfba01-a2a8-49f8-8053-404777f58f10-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="948426408" url="https://skeptikon.fr/static/streaming-playlists/hls/590019d9-3457-4b01-94fd-63ea3dfb7b39/505b3a5a-e198-410f-b9e9-682dd0fed1de-1080-fragmented.mp4" framerate="30" duration="3990" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="532477390" url="https://skeptikon.fr/static/streaming-playlists/hls/590019d9-3457-4b01-94fd-63ea3dfb7b39/e02cad19-0f2a-4576-947e-31a4e274e00b-720-fragmented.mp4" framerate="30" duration="3990" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="333754258" url="https://skeptikon.fr/static/streaming-playlists/hls/590019d9-3457-4b01-94fd-63ea3dfb7b39/b667b68a-3184-445e-adb9-6ab22b281d6a-480-fragmented.mp4" framerate="30" duration="3990" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="245676616" url="https://skeptikon.fr/static/streaming-playlists/hls/590019d9-3457-4b01-94fd-63ea3dfb7b39/2754c4af-4194-4ab3-8719-052a64f31d17-360-fragmented.mp4" framerate="30" duration="3990" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="164442691" url="https://skeptikon.fr/static/streaming-playlists/hls/590019d9-3457-4b01-94fd-63ea3dfb7b39/cb4e8f1d-d917-40ed-9d7c-dd9e3dcd1d1e-240-fragmented.mp4" framerate="30" duration="3990" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="65049285" url="https://skeptikon.fr/static/streaming-playlists/hls/590019d9-3457-4b01-94fd-63ea3dfb7b39/209ddfeb-3d6b-426e-b725-859ba5636a1c-0-fragmented.mp4" framerate="0" duration="3990" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/fec484a1-eb92-4dae-9a0d-272bcc9eb648.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/16705bb1-6d0c-455b-bfbf-c927160a511b.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Pourquoi tout le monde dit N'IMPORTE QUOI sur le voile ?</media:title>
            <media:description type="plain">Pourquoi tout le monde dit n'importe quoi sur le voile et la laïcité ? Que disent vraiment les principes philosophiques de la laïcité à ce sujet ? Et aussi, que disent les principales concernées ? Cette vidéo propose une exploration nuancée, à par...</media:description>
        </item>
    </channel>
</rss>

Videos of subscriptions feeds

path Parameters
format
required
string
Enum: "xml" "rss" "rss2" "atom" "atom1" "json" "json1"

format expected (we focus on making rss the most featureful ; it serves Media RSS)

query Parameters
accountId
required
string

limit listing to a specific account

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

sort
string
Example: sort=-createdAt

Sort column

token
required
string

private token allowing access

Responses

Response samples

Content type
No sample

Videos podcast feed

query Parameters
videoChannelId
required
string

Limit listing to a specific video channel

Responses

Register

As a visitor, you can use this API to open an account (if registrations are open on that PeerTube instance). As an admin, you should use the dedicated User creation API instead.

Resend user verification link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Resend verification link to registration request email

Request Body schema: application/json
email
required
string

Registration email

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Verify a user

Following a user registration, the new user will receive an email asking to click a link containing a secret. This endpoint can also be used to verify a new email set in the user account.

path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
verificationString
required
string <url>
isPendingEmail
boolean

Responses

Request samples

Content type
application/json
{
  • "verificationString": "string",
  • "isPendingEmail": true
}

Verify a registration email

Following a user registration request, the user will receive an email asking to click a link containing a secret.

path Parameters
registrationId
required
integer (id) >= 1
Example: 42

Registration ID

Request Body schema: application/json
verificationString
required
string <url>

Responses

Request samples

Content type
application/json
{
  • "verificationString": "string"
}

Register a user

Signup has to be enabled and signup approval is not required

Request Body schema: application/json
required
email
required
string <email>

email of the user, used for login or service communications

password
required
string <password> (password) [ 6 .. 255 ] characters
username
required
string [ 1 .. 50 ] characters /^[a-z0-9._]+$/

immutable name of the user, used to find or mention its actor

object

channel base information used to create the first channel of the user

displayName
string [ 1 .. 120 ] characters

editable name of the user, displayed in its representations

Responses

Request samples

Content type
application/json
{
  • "username": "chocobozzz",
  • "password": "pa$$word",
  • "email": "user@example.com",
  • "displayName": "string",
  • "channel": {
    }
}

Request registration

Signup has to be enabled and require approval on the instance

Request Body schema: application/json
email
required
string <email>

email of the user, used for login or service communications

password
required
string <password> (password) [ 6 .. 255 ] characters
registrationReason
required
string

reason for the user to register on the instance

username
required
string [ 1 .. 50 ] characters /^[a-z0-9._]+$/

immutable name of the user, used to find or mention its actor

object

channel base information used to create the first channel of the user

displayName
string [ 1 .. 120 ] characters

editable name of the user, displayed in its representations

Responses

Request samples

Content type
application/json
{
  • "username": "chocobozzz",
  • "password": "pa$$word",
  • "email": "user@example.com",
  • "displayName": "string",
  • "channel": {
    },
  • "registrationReason": "string"
}

Response samples

Content type
application/json
{
  • "id": 42,
  • "state": {
    },
  • "registrationReason": "string",
  • "moderationResponse": "string",
  • "username": "string",
  • "email": "user@example.com",
  • "emailVerified": true,
  • "accountDisplayName": "string",
  • "channelHandle": "string",
  • "channelDisplayName": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "user": {
    }
}

Accept registration

Authorizations:
OAuth2
path Parameters
registrationId
required
integer (id) >= 1
Example: 42

Registration ID

Request Body schema: application/json
moderationResponse
required
string

Moderation response to send to the user

preventEmailDelivery
boolean

Set it to true if you don't want PeerTube to send an email to the user

Responses

Request samples

Content type
application/json
{
  • "moderationResponse": "string",
  • "preventEmailDelivery": true
}

Reject registration

Authorizations:
OAuth2
path Parameters
registrationId
required
integer (id) >= 1
Example: 42

Registration ID

Request Body schema: application/json
moderationResponse
required
string

Moderation response to send to the user

preventEmailDelivery
boolean

Set it to true if you don't want PeerTube to send an email to the user

Responses

Request samples

Content type
application/json
{
  • "moderationResponse": "string",
  • "preventEmailDelivery": true
}

Delete registration

Delete the registration entry. It will not remove the user associated with this registration (if any)

Authorizations:
OAuth2
path Parameters
registrationId
required
integer (id) >= 1
Example: 42

Registration ID

Responses

List registrations

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string
sort
string
Enum: "-createdAt" "createdAt" "state" "-state"
start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Login/Logout

Sessions deal with access tokens over time. Only one session token can currently be used at a time.

Login prerequisite

You need to retrieve a client id and secret before logging in.

Responses

Request samples

API="https://peertube2.cpy.re/api/v1"

## AUTH
curl -s "$API/oauth-clients/local"

Response samples

Content type
application/json
{
  • "client_id": "v1ikx5hnfop4mdpnci8nsqh93c45rldf",
  • "client_secret": "AjWiOapPltI6EnsWQwlFarRtLh4u8tDt"
}

Login

With your client id and secret, you can retrieve an access and refresh tokens.

header Parameters
x-peertube-otp
string

If the user enabled two factor authentication, you need to provide the OTP code in this header

Request Body schema: application/x-www-form-urlencoded
client_id
required
string = 32 characters /^[a-z0-9]$/
client_secret
required
string = 32 characters /^[a-zA-Z0-9]$/
grant_type
required
string
Default: "password"
password
required
string <password> (password) [ 6 .. 255 ] characters
username
required
string [ 1 .. 50 ] characters /^[a-z0-9._]+$/

immutable name of the user, used to find or mention its actor

Responses

Request samples

## DEPENDENCIES: jq
API="https://peertube2.cpy.re/api/v1"
USERNAME="<your_username>"
PASSWORD="<your_password>"

## AUTH
client_id=$(curl -s "$API/oauth-clients/local" | jq -r ".client_id")
client_secret=$(curl -s "$API/oauth-clients/local" | jq -r ".client_secret")
curl -s "$API/users/token" \
  --data client_id="$client_id" \
  --data client_secret="$client_secret" \
  --data grant_type=password \
  --data username="$USERNAME" \
  --data-urlencode password="$PASSWORD" \
  | jq -r ".access_token"

Response samples

Content type
application/json
{
  • "token_type": "Bearer",
  • "access_token": "90286a0bdf0f7315d9d3fe8dabf9e1d2be9c97d0",
  • "refresh_token": "2e0d675df9fc96d2e4ec8a3ebbbf45eca9137bb7",
  • "expires_in": 14399,
  • "refresh_token_expires_in": 1209600
}

Logout

Revokes your access token and its associated refresh token, destroying your current session.

Authorizations:
OAuth2

Responses

Accounts

Accounts encompass remote accounts discovered across the federation, and correspond to the main Actor, along with video channels a user can create, which are also Actors. When a comment is posted, it is done with your Account's Actor.

Get an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "url": "string",
  • "name": "chocobozzz",
  • "avatars": [
    ],
  • "host": "example.com",
  • "hostRedundancyAllowed": true,
  • "followingCount": 0,
  • "followersCount": 0,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "userId": 42,
  • "displayName": "string",
  • "description": "string"
}

List videos of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Request samples

fetch('https://peertube2.cpy.re/api/v1/accounts/{name}/videos')
.then(function(response) {
  return response.json()
}).then(function(data) {
  console.log(data)
})

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List followers of an account

Authorizations:
OAuth2
path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Value: "createdAt"

Sort followers by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List accounts

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List playlists of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

withStats
boolean

include daily view statistics for the last 30 days and total views (only if authentified as the account user)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List the synchronizations of video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List ratings of an account

Authorizations:
OAuth2
path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

rating
string
Enum: "like" "dislike"

Optionally filter which ratings to retrieve

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Users

Using some features of PeerTube require authentication, for which User provide different levels of permission as well as associated user information. Each user has a corresponding local Account for federation.

Create a user

Authorizations:
OAuth2
Request Body schema: application/json
required

If the smtp server is configured, you can leave the password empty and an email will be sent asking the user to set it first.

email
required
string <email>

The user email

password
required
string <password> (password) [ 6 .. 255 ] characters
role
required
integer (UserRole)
Enum: 0 1 2

The user role (Admin = 0, Moderator = 1, User = 2)

username
required
string (username) [ 1 .. 50 ] characters /^[a-z0-9._]+$/

immutable name of the user, used to find or mention its actor

adminFlags
integer (UserAdminFlags)
Enum: 0 1

Admin flags for the user (None = 0, Bypass video blocklist = 1)

channelName
string (usernameChannel) [ 1 .. 50 ] characters /^[a-zA-Z0-9\\-_.:]+$/

immutable name of the channel, used to interact with its actor

videoQuota
integer

The user video quota in bytes

videoQuotaDaily
integer

The user daily video quota in bytes

Responses

Request samples

Content type
application/json
{
  • "username": "chocobozzz",
  • "password": "pa$$word",
  • "email": "user@example.com",
  • "videoQuota": -1,
  • "videoQuotaDaily": -1,
  • "channelName": "framasoft_videos",
  • "role": 2,
  • "adminFlags": 1
}

Response samples

Content type
application/json
{
  • "user": {
    }
}

List users

Authorizations:
OAuth2
query Parameters
blocked
boolean

Filter results down to (un)banned users

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search that will match with user usernames or emails

sort
string
Enum: "-id" "-username" "-createdAt"

Sort users by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Delete a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Responses

Get a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

query Parameters
withStats
boolean

include statistics about the user (only available as a moderator/admin)

Responses

Response samples

Content type
application/json
Example
{
  • "account": {
    },
  • "autoPlayNextVideo": true,
  • "autoPlayNextVideoPlaylist": true,
  • "autoPlayVideo": true,
  • "blocked": true,
  • "blockedReason": "string",
  • "createdAt": "string",
  • "email": "user@example.com",
  • "emailVerified": true,
  • "id": 42,
  • "pluginAuth": "string",
  • "lastLoginDate": "2019-08-24T14:15:22Z",
  • "noInstanceConfigWarningModal": true,
  • "noAccountSetupWarningModal": true,
  • "noWelcomeModal": true,
  • "nsfwPolicy": "display",
  • "nsfwFlagsDisplayed": 0,
  • "nsfwFlagsHidden": 0,
  • "nsfwFlagsWarned": 0,
  • "nsfwFlagsBlurred": 0,
  • "role": {
    },
  • "theme": "string",
  • "username": "chocobozzz",
  • "videoChannels": [
    ],
  • "videoQuota": -1,
  • "videoQuotaDaily": -1,
  • "p2pEnabled": true
}

Update a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
required
adminFlags
integer (UserAdminFlags)
Enum: 0 1

Admin flags for the user (None = 0, Bypass video blocklist = 1)

email
string <email>

The updated email of the user

emailVerified
boolean

Set the email as verified

password
string <password> (password) [ 6 .. 255 ] characters
pluginAuth
string or null

The auth plugin to use to authenticate the user

role
integer (UserRole)
Enum: 0 1 2

The user role (Admin = 0, Moderator = 1, User = 2)

videoQuota
integer

The updated video quota of the user in bytes

videoQuotaDaily
integer

The updated daily video quota of the user in bytes

Responses

Request samples

Content type
application/json
{
  • "email": "user@example.com",
  • "emailVerified": true,
  • "videoQuota": 0,
  • "videoQuotaDaily": 0,
  • "pluginAuth": "peertube-plugin-auth-saml2",
  • "role": 2,
  • "adminFlags": 1,
  • "password": "pa$$word"
}

Resend user verification link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Verify a user

Following a user registration, the new user will receive an email asking to click a link containing a secret. This endpoint can also be used to verify a new email set in the user account.

path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
verificationString
required
string <url>
isPendingEmail
boolean

Responses

Request samples

Content type
application/json
{
  • "verificationString": "string",
  • "isPendingEmail": true
}

Ask to reset password

An email containing a reset password link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

Content type
application/json
{
  • "email": "string"
}

Reset password

path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
password
required
string
verificationString
required
string <url>

Responses

Request samples

Content type
application/json
{
  • "verificationString": "string",
  • "password": "string"
}

Request two factor auth

Request two factor authentication for a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
currentPassword
string

Password of the currently authenticated user

Responses

Request samples

Content type
application/json
{
  • "currentPassword": "string"
}

Response samples

Content type
application/json
[
  • {
    }
]

Confirm two factor auth

Confirm a two factor authentication request

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
otpToken
required
string

OTP token generated by the app

requestToken
required
string

Token to identify the two factor request

Responses

Request samples

Content type
application/json
{
  • "requestToken": "string",
  • "otpToken": "string"
}

Disable two factor auth

Disable two factor authentication of a user

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Request Body schema: application/json
currentPassword
string

Password of the currently authenticated user

Responses

Request samples

Content type
application/json
{
  • "currentPassword": "string"
}

User Exports

To create an archive of user data.

Request user export

Request an archive of user data. An email is sent when the archive is ready.

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

Request Body schema: application/json
withVideoFiles
boolean

Whether to include video files in the archive

Responses

Request samples

Content type
application/json
{
  • "withVideoFiles": true
}

Response samples

Content type
application/json
{
  • "export": {
    }
}

List user exports

PeerTube >= 6.1

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "state": {
    },
  • "size": 0,
  • "privateDownloadUrl": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "expiresOn": "2019-08-24T14:15:22Z"
}

Delete a user export

PeerTube >= 6.1

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

userId
required
integer (id) >= 1
Example: 42

User id

Responses

User Imports

To import an archive of user data.

Initialize the resumable user import

PeerTube >= 6.1 Uses a resumable protocol to initialize the import of the archive

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
filename
string <filename>

Archive filename including extension

Responses

Request samples

Content type
application/json
{
  • "filename": "user-export-6-2024-02-09T10_12_11.682Z"
}

Send chunk for the resumable user import

PeerTube >= 6.1 Uses a resumable protocol to continue, pause or resume the import of the archive

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Cancel the resumable user import

PeerTube >= 6.1 Uses a resumable protocol to cancel the resumable user import

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

Get latest user import

PeerTube >= 6.1

Authorizations:
OAuth2
path Parameters
userId
required
integer (id) >= 1
Example: 42

User id

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "state": {
    },
  • "createdAt": "2019-08-24T14:15:22Z"
}

My User

Operations related to your own User, when logged-in.

Get my user information

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Update my user information

Authorizations:
OAuth2
Request Body schema: application/json
required
autoPlayNextVideo
boolean

new preference regarding playing following videos automatically

autoPlayNextVideoPlaylist
boolean

new preference regarding playing following playlist videos automatically

autoPlayVideo
boolean

new preference regarding playing videos automatically

currentPassword
string <password> (password) [ 6 .. 255 ] characters
displayName
string [ 3 .. 120 ] characters

new name of the user in its representations

email
string <email>

new email used for login and service communications

noAccountSetupWarningModal
boolean
noInstanceConfigWarningModal
boolean
noWelcomeModal
boolean
nsfwFlagsBlurred
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsDisplayed
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsHidden
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsWarned
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwPolicy
string
Enum: "true" "false" "both"

new NSFW display policy

p2pEnabled
boolean

whether to enable P2P in the player or not

password
string <password> (password) [ 6 .. 255 ] characters
theme
string
videoLanguages
Array of strings

list of languages to filter videos down to

videosHistoryEnabled
boolean

whether to keep track of watched history or not

Responses

Request samples

Content type
application/json
{
  • "password": "pa$$word",
  • "currentPassword": "pa$$word",
  • "email": "user@example.com",
  • "displayName": "string",
  • "nsfwPolicy": "true",
  • "nsfwFlagsDisplayed": 0,
  • "nsfwFlagsHidden": 0,
  • "nsfwFlagsWarned": 0,
  • "nsfwFlagsBlurred": 0,
  • "p2pEnabled": true,
  • "autoPlayVideo": true,
  • "autoPlayNextVideo": true,
  • "autoPlayNextVideoPlaylist": true,
  • "videosHistoryEnabled": true,
  • "videoLanguages": [
    ],
  • "theme": "string",
  • "noInstanceConfigWarningModal": true,
  • "noAccountSetupWarningModal": true,
  • "noWelcomeModal": true
}

Get video imports of my user

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Search in video names

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

targetUrl
string

Filter on import target URL

videoChannelSyncId
number

Filter on imports created by a specific channel synchronization

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Get my user used quota

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "videoQuotaUsed": 16810141515,
  • "videoQuotaUsedDaily": 1681014151
}

Get rate of my user for a video

Authorizations:
OAuth2
path Parameters
videoId
required
integer >= 1
Example: 42

The video id

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "rating": "like"
}

List videos of my user

Authorizations:
OAuth2
query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

string or Array of strings

PeerTube >= 7.2 Filter on videos that are published by a channel with one of these names

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Update my user avatar

Authorizations:
OAuth2
Request Body schema: multipart/form-data
avatarfile
string <binary>

The file to upload

Responses

Response samples

Content type
application/json
{
  • "avatars": [
    ]
}

Delete my avatar

Authorizations:
OAuth2

Responses

List my abuses

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

id
integer

only list the report with this id

sort
string
Enum: "-id" "-createdAt" "-state"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

My Subscriptions

Operations related to your subscriptions to video channels, their new videos, and how to keep up to date with their latest publications!

List my user subscriptions

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Enum: "-id" "-createdAt" "-channelUpdatedAt"
start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add subscription to my user

Authorizations:
OAuth2
Request Body schema: application/json
uri
required
string <uri>

uri of the video channels to subscribe to

Responses

Request samples

Content type
application/json
{
  • "uri": "008a0e54-375d-49d0-8379-143202e24152@video.lqdn.fr"
}

Get if subscriptions exist for my user

Authorizations:
OAuth2
query Parameters
uris
required
Array of strings <uri> [ items <uri > ]

list of uris to check if each is part of the user subscriptions

Responses

Response samples

Content type
application/json
{ }

List videos of subscriptions of my user

Authorizations:
OAuth2
query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Get subscription of my user

Authorizations:
OAuth2
path Parameters
subscriptionHandle
required
string
Example: my_username | my_username@example.com

The subscription handle

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "url": "string",
  • "name": "chocobozzz",
  • "avatars": [
    ],
  • "host": "example.com",
  • "hostRedundancyAllowed": true,
  • "followingCount": 0,
  • "followersCount": 0,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "displayName": "Videos of Framasoft",
  • "description": "Videos made with <3 by Framasoft",
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "isLocal": true,
  • "banners": [
    ],
  • "ownerAccount": {
    }
}

Delete subscription of my user

Authorizations:
OAuth2
path Parameters
subscriptionHandle
required
string
Example: my_username | my_username@example.com

The subscription handle

Responses

My Notifications

Notifications following new videos, follows or reports. They allow you to keep track of the interactions and overall important information that concerns you. You MAY set per-notification type delivery preference, to receive the info either by mail, by in-browser notification or both.

List my notifications

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

typeOneOf
Array of integers (NotificationType)
Items Enum: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22

only list notifications of these types

unread
boolean

only list unread notifications

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Mark notifications as read by their id

Authorizations:
OAuth2
Request Body schema: application/json
ids
required
Array of integers

ids of the notifications to mark as read

Responses

Request samples

Content type
application/json
{
  • "ids": [
    ]
}

Mark all my notification as read

Authorizations:
OAuth2

Responses

Update my notification settings

Authorizations:
OAuth2
Request Body schema: application/json
abuseAsModerator
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
abuseNewMessage
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
abuseStateChange
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
autoInstanceFollowing
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
blacklistOnMyVideo
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
commentMention
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
myVideoImportFinished
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
myVideoPublished
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
myVideoStudioEditionFinished
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
myVideoTranscriptionGenerated
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newCommentOnMyVideo
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newFollow
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newInstanceFollower
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newPeerTubeVersion
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newPluginVersion
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newUserRegistration
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
newVideoFromSubscription
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL
videoAutoBlacklistAsModerator
integer (NotificationSettingValue)

Notification type. One of the following values, or a sum of multiple values:

  • 0 NONE
  • 1 WEB
  • 2 EMAIL

Responses

Request samples

Content type
application/json
{
  • "abuseAsModerator": 0,
  • "videoAutoBlacklistAsModerator": 0,
  • "newUserRegistration": 0,
  • "newVideoFromSubscription": 0,
  • "blacklistOnMyVideo": 0,
  • "myVideoPublished": 0,
  • "myVideoImportFinished": 0,
  • "commentMention": 0,
  • "newCommentOnMyVideo": 0,
  • "newFollow": 0,
  • "newInstanceFollower": 0,
  • "autoInstanceFollowing": 0,
  • "abuseStateChange": 0,
  • "abuseNewMessage": 0,
  • "newPeerTubeVersion": 0,
  • "newPluginVersion": 0,
  • "myVideoStudioEditionFinished": 0,
  • "myVideoTranscriptionGenerated": 0
}

My History

Operations related to your watch history.

List watched videos history

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Delete history element

Authorizations:
OAuth2
path Parameters
videoId
required
integer >= 1
Example: 42

object id for the video

Responses

Clear video history

Authorizations:
OAuth2
Request Body schema: multipart/form-data
beforeDate
string <date-time>

history before this date will be deleted

Responses

Video

Operations dealing with listing, uploading, fetching or modifying videos.

List videos of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Request samples

fetch('https://peertube2.cpy.re/api/v1/accounts/{name}/videos')
.then(function(response) {
  return response.json()
}).then(function(data) {
  console.log(data)
})

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Request video token

Request special tokens that expire quickly to use them in some context (like accessing private static files)

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "files": {
    }
}

Create a studio task

Create a task to edit a video (cut, add intro/outro etc)

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: multipart/form-data
required
Array
Any of
name
string
Value: "cut"
object

Responses

List videos

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List available video categories

Responses

Response samples

Content type
application/json
{
  • "1": "Music",
  • "2": "Films",
  • "3": "Vehicles",
  • "4": "Art",
  • "5": "Sports",
  • "6": "Travels",
  • "7": "Gaming",
  • "8": "People",
  • "9": "Comedy",
  • "10": "Entertainment",
  • "11": "News & Politics",
  • "12": "How To",
  • "13": "Education",
  • "14": "Activism",
  • "15": "Science & Technology",
  • "16": "Animals",
  • "17": "Kids",
  • "18": "Food"
}

List available video licences

Responses

Response samples

Content type
application/json
{
  • "1": "Attribution",
  • "2": "Attribution - Share Alike",
  • "3": "Attribution - No Derivatives",
  • "4": "Attribution - Non Commercial",
  • "5": "Attribution - Non Commercial - Share Alike",
  • "6": "Attribution - Non Commercial - No Derivatives",
  • "7": "Public Domain Dedication"
}

List available video languages

Responses

Response samples

Content type
application/json
{
  • "aa": "Afar",
  • "ab": "Abkhazian",
  • "af": "Afrikaans",
  • "ak": "Akan",
  • "am": "Amharic",
  • "ar": "Arabic",
  • "an": "Aragonese",
  • "ase": "American Sign Language",
  • "as": "Assamese",
  • "asq": "Austrian Sign Language",
  • "av": "Avaric",
  • "avk": "Kotava",
  • "ay": "Aymara",
  • "az": "Azerbaijani",
  • "ba": "Bashkir",
  • "bm": "Bambara",
  • "be": "Belarusian",
  • "bn": "Bengali",
  • "bfi": "British Sign Language",
  • "bi": "Bislama",
  • "bo": "Tibetan",
  • "bs": "Bosnian",
  • "br": "Breton",
  • "bg": "Bulgarian",
  • "bzs": "Brazilian Sign Language",
  • "ca": "Catalan",
  • "cs": "Czech",
  • "ch": "Chamorro",
  • "ce": "Chechen",
  • "cv": "Chuvash",
  • "kw": "Cornish",
  • "co": "Corsican",
  • "cr": "Cree",
  • "cse": "Czech Sign Language",
  • "csl": "Chinese Sign Language",
  • "cy": "Welsh",
  • "da": "Danish",
  • "de": "German",
  • "dv": "Dhivehi",
  • "dsl": "Danish Sign Language",
  • "dz": "Dzongkha",
  • "el": "Greek",
  • "en": "English",
  • "eo": "Esperanto",
  • "et": "Estonian",
  • "eu": "Basque",
  • "ee": "Ewe",
  • "fo": "Faroese",
  • "fa": "Persian",
  • "fj": "Fijian",
  • "fi": "Finnish",
  • "fr": "French",
  • "fy": "Western Frisian",
  • "fse": "Finnish Sign Language",
  • "fsl": "French Sign Language",
  • "ff": "Fulah",
  • "gcf": "Guadeloupean Creole French",
  • "gd": "Scottish Gaelic",
  • "ga": "Irish",
  • "gl": "Galician",
  • "gv": "Manx",
  • "gn": "Guarani",
  • "gsg": "German Sign Language",
  • "gu": "Gujarati",
  • "ht": "Haitian",
  • "ha": "Hausa",
  • "sh": "Serbo-Croatian",
  • "he": "Hebrew",
  • "hz": "Herero",
  • "hi": "Hindi",
  • "ho": "Hiri Motu",
  • "hr": "Croatian",
  • "hu": "Hungarian",
  • "hy": "Armenian",
  • "ig": "Igbo",
  • "ii": "Sichuan Yi",
  • "iu": "Inuktitut",
  • "id": "Indonesian",
  • "ik": "Inupiaq",
  • "is": "Icelandic",
  • "it": "Italian",
  • "jv": "Javanese",
  • "jbo": "Lojban",
  • "ja": "Japanese",
  • "jsl": "Japanese Sign Language",
  • "kab": "Kabyle",
  • "kl": "Kalaallisut",
  • "kn": "Kannada",
  • "ks": "Kashmiri",
  • "ka": "Georgian",
  • "kr": "Kanuri",
  • "kk": "Kazakh",
  • "km": "Khmer",
  • "ki": "Kikuyu",
  • "rw": "Kinyarwanda",
  • "ky": "Kirghiz",
  • "kv": "Komi",
  • "kg": "Kongo",
  • "ko": "Korean",
  • "kj": "Kuanyama",
  • "ku": "Kurdish",
  • "lo": "Lao",
  • "la": "Latin",
  • "lv": "Latvian",
  • "li": "Limburgan",
  • "ln": "Lingala",
  • "lt": "Lithuanian",
  • "lb": "Luxembourgish",
  • "lu": "Luba-Katanga",
  • "lg": "Ganda",
  • "mh": "Marshallese",
  • "ml": "Malayalam",
  • "mr": "Marathi",
  • "mk": "Macedonian",
  • "mg": "Malagasy",
  • "mt": "Maltese",
  • "mn": "Mongolian",
  • "mi": "Maori",
  • "ms": "Malay (macrolanguage)",
  • "my": "Burmese",
  • "na": "Nauru",
  • "nv": "Navajo",
  • "nr": "South Ndebele",
  • "nd": "North Ndebele",
  • "ng": "Ndonga",
  • "ne": "Nepali (macrolanguage)",
  • "nl": "Dutch",
  • "nn": "Norwegian Nynorsk",
  • "nb": "Norwegian Bokmål",
  • "no": "Norwegian",
  • "ny": "Nyanja",
  • "oc": "Occitan",
  • "oj": "Ojibwa",
  • "or": "Oriya (macrolanguage)",
  • "om": "Oromo",
  • "os": "Ossetian",
  • "pa": "Panjabi",
  • "pks": "Pakistan Sign Language",
  • "pl": "Polish",
  • "pt": "Portuguese (Brazilian)",
  • "ps": "Pushto",
  • "qu": "Quechua",
  • "rm": "Romansh",
  • "ro": "Romanian",
  • "rsl": "Russian Sign Language",
  • "rn": "Rundi",
  • "ru": "Russian",
  • "sg": "Sango",
  • "sdl": "Saudi Arabian Sign Language",
  • "sfs": "South African Sign Language",
  • "si": "Sinhala",
  • "sk": "Slovak",
  • "sl": "Slovenian",
  • "se": "Northern Sami",
  • "sm": "Samoan",
  • "sn": "Shona",
  • "sd": "Sindhi",
  • "so": "Somali",
  • "st": "Southern Sotho",
  • "es": "Spanish (Spain)",
  • "sq": "Albanian",
  • "sc": "Sardinian",
  • "sr": "Serbian",
  • "ss": "Swati",
  • "su": "Sundanese",
  • "sw": "Swahili (macrolanguage)",
  • "sv": "Swedish",
  • "swl": "Swedish Sign Language",
  • "ty": "Tahitian",
  • "ta": "Tamil",
  • "tt": "Tatar",
  • "te": "Telugu",
  • "tg": "Tajik",
  • "tl": "Tagalog",
  • "th": "Thai",
  • "ti": "Tigrinya",
  • "tlh": "Klingon",
  • "to": "Tonga (Tonga Islands)",
  • "tn": "Tswana",
  • "ts": "Tsonga",
  • "tk": "Turkmen",
  • "tr": "Turkish",
  • "tw": "Twi",
  • "ug": "Uighur",
  • "uk": "Ukrainian",
  • "ur": "Urdu",
  • "uz": "Uzbek",
  • "ve": "Venda",
  • "vi": "Vietnamese",
  • "wa": "Walloon",
  • "wo": "Wolof",
  • "xh": "Xhosa",
  • "yi": "Yiddish",
  • "yo": "Yoruba",
  • "za": "Zhuang",
  • "zh": "Chinese",
  • "zu": "Zulu",
  • "zxx": "No linguistic content",
  • "tok": "Toki Pona",
  • "pt-PT": "Portuguese (Portugal)",
  • "es-419": "Spanish (Latin America)",
  • "zh-Hans": "Simplified Chinese",
  • "zh-Hant": "Traditional Chinese",
  • "ca-valencia": "Valencian"
}

List available video privacy policies

Responses

Response samples

Content type
application/json
{
  • "1": "Public",
  • "2": "Unlisted",
  • "3": "Private",
  • "4": "Internal",
  • "5": "Password protected"
}

Update a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: multipart/form-data
category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

channelId
integer

New channel of the video. The channel must be owned by the same account as the previous one. Use the "change ownership" endpoints to give a video to a channel owned by another account on the local PeerTube instance.

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

name
string [ 3 .. 120 ] characters

Video name

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string or null <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
string

Whether or not we wait transcoding before publish the video

Responses

Get a video

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "uuid": "9c9de5e8-0a1e-484a-b099-e80766180a6d",
  • "shortUUID": "2y84q2MQUMWPbiEcxNXMgC",
  • "isLive": true,
  • "createdAt": "2017-10-01T10:52:46.396Z",
  • "publishedAt": "2018-10-01T10:52:46.396Z",
  • "updatedAt": "2021-05-04T08:01:01.502Z",
  • "originallyPublishedAt": "2010-10-01T10:52:46.396Z",
  • "category": {
    },
  • "licence": {
    },
  • "language": {
    },
  • "privacy": {
    },
  • "truncatedDescription": "**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\\r\\n*A decentralized video hosting network, based on fr...\n",
  • "duration": 1419,
  • "aspectRatio": 1.778,
  • "isLocal": true,
  • "name": "What is PeerTube?",
  • "thumbnailPath": "/lazy-static/thumbnails/a65bc12f-9383-462e-81ae-8207e8b434ee.jpg",
  • "previewPath": "/lazy-static/previews/a65bc12f-9383-462e-81ae-8207e8b434ee.jpg",
  • "embedPath": "/videos/embed/a65bc12f-9383-462e-81ae-8207e8b434ee",
  • "views": 1337,
  • "likes": 42,
  • "dislikes": 7,
  • "comments": 0,
  • "nsfw": true,
  • "nsfwFlags": 0,
  • "nsfwSummary": "string",
  • "waitTranscoding": true,
  • "state": {
    },
  • "scheduledUpdate": {
    },
  • "blacklisted": true,
  • "blacklistedReason": "string",
  • "account": {
    },
  • "channel": {
    },
  • "userHistory": {
    },
  • "viewers": 0,
  • "description": "\"**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\\r\\n*A decentralized video hosting network,\nbased on free/libre software!*\\r\\n\\r\\n**Animation Produced by:** [LILA](https://libreart.info) - [ZeMarmot Team](https://film.zemarmot.net)\\r\\n\n*Directed by* Aryeom\\r\\n*Assistant* Jehan\\r\\n**Licence**: [CC-By-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)\\r\\n\\r\\n\n**Sponsored by** [Framasoft](https://framasoft.org)\\r\\n\\r\\n**Music**: [Red Step Forward](http://play.dogmazic.net/song.php?song_id=52491) - CC-By Ken Bushima\\r\\n\\r\\n\n**Movie Clip**: [Caminades 3: Llamigos](http://www.caminandes.com/) CC-By Blender Institute\\r\\n\\r\\n**Video sources**: https://gitlab.gnome.org/Jehan/what-is-peertube/\"\n",
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "tags": [
    ],
  • "commentsEnabled": true,
  • "commentsPolicy": {
    },
  • "downloadEnabled": true,
  • "inputFileUpdatedAt": "2019-08-24T14:15:22Z",
  • "trackerUrls": [],
  • "files": [
    ],
  • "streamingPlaylists": [
    ]
}

Delete a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Get complete video description

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
"**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\n"

Notify user is watching a video

Call this endpoint regularly (every 5-10 seconds for example) to notify the server the user is watching the video. After a while, PeerTube will increase video's viewers counter. If the user is authenticated, PeerTube will also store the current player time.

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
required
currentTime
required
integer <seconds>

timestamp within the video, in seconds

client
string

Client software used to watch the video. For example "Firefox", "PeerTube Approval Android", etc.

device
any (VideoStatsUserAgentDevice)
Enum: "console" "embedded" "mobile" "smarttv" "tablet" "wearable" "xr" "desktop"
operatingSystem
string

Operating system used to watch the video. For example "Windows", "Ubuntu", etc.

sessionId
string

Optional param to represent the current viewer session. Used by the backend to properly count one view per session per video. PeerTube admin can configure the server to not trust this sessionId parameter but use the request IP address instead to identify a viewer.

viewEvent
string
Value: "seek"

Event since last viewing call:

  • seek - If the user seeked the video

Responses

Request samples

Content type
application/json
{
  • "currentTime": 5,
  • "viewEvent": "seek",
  • "sessionId": "string",
  • "client": "string",
  • "device": "console",
  • "operatingSystem": "string"
}

Set watching progress of a video Deprecated

This endpoint has been deprecated. Use /videos/{id}/views instead

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
required
currentTime
required
integer <seconds>

timestamp within the video, in seconds

client
string

Client software used to watch the video. For example "Firefox", "PeerTube Approval Android", etc.

device
any (VideoStatsUserAgentDevice)
Enum: "console" "embedded" "mobile" "smarttv" "tablet" "wearable" "xr" "desktop"
operatingSystem
string

Operating system used to watch the video. For example "Windows", "Ubuntu", etc.

sessionId
string

Optional param to represent the current viewer session. Used by the backend to properly count one view per session per video. PeerTube admin can configure the server to not trust this sessionId parameter but use the request IP address instead to identify a viewer.

viewEvent
string
Value: "seek"

Event since last viewing call:

  • seek - If the user seeked the video

Responses

Request samples

Content type
application/json
{
  • "currentTime": 5,
  • "viewEvent": "seek",
  • "sessionId": "string",
  • "client": "string",
  • "device": "console",
  • "operatingSystem": "string"
}

Upload a video

Uses a single request to upload a video.

Authorizations:
OAuth2
Request Body schema: multipart/form-data
channelId
required
integer >= 1

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

videofile
required
string <binary>

Video file

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Request samples

## DEPENDENCIES: jq
USERNAME="<your_username>"
PASSWORD="<your_password>"
FILE_PATH="<your_file_path>"
CHANNEL_ID="<your_channel_id>"
NAME="<video_name>"
API="https://peertube2.cpy.re/api/v1"

## AUTH
client_id=$(curl -s "$API/oauth-clients/local" | jq -r ".client_id")
client_secret=$(curl -s "$API/oauth-clients/local" | jq -r ".client_secret")
token=$(curl -s "$API/users/token" \
  --data client_id="$client_id" \
  --data client_secret="$client_secret" \
  --data grant_type=password \
  --data username="$USERNAME" \
  --data password="$PASSWORD" \
  | jq -r ".access_token")

## VIDEO UPLOAD
curl -s "$API/videos/upload" \
  -H "Authorization: Bearer $token" \
  --max-time 600 \
  --form videofile=@"$FILE_PATH" \
  --form channelId=$CHANNEL_ID \
  --form name="$NAME"

Response samples

Content type
application/json
{
  • "video": {
    }
}

Initialize the resumable upload of a video

Uses a resumable protocol to initialize the upload of a video

Authorizations:
OAuth2
header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
channelId
required
integer >= 1

Channel id that will contain this video

filename
required
string <filename>

Video filename including extension

name
required
string [ 3 .. 120 ] characters

Video name

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Request samples

Content type
application/json
{
  • "name": "What is PeerTube?",
  • "channelId": 3,
  • "privacy": 1,
  • "category": 15,
  • "licence": 2,
  • "language": "en",
  • "description": "**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\n",
  • "waitTranscoding": true,
  • "generateTranscription": true,
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "nsfw": true,
  • "nsfwSummary": null,
  • "nsfwFlags": 0,
  • "tags": [
    ],
  • "commentsEnabled": true,
  • "commentsPolicy": 1,
  • "downloadEnabled": true,
  • "originallyPublishedAt": "2019-08-24T14:15:22Z",
  • "scheduleUpdate": {
    },
  • "thumbnailfile": "string",
  • "previewfile": "string",
  • "videoPasswords": [
    ],
  • "filename": "what_is_peertube.mp4"
}

Send chunk for the resumable upload of a video

Uses a resumable protocol to continue, pause or resume the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Cancel the resumable upload of a video, deleting any data uploaded so far

Uses a resumable protocol to cancel the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

Create a live

Authorizations:
OAuth2
Request Body schema: multipart/form-data
channelId
required
integer

Channel id that will contain this live video

name
required
string [ 3 .. 120 ] characters

Live video/replay name

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Live video/replay description

downloadEnabled
boolean

Enable or disable downloading for the replay of this live video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

latencyMode
integer (LiveVideoLatencyMode)
Enum: 1 2 3

The live latency mode (Default = 1, High latency = 2, Small Latency = 3)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this live video/replay contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

permanentLive
boolean

User can stream multiple times in a permanent live

previewfile
string <binary>

Live video/replay preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (LiveVideoReplaySettings)
saveReplay
boolean
support
string

A text tell the audience how to support the creator

tags
Array of strings [ 1 .. 5 ] items [ items [ 2 .. 30 ] characters ]

Live video/replay tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Live video/replay thumbnail file

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Get information about a live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "rtmpUrl": "string",
  • "rtmpsUrl": "string",
  • "streamKey": "string",
  • "saveReplay": true,
  • "replaySettings": {
    },
  • "permanentLive": true,
  • "latencyMode": 1
}

Update information about a live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
latencyMode
integer (LiveVideoLatencyMode)
Enum: 1 2 3

The live latency mode (Default = 1, High latency = 2, Small Latency = 3)

permanentLive
boolean

User can stream multiple times in a permanent live

object (LiveVideoReplaySettings)
saveReplay
boolean

Responses

Request samples

Content type
application/json
{
  • "saveReplay": true,
  • "replaySettings": {
    },
  • "permanentLive": true,
  • "latencyMode": 1
}

Get video source file metadata

Get metadata and download link of original video file

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "filename": "string",
  • "inputFilename": "string",
  • "fileDownloadUrl": "string",
  • "resolution": {
    },
  • "size": 0,
  • "fps": 0,
  • "width": 0,
  • "height": 0,
  • "createdAt": "2019-08-24T14:15:22Z"
}

Delete video source file

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Initialize the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to initialize the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
filename
string <filename>

Video filename including extension

Responses

Request samples

Content type
application/json
{
  • "filename": "what_is_peertube.mp4"
}

Send chunk for the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to continue, pause or resume the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Cancel the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to cancel the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

List storyboards of a video

PeerTube >= 6.0

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "storyboards": [
    ]
}

List videos of a video channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search videos

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

durationMax
integer

Get videos that have this maximum duration

durationMin
integer

Get videos that have this minimum duration

endDate
string <date-time>

Get videos that are published before this date

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
originallyPublishedEndDate
string <date-time>

Get videos that are originally published before this date

originallyPublishedStartDate
string <date-time>

Get videos that are originally published after this date

privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete video information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

startDate
string <date-time>

Get videos that are published after this date

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

uuids
Array of strings

Find elements with specific UUIDs

Responses

Callbacks

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Video Upload

Operations dealing with adding video or audio. PeerTube supports two upload modes, and three import modes.

Upload

  • legacy, where the video file is sent in a single request
  • resumable, where the video file is sent in chunks

You can upload videos more reliably by using the resumable variant. Its protocol lets you resume an upload operation after a network interruption or other transmission failure, saving time and bandwidth in the event of network failures.

Favor using resumable uploads in any of the following cases:

  • You are transferring large files
  • The likelihood of a network interruption is high
  • Uploads are originating from a device with a low-bandwidth or unstable Internet connection, such as a mobile device

Import

  • URL-based: where the URL points to any service supported by youtube-dl
  • magnet-based: where the URI resolves to a BitTorrent resource containing a single supported video file
  • torrent-based: where the metainfo file resolves to a BitTorrent resource containing a single supported video file

The import function is practical when the desired video/audio is available online. It makes PeerTube download it for you, saving you as much bandwidth and avoiding any instability or limitation your network might have.

Upload a video

Uses a single request to upload a video.

Authorizations:
OAuth2
Request Body schema: multipart/form-data
channelId
required
integer >= 1

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

videofile
required
string <binary>

Video file

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Request samples

## DEPENDENCIES: jq
USERNAME="<your_username>"
PASSWORD="<your_password>"
FILE_PATH="<your_file_path>"
CHANNEL_ID="<your_channel_id>"
NAME="<video_name>"
API="https://peertube2.cpy.re/api/v1"

## AUTH
client_id=$(curl -s "$API/oauth-clients/local" | jq -r ".client_id")
client_secret=$(curl -s "$API/oauth-clients/local" | jq -r ".client_secret")
token=$(curl -s "$API/users/token" \
  --data client_id="$client_id" \
  --data client_secret="$client_secret" \
  --data grant_type=password \
  --data username="$USERNAME" \
  --data password="$PASSWORD" \
  | jq -r ".access_token")

## VIDEO UPLOAD
curl -s "$API/videos/upload" \
  -H "Authorization: Bearer $token" \
  --max-time 600 \
  --form videofile=@"$FILE_PATH" \
  --form channelId=$CHANNEL_ID \
  --form name="$NAME"

Response samples

Content type
application/json
{
  • "video": {
    }
}

Initialize the resumable upload of a video

Uses a resumable protocol to initialize the upload of a video

Authorizations:
OAuth2
header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
channelId
required
integer >= 1

Channel id that will contain this video

filename
required
string <filename>

Video filename including extension

name
required
string [ 3 .. 120 ] characters

Video name

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Request samples

Content type
application/json
{
  • "name": "What is PeerTube?",
  • "channelId": 3,
  • "privacy": 1,
  • "category": 15,
  • "licence": 2,
  • "language": "en",
  • "description": "**[Want to help to translate this video?](https://weblate.framasoft.org/projects/what-is-peertube-video/)**\\r\\n\\r\\n**Take back the control of your videos! [#JoinPeertube](https://joinpeertube.org)**\n",
  • "waitTranscoding": true,
  • "generateTranscription": true,
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "nsfw": true,
  • "nsfwSummary": null,
  • "nsfwFlags": 0,
  • "tags": [
    ],
  • "commentsEnabled": true,
  • "commentsPolicy": 1,
  • "downloadEnabled": true,
  • "originallyPublishedAt": "2019-08-24T14:15:22Z",
  • "scheduleUpdate": {
    },
  • "thumbnailfile": "string",
  • "previewfile": "string",
  • "videoPasswords": [
    ],
  • "filename": "what_is_peertube.mp4"
}

Send chunk for the resumable upload of a video

Uses a resumable protocol to continue, pause or resume the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Cancel the resumable upload of a video, deleting any data uploaded so far

Uses a resumable protocol to cancel the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

Import a video

Import a torrent or magnetURI or HTTP resource (if enabled by the instance administrator)

Authorizations:
OAuth2
Request Body schema: multipart/form-data
One of
channelId
required
integer >= 1

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

targetUrl
required
string <url>

remote URL where to find the import's source video

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Initialize the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to initialize the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
X-Upload-Content-Length
required
number
Example: 2469036

Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading.

X-Upload-Content-Type
required
string <mimetype>
Example: video/mp4

MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary.

Request Body schema: application/json
filename
string <filename>

Video filename including extension

Responses

Request samples

Content type
application/json
{
  • "filename": "what_is_peertube.mp4"
}

Send chunk for the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to continue, pause or resume the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

Remember that larger chunks are more efficient. PeerTube's web client uses chunks varying from 1048576 bytes (~1MB) and increases or reduces size depending on connection health.

Content-Range
required
string
Example: bytes 0-262143/2469036

Specifies the bytes in the file that the request is uploading.

For example, a value of bytes 0-262143/1000000 shows that the request is sending the first 262144 bytes (256 x 1024) in a 2,469,036 byte file.

Request Body schema: application/octet-stream
string <binary>

Responses

Cancel the resumable replacement of a video

PeerTube >= 6.0 Uses a resumable protocol to cancel the replacement of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
upload_id
required
string

Created session id to proceed with. If you didn't send chunks in the last hour, it is not valid anymore and you need to initialize a new upload.

header Parameters
Content-Length
required
number
Example: 0

Responses

Video Imports

Operations dealing with listing, adding and removing video imports.

Import a video

Import a torrent or magnetURI or HTTP resource (if enabled by the instance administrator)

Authorizations:
OAuth2
Request Body schema: multipart/form-data
One of
channelId
required
integer >= 1

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

targetUrl
required
string <url>

remote URL where to find the import's source video

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

PeerTube >= 6.2 If enabled by the admin, automatically generate a subtitle of the video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>

Video preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

tags
Array of strings [ 1 .. 5 ] items unique [ items [ 2 .. 30 ] characters ]

Video tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Video thumbnail file

videoPasswords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]
waitTranscoding
boolean

Whether or not we wait transcoding before publish the video

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Cancel video import

Cancel a pending video import

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Responses

Delete video import

Delete ended video import

Authorizations:
OAuth2
path Parameters
id
required
integer (id) >= 1
Example: 42

Entity id

Responses

Video Captions

Operations dealing with listing, adding and removing closed captions of a video.

List captions of a video

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Generate a video caption

PeerTube >= 6.2 This feature has to be enabled by the administrator

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
forceTranscription
boolean
Default: false

Responses

Request samples

Content type
application/json
{
  • "forceTranscription": false
}

Add or replace a video caption

Authorizations:
OAuth2
path Parameters
captionLanguage
required
string (VideoLanguageSet)
Example: en

The caption language

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: multipart/form-data
captionfile
string <binary>

The file to upload.

Responses

Delete a video caption

Authorizations:
OAuth2
path Parameters
captionLanguage
required
string (VideoLanguageSet)
Example: en

The caption language

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Video Chapters

Operations dealing with managing chapters of a video.

Get chapters of a video

PeerTube >= 6.0

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "chapters": {
    }
}

Replace video chapters

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
Array of objects

Responses

Request samples

Content type
application/json
{
  • "chapters": [
    ]
}

Video Channels

Operations dealing with the creation, modification and listing of videos within a channel.

List video channels

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Create a video channel

Authorizations:
OAuth2
Request Body schema: application/json
displayName
required
any

Channel display name

name
required
string [ 1 .. 50 ] characters /^[a-zA-Z0-9\\-_.:]+$/

username of the channel to create

description
any

Channel description

support
any

How to support/fund the channel

Responses

Request samples

Content type
application/json
{
  • "displayName": null,
  • "description": null,
  • "support": null,
  • "name": "framasoft_videos"
}

Response samples

Content type
application/json
{
  • "videoChannel": {
    }
}

Get a video channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "url": "string",
  • "name": "chocobozzz",
  • "avatars": [
    ],
  • "host": "example.com",
  • "hostRedundancyAllowed": true,
  • "followingCount": 0,
  • "followersCount": 0,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "displayName": "Videos of Framasoft",
  • "description": "Videos made with <3 by Framasoft",
  • "support": "Please support our work on https://soutenir.framasoft.org/en/ <3",
  • "isLocal": true,
  • "banners": [
    ],
  • "ownerAccount": {
    }
}

Update a video channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: application/json
bulkVideosSupportUpdate
boolean

Update the support field for all videos of this channel

description
any

Channel description

displayName
any

Channel display name

support
any

How to support/fund the channel

Responses

Request samples

Content type
application/json
{
  • "displayName": null,
  • "description": null,
  • "support": null,
  • "bulkVideosSupportUpdate": true
}

Delete a video channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Responses

List videos of a video channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
string

Plain text search, applied to various parts of the model depending on endpoint

skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List playlists of a channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List followers of a video channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Value: "createdAt"

Sort followers by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Update channel avatar

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: multipart/form-data
avatarfile
string <binary>

The file to upload.

Responses

Response samples

Content type
application/json
{
  • "avatars": [
    ]
}

Delete channel avatar

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Responses

Update channel banner

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: multipart/form-data
bannerfile
string <binary>

The file to upload.

Responses

Response samples

Content type
application/json
{
  • "banners": [
    ]
}

Delete channel banner

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Responses

Import videos in channel

Import a remote channel/playlist videos into a channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: application/json
externalChannelUrl
required
string
videoChannelSyncId
integer

If part of a channel sync process, specify its id to assign video imports to this channel synchronization

Responses

Request samples

Content type
application/json
{}

List video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

withStats
boolean

include daily view statistics for the last 30 days and total views (only if authentified as the account user)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List the synchronizations of video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search channels

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

handles
Array of strings

Find elements with these handles

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete channel information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Callbacks

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Video Comments

Operations dealing with comments to a video. Comments are organized in threads: adding a comment in response to the video starts a thread, adding a reply to a comment adds it to its root comment thread.

List comments on user's videos

PeerTube >= 6.2

Authorizations:
OAuth2
query Parameters
string or Array of strings

PeerTube >= 6.2 filter on comments that contain one of these automatic tags

isHeldForReview
boolean

only display comments that are held for review

search
string

Plain text search, applied to various parts of the model depending on endpoint

searchAccount
string

Filter comments by searching on the account

searchVideo
string

Filter comments by searching on the video

videoChannelId
integer

Limit results on this specific video channel

videoId
integer

Limit results on this specific video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List threads of a video

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Enum: "-createdAt" "-totalReplies"

Sort comments by criteria

start
integer >= 0

Offset used to paginate results

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "total": 0,
  • "totalNotDeletedComments": 0,
  • "data": [
    ]
}

Create a thread

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
text
required
string <html> [ 1 .. 10000 ] characters

Text of the comment

Responses

Request samples

Content type
application/json
{
  • "text": "This video is wonderful!"
}

Response samples

Content type
application/json
{
  • "comment": {
    }
}

Get a thread

path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

threadId
required
integer

The thread id (root comment id)

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "comment": {
    },
  • "children": [
    ]
}

List instance comments

Authorizations:
OAuth2
query Parameters
string or Array of strings

PeerTube >= 6.2 filter on comments that contain one of these automatic tags

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

onLocalVideo
boolean

Display only objects of local or remote videos

search
string

Plain text search, applied to various parts of the model depending on endpoint

searchAccount
string

Filter comments by searching on the account

searchVideo
string

Filter comments by searching on the video

videoChannelId
integer

Limit results on this specific video channel

videoId
integer

Limit results on this specific video

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Reply to a thread of a video

Authorizations:
OAuth2
path Parameters
commentId
required
integer >= 1
Example: 42

The comment id

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Request Body schema: application/json
text
required
string <html> [ 1 .. 10000 ] characters

Text of the comment

Responses

Request samples

Content type
application/json
{
  • "text": "This video is wonderful!"
}

Response samples

Content type
application/json
{
  • "comment": {
    }
}

Delete a comment or a reply

Authorizations:
OAuth2
path Parameters
commentId
required
integer >= 1
Example: 42

The comment id

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Approve a comment

PeerTube >= 6.2 Approve a comment that requires a review

Authorizations:
OAuth2
path Parameters
commentId
required
integer >= 1
Example: 42

The comment id

required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Video Rates

Like/dislike a video.

Get rate of my user for a video

Authorizations:
OAuth2
path Parameters
videoId
required
integer >= 1
Example: 42

The video id

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "rating": "like"
}

Like/dislike a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Request Body schema: application/json
rating
required
string
Enum: "like" "dislike"

Responses

Request samples

Content type
application/json
{
  • "rating": "like"
}

Video Playlists

Operations dealing with playlists of videos. Playlists are bound to users and/or channels.

List playlists of a channel

path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List available playlist privacy policies

Responses

Response samples

Content type
application/json
{
  • "1": "Public",
  • "2": "Unlisted",
  • "3": "Private"
}

List video playlists

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Create a video playlist

If the video playlist is set as public, videoChannelId is mandatory.

Authorizations:
OAuth2
Request Body schema: multipart/form-data
displayName
required
string [ 1 .. 120 ] characters

Video playlist display name

description
string [ 3 .. 1000 ] characters

Video playlist description

privacy
integer (VideoPlaylistPrivacySet)
Enum: 1 2 3

Video playlist privacy policy (see /video-playlists/privacies)

thumbnailfile
string <binary>

Video playlist thumbnail file

videoChannelId
integer >= 1

Video channel in which the playlist will be published

Responses

Response samples

Content type
application/json
{
  • "videoPlaylist": {
    }
}

Get a video playlist

path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Responses

Response samples

Content type
application/json
{
  • "id": 42,
  • "uuid": "9c9de5e8-0a1e-484a-b099-e80766180a6d",
  • "shortUUID": "2y84q2MQUMWPbiEcxNXMgC",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "description": "string",
  • "displayName": "string",
  • "isLocal": true,
  • "videoLength": 0,
  • "thumbnailPath": "string",
  • "privacy": {
    },
  • "type": {
    },
  • "ownerAccount": {
    },
  • "videoChannel": {
    }
}

Update a video playlist

If the video playlist is set as public, the playlist must have a assigned channel.

Authorizations:
OAuth2
path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Request Body schema: multipart/form-data
description
string

Video playlist description

displayName
string [ 1 .. 120 ] characters

Video playlist display name

privacy
integer (VideoPlaylistPrivacySet)
Enum: 1 2 3

Video playlist privacy policy (see /video-playlists/privacies)

thumbnailfile
string <binary>

Video playlist thumbnail file

videoChannelId
integer >= 1

Video channel in which the playlist will be published

Responses

Delete a video playlist

Authorizations:
OAuth2
path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Responses

List videos of a playlist

path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add a video in a playlist

Authorizations:
OAuth2
path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Request Body schema: application/json
required
string or integer

Video to add in the playlist

startTimestamp
integer <seconds>

Start the video at this specific timestamp

stopTimestamp
integer <seconds>

Stop the video at this specific timestamp

Responses

Request samples

Content type
application/json
{
  • "videoId": "9c9de5e8-0a1e-484a-b099-e80766180a6d",
  • "startTimestamp": 0,
  • "stopTimestamp": 0
}

Response samples

Content type
application/json
{
  • "videoPlaylistElement": {
    }
}

Reorder a playlist

Authorizations:
OAuth2
path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Request Body schema: application/json
insertAfterPosition
required
integer >= 0

New position for the block to reorder, to add the block before the first element

startPosition
required
integer >= 1

Start position of the element to reorder

reorderLength
integer >= 1

How many element from startPosition to reorder

Responses

Request samples

Content type
application/json
{
  • "startPosition": 1,
  • "insertAfterPosition": 0,
  • "reorderLength": 1
}

Update a playlist element

Authorizations:
OAuth2
path Parameters
playlistElementId
required
integer (id) >= 1
Example: 42

Playlist element id

playlistId
required
integer >= 1
Example: 42

Playlist id

Request Body schema: application/json
startTimestamp
integer <seconds>

Start the video at this specific timestamp

stopTimestamp
integer <seconds>

Stop the video at this specific timestamp

Responses

Request samples

Content type
application/json
{
  • "startTimestamp": 0,
  • "stopTimestamp": 0
}

Delete an element from a playlist

Authorizations:
OAuth2
path Parameters
playlistElementId
required
integer (id) >= 1
Example: 42

Playlist element id

playlistId
required
integer >= 1
Example: 42

Playlist id

Responses

Check video exists in my playlists

Authorizations:
OAuth2
query Parameters
videoIds
required
Array of integers[ items >= 1 ]
Example: videoIds=42

The video ids to check

Responses

Response samples

Content type
application/json
{
  • "videoId": [
    ]
}

List playlists of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

The video playlist type (Regular = 1, Watch Later = 2)

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search playlists

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete playlist information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

uuids
Array of strings

Find elements with specific UUIDs

Responses

Callbacks

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Video Stats

Video statistics

Get overall stats of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

Content type
application/json
{
  • "averageWatchTime": 0,
  • "totalWatchTime": 0,
  • "viewersPeak": 0,
  • "viewersPeakDate": "2019-08-24T14:15:22Z",
  • "countries": [
    ]
}

Get user agent stats of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

Content type
application/json
{
  • "clients": [
    ],
  • "devices": [
    ],
  • "operatingSystem": [
    ]
}

Get retention stats of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "data": [
    ]
}

Get timeserie stats of a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

metric
required
string
Enum: "viewers" "aggregateWatchTime"

The metric to get

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

Content type
application/json
{
  • "data": [
    ]
}

Video Ownership Change

List video ownership changes

Authorizations:
OAuth2

Responses

Accept ownership change request

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Refuse ownership change request

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Request ownership change

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
required
username
required
string

Responses

Request samples

Content type
application/json
{
  • "username": "string"
}

Video Mirroring

PeerTube instances can mirror videos from one another, and help distribute some videos.

For importing videos as your own, refer to video imports.

List videos being mirrored

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Value: "name"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

target
required
string
Enum: "my-videos" "remote-videos"

direction of the mirror

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Mirror a video

Authorizations:
OAuth2
Request Body schema: application/json
videoId
required
integer >= 1

object id for the video

Responses

Request samples

Content type
application/json
{
  • "videoId": 42
}

Delete a mirror done on a video

Authorizations:
OAuth2
path Parameters
redundancyId
required
string

id of an existing redundancy on a video

Responses

Video Files

Operations on video files

Delete video HLS files

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Delete video Web Video files

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Video Transcoding

Video transcoding related operations

Create a studio task

Create a task to edit a video (cut, add intro/outro etc)

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: multipart/form-data
required
Array
Any of
name
string
Value: "cut"
object

Responses

Create a transcoding job

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
transcodingType
required
string
Enum: "hls" "web-video"
forceTranscoding
boolean
Default: false

If the video is stuck in transcoding state, do it anyway

Responses

Request samples

Content type
application/json
{
  • "transcodingType": "hls",
  • "forceTranscoding": false
}

Live Videos

Create a live

Authorizations:
OAuth2
Request Body schema: multipart/form-data
channelId
required
integer

Channel id that will contain this live video

name
required
string [ 3 .. 120 ] characters

Live video/replay name

category
integer (VideoCategorySet)

category id of the video (see /videos/categories)

commentsEnabled
boolean
Deprecated

Deprecated in 6.2, use commentsPolicy instead

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

Comments policy of the video (Enabled = 1, Disabled = 2, Requires Approval = 3)

description
string

Live video/replay description

downloadEnabled
boolean

Enable or disable downloading for the replay of this live video

language
string (VideoLanguageSet)

language id of the video (see /videos/languages)

latencyMode
integer (LiveVideoLatencyMode)
Enum: 1 2 3

The live latency mode (Default = 1, High latency = 2, Small Latency = 3)

licence
integer (VideoLicenceSet)

licence id of the video (see /videos/licences)

nsfw
boolean

Whether or not this live video/replay contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

permanentLive
boolean

User can stream multiple times in a permanent live

previewfile
string <binary>

Live video/replay preview file

privacy
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

privacy id of the video (see /videos/privacies)

object (LiveVideoReplaySettings)
saveReplay
boolean
support
string

A text tell the audience how to support the creator

tags
Array of strings [ 1 .. 5 ] items [ items [ 2 .. 30 ] characters ]

Live video/replay tags (maximum 5 tags each between 2 and 30 characters)

thumbnailfile
string <binary>

Live video/replay thumbnail file

Responses

Response samples

Content type
application/json
{
  • "video": {
    }
}

Get information about a live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "rtmpUrl": "string",
  • "rtmpsUrl": "string",
  • "streamKey": "string",
  • "saveReplay": true,
  • "replaySettings": {
    },
  • "permanentLive": true,
  • "latencyMode": 1
}

Update information about a live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
latencyMode
integer (LiveVideoLatencyMode)
Enum: 1 2 3

The live latency mode (Default = 1, High latency = 2, Small Latency = 3)

permanentLive
boolean

User can stream multiple times in a permanent live

object (LiveVideoReplaySettings)
saveReplay
boolean

Responses

Request samples

Content type
application/json
{
  • "saveReplay": true,
  • "replaySettings": {
    },
  • "permanentLive": true,
  • "latencyMode": 1
}

List live sessions

List all sessions created in a particular live

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Get live session of a replay

If the video is a replay of a live, you can find the associated live session using this endpoint

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "startDate": "2019-08-24T14:15:22Z",
  • "endDate": "2019-08-24T14:15:22Z",
  • "error": 1,
  • "replayVideo": {
    }
}

Channels Sync

Operations dealing with synchronizing PeerTube user's channel with channels of other platforms

Import videos in channel

Import a remote channel/playlist videos into a channel

Authorizations:
OAuth2
path Parameters
channelHandle
required
string
Example: my_username | my_username@example.com

The video channel handle

Request Body schema: application/json
externalChannelUrl
required
string
videoChannelSyncId
integer

If part of a channel sync process, specify its id to assign video imports to this channel synchronization

Responses

Request samples

Content type
application/json
{}

Create a synchronization for a video channel

Authorizations:
OAuth2
Request Body schema: application/json
externalChannelUrl
string
videoChannelId
integer (id) >= 1

Responses

Request samples

Content type
application/json
{}

Response samples

Content type
application/json
{
  • "videoChannelSync": {
    }
}

Delete a video channel synchronization

Authorizations:
OAuth2
path Parameters
channelSyncId
required
integer >= 1
Example: 42

Channel Sync id

Responses

Triggers the channel synchronization job, fetching all the videos from the remote channel

Authorizations:
OAuth2
path Parameters
channelSyncId
required
integer >= 1
Example: 42

Channel Sync id

Responses

List the synchronizations of video channels of an account

path Parameters
name
required
string
Example: chocobozzz | chocobozzz@example.org

The username or handle of the account

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Video Passwords

Operation on video passwords

List video passwords

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Update video passwords

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
passwords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]

Responses

Request samples

Content type
application/json
{
  • "passwords": [
    ]
}

Delete a video password

PeerTube >= 6.0

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

videoPasswordId
required
integer (id) >= 1
Example: 42

The video password id

Responses

Search

The search helps to find videos or channels from within the instance and beyond. Videos from other instances federated by the instance (that is, instances followed by the instance) can be found via keywords and other criteria of the advanced search.

Administrators can also enable the use of a remote search system, indexing videos and channels not could be not federated by the instance.

Search videos

query Parameters
string or Array of strings

PeerTube >= 6.2 Admins and moderators only filter on videos that contain one of these automatic tags

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

category id of the video (see /videos/categories)

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

durationMax
integer

Get videos that have this maximum duration

durationMin
integer

Get videos that have this minimum duration

endDate
string <date-time>

Get videos that are published before this date

excludeAlreadyWatched
boolean

Whether or not to exclude videos that are in the user's video history

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

PeerTube >= 6.0 Display only videos that have Web Video files

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

Include additional videos in results (can be combined using bitwise or operator)

  • 0 NONE
  • 1 NOT_PUBLISHED_STATE
  • 2 BLACKLISTED
  • 4 BLOCKED_OWNER
  • 8 FILES
  • 16 CAPTIONS
  • 32 VIDEO SOURCE
isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

language id of the video (see /videos/languages). Use _unknown to filter on videos that don't have a video language

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

licence id of the video (see /videos/licences)

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwFlagsIncluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
originallyPublishedEndDate
string <date-time>

Get videos that are originally published before this date

originallyPublishedStartDate
string <date-time>

Get videos that are originally published after this date

privacyOneOf
integer (VideoPrivacySet)
Enum: 1 2 3 4 5

PeerTube >= 4.0 Display only videos in this specific privacy/privacies

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete video information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
skipCount
string
Default: "false"
Enum: "true" "false"

if you don't need the total in the response

sort
string
Enum: "name" "-duration" "-createdAt" "-publishedAt" "-views" "-likes" "-comments" "-trending" "-hot" "-best"

Sort videos by criteria (prefixing with - means DESC order):

  • hot - Adaptation of Reddit "hot" algorithm taking into account video views, likes, dislikes and comments and publication date
  • best - Same than hot, but also takes into account user video history
  • trending - Sort videos by recent views ("recent" is defined by the admin)
  • views - Sort videos using their views counter
  • publishedAt - Sort by video publication date (when it became publicly available)
start
integer >= 0

Offset used to paginate results

startDate
string <date-time>

Get videos that are published after this date

string or Array of strings

tag(s) of the video, where all should be present in the video

string or Array of strings

tag(s) of the video

uuids
Array of strings

Find elements with specific UUIDs

Responses

Callbacks

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search channels

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

handles
Array of strings

Find elements with these handles

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete channel information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Callbacks

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search playlists

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete playlist information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

uuids
Array of strings

Find elements with specific UUIDs

Responses

Callbacks

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Abuses

Abuses deal with reports of local or remote videos/comments/accounts alike.

List my abuses

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

id
integer

only list the report with this id

sort
string
Enum: "-id" "-createdAt" "-state"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List abuses

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

filter
string
Enum: "video" "comment" "account"

only list account, comment or video reports

id
integer

only list the report with this id

predefinedReason
Array of strings (PredefinedAbuseReasons) <= 8 items
Items Enum: "violentOrAbusive" "hatefulOrAbusive" "spamOrMisleading" "privacy" "rights" "serverRules" "thumbnails" "captions"

predefined reason the listed reports should contain

search
string

plain search that will match with video titles, reporter names and more

searchReportee
string

only list reports of a specific reportee

searchReporter
string

only list reports of a specific reporter

searchVideo
string

only list reports of a specific video

searchVideoChannel
string

only list reports of a specific video channel

sort
string
Enum: "-id" "-createdAt" "-state"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

videoIs
string
Enum: "deleted" "blacklisted"

only list deleted or blocklisted videos

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Report an abuse

Authorizations:
OAuth2
Request Body schema: application/json
required
reason
required
string [ 2 .. 3000 ] characters

Reason why the user reports this video

object
object
predefinedReasons
Array of strings (PredefinedAbuseReasons) <= 8 items
Items Enum: "violentOrAbusive" "hatefulOrAbusive" "spamOrMisleading" "privacy" "rights" "serverRules" "thumbnails" "captions"

Reason categories that help triage reports

object

Responses

Request samples

Content type
application/json
{
  • "reason": "string",
  • "predefinedReasons": [
    ],
  • "video": {
    },
  • "comment": {
    },
  • "account": {
    }
}

Response samples

Content type
application/json
{
  • "abuse": {
    }
}

Update an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Request Body schema: application/json
moderationComment
string [ 2 .. 3000 ] characters

Update the report comment visible only to the moderation team

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

Responses

Request samples

Content type
application/json
{
  • "state": 1,
  • "moderationComment": "string"
}

Delete an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Responses

List messages of an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add message to an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Request Body schema: application/json
required
message
required
string [ 2 .. 3000 ] characters

Message to send

Responses

Request samples

Content type
application/json
{
  • "message": "string"
}

Delete an abuse message

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

abuseMessageId
required
integer >= 1
Example: 42

Abuse message id

Responses

Video Blocks

Operations dealing with blocking videos (removing them from view and preventing interactions).

Block a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

Unblock a video by its id

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

List video blocks

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

plain search that will match with video titles, and more

sort
string
Enum: "-id" "name" "-duration" "-views" "-likes" "-dislikes" "-uuid" "-createdAt"

Sort blocklists by criteria

start
integer >= 0

Offset used to paginate results

type
integer
Enum: 1 2

list only blocks that match this type:

  • 1: manual block
  • 2: automatic block that needs review

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Account Blocks

Get block status of accounts/hosts

query Parameters
accounts
Array of strings
Example: accounts=goofy@example.com&accounts=donald@example.com

Check if these accounts are blocked

hosts
Array of strings
Example: hosts=example.com

Check if these hosts are blocked

Responses

Response samples

Content type
application/json
{
  • "accounts": {
    },
  • "hosts": {
    }
}

List account blocks

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Block an account

Authorizations:
OAuth2
Request Body schema: application/json
accountName
required
string

account to block, in the form username@domain

Responses

Request samples

Content type
application/json
{
  • "accountName": "chocobozzz@example.org"
}

Unblock an account by its handle

Authorizations:
OAuth2
path Parameters
accountName
required
string

account to unblock, in the form username@domain

Responses

Server Blocks

Get block status of accounts/hosts

query Parameters
accounts
Array of strings
Example: accounts=goofy@example.com&accounts=donald@example.com

Check if these accounts are blocked

hosts
Array of strings
Example: hosts=example.com

Check if these hosts are blocked

Responses

Response samples

Content type
application/json
{
  • "accounts": {
    },
  • "hosts": {
    }
}

List server blocks

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Block a server

Authorizations:
OAuth2
Request Body schema: application/json
host
required
string <hostname>

server domain to block

Responses

Request samples

Content type
application/json
{
  • "host": "example.com"
}

Unblock a server by its domain

Authorizations:
OAuth2
path Parameters
host
required
string <hostname>

server domain to unblock

Responses

Automatic Tags

Automatic tags set on objects (like comments or videos) by specific rules (external link, watched words, etc.)

Get account auto tag policies on comments

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to get auto tag policies

Responses

Response samples

Content type
application/json
{
  • "review": [
    ]
}

Update account auto tag policies on comments

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to update auto tag policies

Request Body schema: application/json
review
Array of strings

Auto tags that automatically set the comment in review state

Responses

Request samples

Content type
application/json
{
  • "review": [
    ]
}

Get account available auto tags

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to get auto tag policies

Responses

Response samples

Content type
application/json
{
  • "available": [
    ]
}

Get server available auto tags

PeerTube >= 6.2

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "available": [
    ]
}

Watched Words

Manage list of watched words to detect patterns on objects (like comments of videos)

List account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to list watched words

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Response samples

Content type
application/json
{
  • "watchedWordsList": {
    }
}

Update account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
listId
required
string

list of watched words to update

Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Delete account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
listId
required
string

list of watched words to delete

Responses

List server watched words

PeerTube >= 6.2

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Response samples

Content type
application/json
{
  • "watchedWordsList": {
    }
}

Update server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
listId
required
string

list of watched words to update

Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Delete server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
listId
required
string

list of watched words to delete

Responses

Config

Each server exposes public information regarding supported videos and options.

Get instance public configuration

Responses

Response samples

Content type
application/json
{
  • "client": {},
  • "defaults": {
    },
  • "webadmin": {
    },
  • "instance": {},
  • "search": {
    },
  • "plugin": {
    },
  • "theme": {
    },
  • "email": {
    },
  • "contactForm": {
    },
  • "serverVersion": "7.2.1-nightly-2025-07-01",
  • "serverCommit": "",
  • "transcoding": {
    },
  • "live": {
    },
  • "videoStudio": {
    },
  • "videoFile": {
    },
  • "videoTranscription": {
    },
  • "import": {
    },
  • "export": {
    },
  • "autoBlacklist": {
    },
  • "avatar": {
    },
  • "banner": {
    },
  • "video": {
    },
  • "videoCaption": {
    },
  • "user": {
    },
  • "videoChannels": {
    },
  • "trending": {
    },
  • "tracker": {
    },
  • "followings": {},
  • "federation": {
    },
  • "broadcastMessage": {
    },
  • "homepage": {
    },
  • "openTelemetry": {
    },
  • "views": {
    },
  • "storyboards": {
    },
  • "webrtc": {
    },
  • "nsfwFlagsSettings": {
    },
  • "signup": {
    }
}

Get instance "About" information

Responses

Response samples

Content type
application/json
{}

Get instance runtime configuration

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "instance": {
    },
  • "theme": {
    },
  • "services": {
    },
  • "cache": {
    },
  • "signup": {
    },
  • "admin": {
    },
  • "contactForm": {
    },
  • "user": {
    },
  • "transcoding": {
    },
  • "import": {
    },
  • "autoBlacklist": {
    },
  • "followers": {
    },
  • "storyboard": {
    },
  • "defaults": {
    }
}

Set instance runtime configuration

Authorizations:
OAuth2

Responses

Delete instance runtime configuration

Authorizations:
OAuth2

Responses

Update instance banner

Authorizations:
OAuth2
Request Body schema: multipart/form-data
bannerfile
string <binary>

The file to upload.

Responses

Delete instance banner

Authorizations:
OAuth2

Responses

Update instance avatar

Authorizations:
OAuth2
Request Body schema: multipart/form-data
avatarfile
string <binary>

The file to upload.

Responses

Delete instance avatar

Authorizations:
OAuth2

Responses

Update instance logo

Authorizations:
OAuth2
path Parameters
logoType
required
string
Enum: "favicon" "header-wide" "header-square" "opengraph"
Request Body schema: multipart/form-data
logofile
string <binary>

The file to upload.

Responses

Delete instance logo

Authorizations:
OAuth2
path Parameters
logoType
required
string
Enum: "favicon" "header-wide" "header-square" "opengraph"

Responses

Homepage

Get and update the custom homepage

Get instance custom homepage

Responses

Response samples

Content type
application/json
{
  • "content": "string"
}

Set instance custom homepage

Authorizations:
OAuth2
Request Body schema: application/json
content
string

content of the homepage, that will be injected in the client

Responses

Request samples

Content type
application/json
{
  • "content": "string"
}

Instance Follows

Managing servers which the instance interacts with is crucial to the concept of federation in PeerTube and external video indexation. The PeerTube server then deals with inter-server ActivityPub operations and propagates information across its social graph by posting activities to actors' inbox endpoints.

List instances following the server

query Parameters
actorType
string
Enum: "Person" "Application" "Group" "Service" "Organization"
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

state
string
Enum: "pending" "accepted"

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Remove or reject a follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

Reject a pending follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

Accept a pending follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

List instances followed by the server

query Parameters
actorType
string
Enum: "Person" "Application" "Group" "Service" "Organization"
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

state
string
Enum: "pending" "accepted"

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Follow a list of actors (PeerTube instance, channel or account)

Authorizations:
OAuth2
Request Body schema: application/json
handles
Array of strings unique
hosts
Array of strings <hostname> unique [ items <hostname > ]

Responses

Request samples

Content type
application/json
{
  • "hosts": [
    ],
  • "handles": [
    ]
}

Unfollow an actor (PeerTube instance, channel or account)

Authorizations:
OAuth2
path Parameters
hostOrHandle
required
string

The hostOrHandle to unfollow

Responses

Instance Redundancy

Redundancy is part of the inter-server solidarity that PeerTube fosters. Manage the list of instances you wish to help by seeding their videos according to the policy of video selection of your choice. Note that you have a similar functionality to mirror individual videos, see video mirroring.

Update a server redundancy policy

Authorizations:
OAuth2
path Parameters
host
required
string <hostname>

server domain to mirror

Request Body schema: application/json
redundancyAllowed
required
boolean

allow mirroring of the host's local videos

Responses

Request samples

Content type
application/json
{
  • "redundancyAllowed": true
}

Plugins

Managing plugins installed from a local path or from NPM, or search for new ones.

List plugins

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

pluginType
integer
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

uninstalled
boolean

Responses

Response samples

Content type
application/json
{}

List available plugins

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

currentPeerTubeEngine
string
pluginType
integer
search
string
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{}

Install a plugin

Authorizations:
OAuth2
Request Body schema: application/json
One of
npmName
required
string

Responses

Request samples

Content type
application/json
{
  • "path": "string"
}

Update a plugin

Authorizations:
OAuth2
Request Body schema: application/json
One of
npmName
required
string

Responses

Request samples

Content type
application/json
{
  • "path": "string"
}

Uninstall a plugin

Authorizations:
OAuth2
Request Body schema: application/json
npmName
required
string

name of the plugin/theme in its package.json

Responses

Request samples

Content type
application/json
{
  • "npmName": "peertube-plugin-auth-ldap"
}

Get a plugin

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{}

Set a plugin's settings

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Request Body schema: application/json
object

Responses

Request samples

Content type
application/json
{
  • "settings": { }
}

Get a plugin's public settings

path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{ }

Get a plugin's registered settings

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{ }

Stats

Statistics

Get instance stats

Get instance public statistics. This endpoint is cached.

Responses

Response samples

Content type
application/json
{
  • "totalUsers": 0,
  • "totalDailyActiveUsers": 0,
  • "totalWeeklyActiveUsers": 0,
  • "totalMonthlyActiveUsers": 0,
  • "totalModerators": 0,
  • "totalAdmins": 0,
  • "totalLocalVideos": 0,
  • "totalLocalVideoViews": 0,
  • "totalLocalVideoComments": 0,
  • "totalLocalVideoFilesSize": 0,
  • "totalVideos": 0,
  • "totalVideoComments": 0,
  • "totalLocalVideoChannels": 0,
  • "totalLocalDailyActiveVideoChannels": 0,
  • "totalLocalWeeklyActiveVideoChannels": 0,
  • "totalLocalMonthlyActiveVideoChannels": 0,
  • "totalLocalPlaylists": 0,
  • "totalInstanceFollowers": 0,
  • "totalInstanceFollowing": 0,
  • "videosRedundancy": [
    ],
  • "totalActivityPubMessagesProcessed": 0,
  • "totalActivityPubMessagesSuccesses": 0,
  • "totalActivityPubMessagesErrors": 0,
  • "activityPubMessagesProcessedPerSecond": 0,
  • "totalActivityPubMessagesWaiting": 0,
  • "averageRegistrationRequestResponseTimeMs": 0,
  • "totalRegistrationRequestsProcessed": 0,
  • "totalRegistrationRequests": 0,
  • "averageAbuseResponseTimeMs": 0,
  • "totalAbusesProcessed": 0,
  • "totalAbuses": 0
}

Create playback metrics

These metrics are exposed by OpenTelemetry metrics exporter if enabled.

Request Body schema: application/json
downloadedBytesHTTP
required
number

How many bytes were downloaded with HTTP since the last metric creation

downloadedBytesP2P
required
number

How many bytes were downloaded with P2P since the last metric creation

errors
required
number

How many errors occurred since the last metric creation

p2pEnabled
required
boolean
playerMode
required
string
Enum: "p2p-media-loader" "web-video"
resolutionChanges
required
number

How many resolution changes occurred since the last metric creation

uploadedBytesP2P
required
number

How many bytes were uploaded with P2P since the last metric creation

required
id (integer) or UUIDv4 (string) or shortUUID (string)
bufferStalled
number

How many times buffer has been stalled since the last metric creation

fps
number

Current player video fps

p2pPeers
number

P2P peers connected (doesn't include WebSeed peers)

resolution
number

Current player video resolution

Responses

Request samples

Content type
application/json
{
  • "playerMode": "p2p-media-loader",
  • "resolution": 0,
  • "fps": 0,
  • "p2pEnabled": true,
  • "p2pPeers": 0,
  • "resolutionChanges": 0,
  • "bufferStalled": 0,
  • "errors": 0,
  • "downloadedBytesP2P": 0,
  • "downloadedBytesHTTP": 0,
  • "uploadedBytesP2P": 0,
  • "videoId": 42
}

Logs

Send client log

Request Body schema: application/json
level
required
any
Enum: "error" "warn"
message
required
string
url
required
string

URL of the current user page

meta
string

Additional information regarding this log

stackTrace
string

Stack trace of the error if there is one

userAgent
string

User agent of the web browser that sends the message

Responses

Request samples

Content type
application/json
{
  • "message": "string",
  • "url": "string",
  • "level": "error",
  • "stackTrace": "string",
  • "userAgent": "string",
  • "meta": "string"
}

Get instance logs

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • "string"
]

Get instance audit logs

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • "string"
]

Job

Jobs are long-running tasks enqueued and processed by the instance itself. No additional worker registration is currently available.

Pause job queue

Authorizations:
OAuth2

Responses

Resume job queue

Authorizations:
OAuth2

Responses

List instance jobs

Authorizations:
OAuth2
path Parameters
state
required
string
Enum: "" "active" "completed" "failed" "waiting" "delayed"

The state of the job ('' for for no filter)

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

jobType
string
Enum: "activitypub-follow" "activitypub-http-broadcast" "activitypub-http-fetcher" "activitypub-http-unicast" "email" "video-transcoding" "video-file-import" "video-import" "videos-views-stats" "activitypub-refresher" "video-redundancy" "video-live-ending" "video-channel-import"

job type

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Runner Registration Token

Manage runner registration token

Generate registration token

Generate a new runner registration token

Authorizations:
OAuth2

Responses

Remove registration token

Remove a registration token. Runners that used this token for their registration are automatically removed.

Authorizations:
OAuth2
path Parameters
registrationTokenId
required
integer

Responses

List registration tokens

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Value: "createdAt"

Sort registration tokens by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Runner Jobs

Request a new job

API used by PeerTube runners

Request Body schema: application/json
runnerToken
required
string
jobTypes
Array of strings

Filter jobs depending on their types

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobTypes": [
    ]
}

Response samples

Content type
application/json
{
  • "availableJobs": [
    ]
}

Accept job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

Response samples

Content type
application/json
{
  • "job": {
    }
}

Abort job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
reason
required
string

Why the runner aborts this job

runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "reason": "string"
}

Update job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
runnerToken
required
string
object
progress
integer

Update job progression percentage (optional)

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "progress": 0,
  • "payload": {
    }
}

Post job error

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
message
required
string

Why the runner failed to process this job

runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "message": "string"
}

Post job success

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
required
VOD web video transcoding (object) or VOD HLS transcoding (object) or VOD audio merge transcoding (object) or Live RTMP to HLS transcoding (object)
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "payload": {
    }
}

Cancel a job

Authorizations:
OAuth2
path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d

Responses

Delete a job

The endpoint will first cancel the job if needed, and then remove it from the database. Children jobs will also be removed

Authorizations:
OAuth2
path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d

Responses

List jobs

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Enum: "updatedAt" "createdAt" "priority" "state" "progress"

Sort runner jobs by criteria

start
integer >= 0

Offset used to paginate results

stateOneOf
Array of integers (RunnerJobState)
Items Enum: 1 2 3 4 5 6 7 8

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Runners

Register a new runner

API used by PeerTube runners

Request Body schema: application/json
name
required
string
registrationToken
required
string
description
string

Responses

Request samples

Content type
application/json
{
  • "registrationToken": "string",
  • "name": "string",
  • "description": "string"
}

Response samples

Content type
application/json
{
  • "id": 0,
  • "runnerToken": "string"
}

Unregister a runner

API used by PeerTube runners

Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

Delete a runner

Authorizations:
OAuth2
path Parameters
runnerId
required
integer
Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

List runners

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Value: "createdAt"

Sort runners by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}