PeerTube (7.0.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>Sat, 15 Feb 2025 04:10:41 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[CANNABIS : UNE SEULE SOLUTION, LA LÉGALISATION ? - Olivier Fouchard]]></title>
            <link>https://peertube2.cpy.re/w/ejMVJqAXksLWpCWtesYKcf;threadId=180436</link>
            <guid>https://peertube2.cpy.re/w/ejMVJqAXksLWpCWtesYKcf;threadId=180436</guid>
            <pubDate>Fri, 14 Feb 2025 23:05:36 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>]]></content:encoded>
            <dc:creator>Olivier Fouchard</dc:creator>
        </item>
        <item>
            <title><![CDATA["LES NAZIS N'ONT PAS PRIS LE POUVOIR, ON LEUR A DONNÉ" - Olivier Fouchard]]></title>
            <link>https://peertube2.cpy.re/w/45rcCEivaCMpSFNcEVhRze;threadId=180435</link>
            <guid>https://peertube2.cpy.re/w/45rcCEivaCMpSFNcEVhRze;threadId=180435</guid>
            <pubDate>Fri, 14 Feb 2025 23:05:25 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>]]></content:encoded>
            <dc:creator>Olivier Fouchard</dc:creator>
        </item>
        <item>
            <title><![CDATA[GUADELOUPE : L’HÔPITAL PUBLIC EN ÉTAT DE MORT CLINIQUE - cedric973]]></title>
            <link>https://peertube2.cpy.re/w/83MctNpsrKTKmE42kbHUxY;threadId=180434</link>
            <guid>https://peertube2.cpy.re/w/83MctNpsrKTKmE42kbHUxY;threadId=180434</guid>
            <pubDate>Fri, 14 Feb 2025 21:58:02 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> où se trouve cet article sur l'application s'il vous plaît ?</p>]]></content:encoded>
            <dc:creator>cedric973</dc:creator>
        </item>
        <item>
            <title><![CDATA[Webinaire "Adopter des outils éthiques dans mon association" - fanfu]]></title>
            <link>https://peertube2.cpy.re/w/1XzQFwBU735v85UmEo2FgL;threadId=180433</link>
            <guid>https://peertube2.cpy.re/w/1XzQFwBU735v85UmEo2FgL;threadId=180433</guid>
            <pubDate>Fri, 14 Feb 2025 15:33:43 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://framatube.org/accounts/framasoft" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>framasoft</span></a></span> j'ai récemment appris l'existence de <a href="https://studio.polotno.dev/" target="_blank" rel="noopener noreferrer"><span>https://</span><span>studio.polotno.dev/</span><span></span></a> comme alternative open-source à Canva</p>]]></content:encoded>
            <dc:creator>fanfu</dc:creator>
        </item>
        <item>
            <title><![CDATA[QUI VA REMBOURSER LA DETTE ? (SPOILER ALERT : PAS VOS ENFANTS) - Avec @StupidEco et @Heu7reka - Velvetshadow]]></title>
            <link>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180432</link>
            <guid>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180432</guid>
            <pubDate>Thu, 13 Feb 2025 16:09:26 GMT</pubDate>
            <content:encoded><![CDATA[<p>Super intéressant, merci pour la vidéo !</p>
]]></content:encoded>
            <dc:creator>Velvetshadow</dc:creator>
        </item>
        <item>
            <title><![CDATA[QUI VA REMBOURSER LA DETTE ? (SPOILER ALERT : PAS VOS ENFANTS) - Avec @StupidEco et @Heu7reka - Quentin]]></title>
            <link>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180426</link>
            <guid>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180426</guid>
            <pubDate>Thu, 13 Feb 2025 11:51:17 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> Merci pour cette vidéo très claire et complète !! Continuez camarades ✊</p>]]></content:encoded>
            <dc:creator>Quentin</dc:creator>
        </item>
        <item>
            <title><![CDATA[QUI VA REMBOURSER LA DETTE ? (SPOILER ALERT : PAS VOS ENFANTS) - Avec @StupidEco et @Heu7reka - Emmanuel Wald]]></title>
            <link>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180419</link>
            <guid>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180419</guid>
            <pubDate>Wed, 12 Feb 2025 11:15:07 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> Merci pour cette vidéo qui remet les choses à leur place !</p><p>Je fais partie de celles et ceux qui critiquent le PIB et la religion de la croissance, mais même sans changer la perspective croissantiste la panique autour de la dette n'est pas très rationnelle.</p>]]></content:encoded>
            <dc:creator>Emmanuel Wald</dc:creator>
        </item>
        <item>
            <title><![CDATA[QUI VA REMBOURSER LA DETTE ? (SPOILER ALERT : PAS VOS ENFANTS) - Avec @StupidEco et @Heu7reka - lertsenem]]></title>
            <link>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180418</link>
            <guid>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180418</guid>
            <pubDate>Wed, 12 Feb 2025 11:05:17 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://video.blast-info.fr/accounts/blast" class="u-url mention" rel="noopener noreferrer" target="_blank">@<span>blast</span></a></span> Vous êtes clairement parmi les meilleures émissions de Blast, bravo et merci.</p>]]></content:encoded>
            <dc:creator>lertsenem</dc:creator>
        </item>
        <item>
            <title><![CDATA[QUI VA REMBOURSER LA DETTE ? (SPOILER ALERT : PAS VOS ENFANTS) - Avec @StupidEco et @Heu7reka - RomBaret]]></title>
            <link>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180405</link>
            <guid>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180405</guid>
            <pubDate>Wed, 12 Feb 2025 08:59:37 GMT</pubDate>
            <content:encoded><![CDATA[<p>Vidéo d'utilité publique : <a href="https://video.blast-info.fr/videos/watch/52ba7218-9be3-4e45-85a0-49cfcdfc7d56" target="_blank" rel="noopener noreferrer"><span>https://</span><span>video.blast-info.fr/videos/wat</span><span>ch/52ba7218-9be3-4e45-85a0-49cfcdfc7d56</span></a></p><p>Merci <span><a href="https://mamot.fr/@blast_info" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>blast_info</span></a></span> !!</p>]]></content:encoded>
            <dc:creator>RomBaret</dc:creator>
        </item>
        <item>
            <title><![CDATA[QUI VA REMBOURSER LA DETTE ? (SPOILER ALERT : PAS VOS ENFANTS) - Avec @StupidEco et @Heu7reka - Vanho]]></title>
            <link>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180404</link>
            <guid>https://peertube2.cpy.re/w/bdvqDXE5oEzir7fYWRiYiC;threadId=180404</guid>
            <pubDate>Wed, 12 Feb 2025 06:05:03 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> très instructif pour les gauchistes comme moi qui se désintéressent fortement de ces sujets. 
Merci!</p>]]></content:encoded>
            <dc:creator>Vanho</dc:creator>
        </item>
        <item>
            <title><![CDATA[Plasma 6.3 is VERY polished! + KDE  Slimbook VI review - constancies :damnified:]]></title>
            <link>https://peertube2.cpy.re/w/xoNYD4WBBh3DcrjgkdHU1c;threadId=180403</link>
            <guid>https://peertube2.cpy.re/w/xoNYD4WBBh3DcrjgkdHU1c;threadId=180403</guid>
            <pubDate>Wed, 12 Feb 2025 04:50:36 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> hype! I'm really happy with the direction of KDE. Glad to see continued focus on fractional scaling too.</p>]]></content:encoded>
            <dc:creator>constancies :damnified:</dc:creator>
        </item>
        <item>
            <title><![CDATA[Plasma 6.3 is VERY polished! + KDE  Slimbook VI review - variable]]></title>
            <link>https://peertube2.cpy.re/w/xoNYD4WBBh3DcrjgkdHU1c;threadId=180402</link>
            <guid>https://peertube2.cpy.re/w/xoNYD4WBBh3DcrjgkdHU1c;threadId=180402</guid>
            <pubDate>Tue, 11 Feb 2025 15:53:17 GMT</pubDate>
            <content:encoded><![CDATA[<p>I appreciate all those little tweaks and updates. Since Plasma 6 KDE has become my favorite desktop environment. Linux finally has a fully-featured graphical environment where everything I want to access and configure is configurable through the settings app, and it all just works.</p>
]]></content:encoded>
            <dc:creator>variable</dc:creator>
        </item>
        <item>
            <title><![CDATA[Test - Wicklow]]></title>
            <link>https://peertube2.cpy.re/w/bEPHwQQmC9NevadoLx4b6T;threadId=180399</link>
            <guid>https://peertube2.cpy.re/w/bEPHwQQmC9NevadoLx4b6T;threadId=180399</guid>
            <pubDate>Tue, 11 Feb 2025 14:27:15 GMT</pubDate>
            <content:encoded><![CDATA[<p>Reply to reply</p>
]]></content:encoded>
            <dc:creator>Wicklow</dc:creator>
        </item>
        <item>
            <title><![CDATA[Test - Wicklow]]></title>
            <link>https://peertube2.cpy.re/w/bEPHwQQmC9NevadoLx4b6T;threadId=180399</link>
            <guid>https://peertube2.cpy.re/w/bEPHwQQmC9NevadoLx4b6T;threadId=180399</guid>
            <pubDate>Tue, 11 Feb 2025 14:27:06 GMT</pubDate>
            <content:encoded><![CDATA[<p>Reply</p>
]]></content:encoded>
            <dc:creator>Wicklow</dc:creator>
        </item>
        <item>
            <title><![CDATA[Test - Wicklow]]></title>
            <link>https://peertube2.cpy.re/w/bEPHwQQmC9NevadoLx4b6T;threadId=180399</link>
            <guid>https://peertube2.cpy.re/w/bEPHwQQmC9NevadoLx4b6T;threadId=180399</guid>
            <pubDate>Tue, 11 Feb 2025 14:26:59 GMT</pubDate>
            <content:encoded><![CDATA[<p>Test</p>
]]></content:encoded>
            <dc:creator>Wicklow</dc:creator>
        </item>
        <item>
            <title><![CDATA[Plasma 6.3 is VERY polished! + KDE  Slimbook VI review - S7venLights]]></title>
            <link>https://peertube2.cpy.re/w/xoNYD4WBBh3DcrjgkdHU1c;threadId=180398</link>
            <guid>https://peertube2.cpy.re/w/xoNYD4WBBh3DcrjgkdHU1c;threadId=180398</guid>
            <pubDate>Tue, 11 Feb 2025 14:05:28 GMT</pubDate>
            <content:encoded><![CDATA[<p>KDE for president</p>
]]></content:encoded>
            <dc:creator>S7venLights</dc:creator>
        </item>
        <item>
            <title><![CDATA[GRISE BOUILLE TV #31 — Le site des 10 ans, Pokémon Vert Feuille & mème autoroutier - gee]]></title>
            <link>https://peertube2.cpy.re/w/wqhvEgBUuAWNVz8sEoZTa4;threadId=180379</link>
            <guid>https://peertube2.cpy.re/w/wqhvEgBUuAWNVz8sEoZTa4;threadId=180379</guid>
            <pubDate>Mon, 10 Feb 2025 07:32:59 GMT</pubDate>
            <content:encoded><![CDATA[<p>@clic@piaille.fr yes ! C'est un Minilab MkII d'Arturia, et en gros j'utilise un script qui reçoit des notes MIDI et renvoie des touches/combinaisons de touche via xdotools (genre j'ai une touche pour Ctrl-Z vu que j'annule régulièrement mes actions sur Inkscape). Bon je l'avais acheté pour la musique à la base, mais ça sert bien aussi pour ça !</p>
]]></content:encoded>
            <dc:creator>gee</dc:creator>
        </item>
        <item>
            <title><![CDATA[Fedora looks at adding AI, kernel maintainer resigns over Rust issues: Linux & Open Source News - dnutiu]]></title>
            <link>https://peertube2.cpy.re/w/doyDqEdKvK7BQHG73D7mKc;threadId=180384</link>
            <guid>https://peertube2.cpy.re/w/doyDqEdKvK7BQHG73D7mKc;threadId=180384</guid>
            <pubDate>Sun, 09 Feb 2025 10:42:34 GMT</pubDate>
            <content:encoded><![CDATA[<p>I hope the AI features will be opt-in rather than opt-out. My 6-7 year old ThinkPad was working like a potato and the cause was some code completion local AI from Jetbrains</p>
]]></content:encoded>
            <dc:creator>dnutiu</dc:creator>
        </item>
        <item>
            <title><![CDATA["NOUS SOMMES TOUS CONTAMINÉS". PFAS : L'HUMANITÉ FACE À UN DANGER INÉDIT ET INVISIBLE - xave]]></title>
            <link>https://peertube2.cpy.re/w/rRt5ULQm8poQprwb9i7m8y;threadId=180383</link>
            <guid>https://peertube2.cpy.re/w/rRt5ULQm8poQprwb9i7m8y;threadId=180383</guid>
            <pubDate>Sun, 09 Feb 2025 10:08:16 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> Quel est le public visé ? Il me semble que Mastodon n'est pas l'endroit idéal pour le clickbait.</p><p>Personnellement, à la vue du titre et de l'aperçu, j'imagine qu'on va m'expliquer qu'il y a des puces 5g du COVID de Bill Gates dans l'eau du robinet, et non merci.</p>]]></content:encoded>
            <dc:creator>xave</dc:creator>
        </item>
        <item>
            <title><![CDATA[Fedora looks at adding AI, kernel maintainer resigns over Rust issues: Linux & Open Source News - Joe Bleau]]></title>
            <link>https://peertube2.cpy.re/w/doyDqEdKvK7BQHG73D7mKc;threadId=180380</link>
            <guid>https://peertube2.cpy.re/w/doyDqEdKvK7BQHG73D7mKc;threadId=180380</guid>
            <pubDate>Sun, 09 Feb 2025 00:57:45 GMT</pubDate>
            <content:encoded><![CDATA[<p>The anti-cheat problem is unsolvable because it's not technical but ideological. They will always push against computing freedom because you having freedom mean you can cheat.</p>
]]></content:encoded>
            <dc:creator>Joe Bleau</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: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>Sat, 15 Feb 2025 04:10:43 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[GUADELOUPE : L’HÔPITAL PUBLIC EN ÉTAT DE MORT CLINIQUE]]></title>
            <link>https://peertube2.cpy.re/w/83MctNpsrKTKmE42kbHUxY</link>
            <guid>https://peertube2.cpy.re/w/83MctNpsrKTKmE42kbHUxY</guid>
            <pubDate>Fri, 14 Feb 2025 21:37:19 GMT</pubDate>
            <description><![CDATA[Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir Des patients en attente pendant des heures, des brancards dans les couloirs, des soignants à bout… En décembre dernier, une vidéo choc publiée par le pompier guadeloup...]]></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>Des patients en attente pendant des heures, des brancards dans les couloirs, des soignants à bout… En décembre dernier, une vidéo choc publiée par le pompier guadeloupéen Jocelyn Zou révélait l’état catastrophique des urgences du CHU de Pointe-à-Pitre. Face à l’ampleur de la crise, Blast est allé sur place.<br />
Pourquoi l’hôpital public en Guadeloupe est-il à bout de souffle ? Comment expliquer l’inaction de l’État malgré les alertes répétées ? Quels sont les enjeux politiques et sociaux derrière cette crise sanitaire ?</p>
<p>Nous sommes allés à la rencontre de Brigitte Amacin et Gaby Clavier, syndicalistes à l'union des travailleurs de la santé de Guadeloupe, ils dénoncent le manque de moyens, l'effondrement programmé du service public de la santé et l’urgence d’une réponse politique adaptée aux réalités locales : pénurie de médecins, précarité sanitaire et sociale, comorbidités élevées…</p>
<p>Journaliste : Taha Bouhafs<br />
Montage : Mélanie Ciais<br />
Son : Baptiste Veilhan<br />
Graphisme : Morgane Sabouret<br />
Production : Hicham Tragha<br />
Directeur des programmes : 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></p>
<p>#Santé<br />
#Guadeloupe<br />
#Hôpital</p>
]]></content:encoded>
            <dc:creator>blast, le souffle de l’info</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="341329781" type="video/mp4" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/39134ff7-4d7a-4617-9a05-5bdfb623e836/5a49ca67-b49e-49ba-a596-19f85b7def14-1080-fragmented.mp4"/>
            <media:community>
                <media:statistics views="13"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/83MctNpsrKTKmE42kbHUxY"/>
            <media:player url="https://peertube2.cpy.re/w/83MctNpsrKTKmE42kbHUxY"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2616e01e-a79f-4478-9700-35c3bc29639d-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8701d563-9126-4304-996f-ba1b51ae81a1-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1482a681-98d9-4eae-ad13-72cbca144dfa-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ad601e5b-1983-44a0-b4d7-6d5ac0965563-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/a5046c6e-b308-40ec-bacd-7809cb904178-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="341329781" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/39134ff7-4d7a-4617-9a05-5bdfb623e836/5a49ca67-b49e-49ba-a596-19f85b7def14-1080-fragmented.mp4" framerate="25" duration="1398" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="214454382" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/39134ff7-4d7a-4617-9a05-5bdfb623e836/a5ad4e06-772c-4f98-82b2-3af5517ed817-720-fragmented.mp4" framerate="25" duration="1398" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="128595705" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/39134ff7-4d7a-4617-9a05-5bdfb623e836/d138a857-1032-4253-9f47-6a2f5382cc73-480-fragmented.mp4" framerate="25" duration="1398" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="60337301" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/39134ff7-4d7a-4617-9a05-5bdfb623e836/a0db1ffc-8f64-4e35-b5b1-c63c80cba411-240-fragmented.mp4" framerate="25" duration="1398" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="22750453" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/39134ff7-4d7a-4617-9a05-5bdfb623e836/6cbdaa70-1436-4872-8a6e-bf68f2ed9774-0-fragmented.mp4" framerate="0" duration="1398" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/e2b1708c-b937-4f72-8dbe-ff61c23d764c.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/23b7d04e-d686-4aba-b0a3-142b042c4db3.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">GUADELOUPE : L’HÔPITAL PUBLIC EN ÉTAT DE MORT CLINIQUE</media:title>
            <media:description type="plain">Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir Des patients en attente pendant des heures, des brancards dans les couloirs, des soignants à bout… En décembre dernier, une vidéo choc publiée par le pompier guadeloup...</media:description>
        </item>
        <item>
            <title><![CDATA[Les rebelles du M23 capturent l'aéroport de Bukavu]]></title>
            <link>https://peertube2.cpy.re/w/oesxamgs9gVdRZULppAXzu</link>
            <guid>https://peertube2.cpy.re/w/oesxamgs9gVdRZULppAXzu</guid>
            <pubDate>Fri, 14 Feb 2025 21:01:08 GMT</pubDate>
            <description><![CDATA[L’aéroport de Bukavu, capitale de la province du Sud-Kivu dans l’est de la RDC, est tombé vendredi aux mains du groupe armé antigouvernemental M23 allié à des troupes rwandaises, selon des sources sécuritaire et humanitaire. Le site stratégique, ...]]></description>
            <content:encoded><![CDATA[<p>L’aéroport de Bukavu, capitale de la province du Sud-Kivu dans l’est de la RDC, est tombé vendredi aux mains du groupe armé antigouvernemental M23 allié à des troupes rwandaises, selon des sources sécuritaire et humanitaire.</p>
<p>Le site stratégique, où étaient positionnées les forces armées congolaises, était le dernier verrou militaire avant Bukavu, chef-lieu provincial d’un million d’habitants situé à une trentaine de kilomètres.</p>
]]></content:encoded>
            <dc:creator>Main lemonde channel</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="5265222" type="video/mp4" url="https://tube.fede.re/static/streaming-playlists/hls/b40a12dd-e886-42d0-b889-9d9a3617c172/fa548c97-d5d0-4a1b-bf29-45e11180361e-480-fragmented.mp4"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/oesxamgs9gVdRZULppAXzu"/>
            <media:player url="https://peertube2.cpy.re/w/oesxamgs9gVdRZULppAXzu"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ea530ab6-d6a9-4337-a189-124e8af388f2-480-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="5265222" url="https://tube.fede.re/static/streaming-playlists/hls/b40a12dd-e886-42d0-b889-9d9a3617c172/fa548c97-d5d0-4a1b-bf29-45e11180361e-480-fragmented.mp4" framerate="25" duration="57" isDefault="true"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/b2fd45ba-1825-4f0c-a449-4a2d699db889.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/b1b744db-2b98-4a72-a43b-f7d833cceebe.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Les rebelles du M23 capturent l'aéroport de Bukavu</media:title>
            <media:description type="plain">L’aéroport de Bukavu, capitale de la province du Sud-Kivu dans l’est de la RDC, est tombé vendredi aux mains du groupe armé antigouvernemental M23 allié à des troupes rwandaises, selon des sources sécuritaire et humanitaire. Le site stratégique, ...</media:description>
        </item>
        <item>
            <title><![CDATA[full-v2]]></title>
            <link>https://peertube2.cpy.re/w/kVFAod22Cw7jsVjtuJ4ZBz</link>
            <guid>https://peertube2.cpy.re/w/kVFAod22Cw7jsVjtuJ4ZBz</guid>
            <pubDate>Fri, 14 Feb 2025 18:58:02 GMT</pubDate>
            <description><![CDATA[Voici donc en exclusivité pour vous, chers fidèles, la troisième itération de l'univers hexaconique, en gestation depuis déja deux mois. Comme toujours, le code source est visible dans le Git du #telalab, et vous avez du #wip en image et en vidéo ...]]></description>
            <content:encoded><![CDATA[<p>Voici donc en exclusivité pour vous, chers fidèles, la troisième itération de l'univers hexaconique, en gestation depuis déja deux mois. Comme toujours, le code source est visible dans le Git du #telalab, et vous avez du #wip en image et en vidéo dans mon serveur de cuisine.</p>
<p><a href="https://git.tetalab.org/tTh/HexaCone" target="_blank" rel="noopener noreferrer">https://git.tetalab.org/tTh/HexaCone</a> et <a href="http://maison.tth.netlib.re/" target="_blank" rel="noopener noreferrer">http://maison.tth.netlib.re/</a></p>
]]></content:encoded>
            <dc:creator>Vidz of tTh</dc:creator>
            <category>Art</category>
            <enclosure length="17294815" type="video/mp4" url="https://tube.interhacker.space/static/streaming-playlists/hls/a15c744c-033c-47cf-bc4a-eab96e0f7c6b/3732477a-f5ae-4bbb-90af-774a1e1d0ad4-720-fragmented.mp4"/>
            <media:community>
                <media:statistics views="9"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/kVFAod22Cw7jsVjtuJ4ZBz"/>
            <media:player url="https://peertube2.cpy.re/w/kVFAod22Cw7jsVjtuJ4ZBz"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3d886085-a591-437a-a69d-d7501973c824-720-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="17294815" url="https://tube.interhacker.space/static/streaming-playlists/hls/a15c744c-033c-47cf-bc4a-eab96e0f7c6b/3732477a-f5ae-4bbb-90af-774a1e1d0ad4-720-fragmented.mp4" framerate="30" duration="233" isDefault="true"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/b10c95b6-6e1a-4785-9979-2cedfd7341b6.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/c8a05b20-8313-465f-9cce-7d8db4f049ce.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">full-v2</media:title>
            <media:description type="plain">Voici donc en exclusivité pour vous, chers fidèles, la troisième itération de l'univers hexaconique, en gestation depuis déja deux mois. Comme toujours, le code source est visible dans le Git du #telalab, et vous avez du #wip en image et en vidéo ...</media:description>
        </item>
        <item>
            <title><![CDATA["Le colonialisme, stop !" : l'histoire oubliée d'Aoua Keïta, sage-femme féministe]]></title>
            <link>https://peertube2.cpy.re/w/v954RsY4yZf1XmEoj21LRd</link>
            <guid>https://peertube2.cpy.re/w/v954RsY4yZf1XmEoj21LRd</guid>
            <pubDate>Fri, 14 Feb 2025 17:01:43 GMT</pubDate>
            <description><![CDATA[Découvrez l’histoire méconnue de quatre femmes noires, nées en France ou dans ses anciennes colonies, et qui ont changé l’histoire de notre pays. Dans cet épisode : Aoua Keïta, sage-femme féministe au cœur de l’empire colonial français Une série...]]></description>
            <content:encoded><![CDATA[<p>Découvrez l’histoire méconnue de quatre femmes noires, nées en France ou dans ses anciennes colonies, et qui ont changé l’histoire de notre pays.</p>
<p>Dans cet épisode : Aoua Keïta, sage-femme féministe au cœur de l’empire colonial français</p>
<p>Une série vidéo verticale réalisée grâce aux archives et aux documents d’époque consultés par la rédaction du Monde, racontée par l’actrice et réalisatrice Aïssa Maïga</p>
<p>Pour suivre et comprendre l’actualité en Afrique, abonnez-vous à notre chaîne YouTube ! 🌍 👉 <a href="https://www.youtube.com/c/LeMondeAfrique-LMA?sub_confirmation=1" target="_blank" rel="noopener noreferrer">https://www.youtube.com/c/LeMondeAfrique-LMA?sub_confirmation=1</a></p>
]]></content:encoded>
            <dc:creator>Lemonde Afrique</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="14079103" type="video/mp4" url="https://tube.fede.re/static/streaming-playlists/hls/ebf97a31-fbd9-4db6-b3c4-028b14f9a226/15a22082-3431-4846-acc7-7ae7b20a6a32-480-fragmented.mp4"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/v954RsY4yZf1XmEoj21LRd"/>
            <media:player url="https://peertube2.cpy.re/w/v954RsY4yZf1XmEoj21LRd"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/449f2e05-6e91-46f8-b317-fd79b8647919-480-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="14079103" url="https://tube.fede.re/static/streaming-playlists/hls/ebf97a31-fbd9-4db6-b3c4-028b14f9a226/15a22082-3431-4846-acc7-7ae7b20a6a32-480-fragmented.mp4" framerate="24" duration="179" isDefault="true"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/77794cb7-a6ad-412c-901d-31126037b1fb.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/6f4b3e33-6290-415b-abe4-a49e0120c2af.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">"Le colonialisme, stop !" : l'histoire oubliée d'Aoua Keïta, sage-femme féministe</media:title>
            <media:description type="plain">Découvrez l’histoire méconnue de quatre femmes noires, nées en France ou dans ses anciennes colonies, et qui ont changé l’histoire de notre pays. Dans cet épisode : Aoua Keïta, sage-femme féministe au cœur de l’empire colonial français Une série...</media:description>
        </item>
        <item>
            <title><![CDATA[After movie Ô mon fleuve]]></title>
            <link>https://peertube2.cpy.re/w/knePjsEoghBHc922o6taAk</link>
            <guid>https://peertube2.cpy.re/w/knePjsEoghBHc922o6taAk</guid>
            <pubDate>Fri, 14 Feb 2025 15:17:50 GMT</pubDate>
            <dc:creator>Main slowfest channel</dc:creator>
            <enclosure length="38922585" type="video/mp4" url="https://tube.aquilenet.fr/static/streaming-playlists/hls/9cd4c49c-e38b-43fd-960a-595401cf9013/01b7e9cb-dcea-4039-a4d6-d4c0d8867a99-1080-fragmented.mp4"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/knePjsEoghBHc922o6taAk"/>
            <media:player url="https://peertube2.cpy.re/w/knePjsEoghBHc922o6taAk"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/046416c4-54af-4da1-925b-e9e7b8dba5f2-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c554a1cb-9a08-4ae2-8e76-c0ab6a716cfb-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/68aea8e8-5529-486e-a5d0-ea456f134dc8-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f144803f-6641-412e-bf7e-b691a3f6c791-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/abd8bdd8-465b-4a9d-b7ec-a7d8b170f580-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="38922585" url="https://tube.aquilenet.fr/static/streaming-playlists/hls/9cd4c49c-e38b-43fd-960a-595401cf9013/01b7e9cb-dcea-4039-a4d6-d4c0d8867a99-1080-fragmented.mp4" framerate="25" duration="66" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="19179608" url="https://tube.aquilenet.fr/static/streaming-playlists/hls/9cd4c49c-e38b-43fd-960a-595401cf9013/8cb77022-0940-4dd9-bdbc-e58e90001393-720-fragmented.mp4" framerate="25" duration="66" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="4130686" url="https://tube.aquilenet.fr/static/streaming-playlists/hls/9cd4c49c-e38b-43fd-960a-595401cf9013/0618ada5-df5a-4fd2-9763-c92531a7bdb5-240-fragmented.mp4" framerate="25" duration="66" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="2265346" url="https://tube.aquilenet.fr/static/streaming-playlists/hls/9cd4c49c-e38b-43fd-960a-595401cf9013/799e97bb-000b-47a4-bbd9-874ab07685db-144-fragmented.mp4" framerate="25" duration="66" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="961489" url="https://tube.aquilenet.fr/static/streaming-playlists/hls/9cd4c49c-e38b-43fd-960a-595401cf9013/f8d1204d-b276-4b7d-b6fd-ca07facef603-0-fragmented.mp4" framerate="0" duration="66" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/755e79e5-df71-4b51-896c-ce19a1be0035.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/1a4bd39d-98e5-4efe-ba61-b11524f6e39e.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">After movie Ô mon fleuve</media:title>
        </item>
        <item>
            <title><![CDATA[Tchernobyl : un drone s'écrase sur la centrale nucléaire ukrainienne]]></title>
            <link>https://peertube2.cpy.re/w/fgCssxFEz9muxYwUWBVpQZ</link>
            <guid>https://peertube2.cpy.re/w/fgCssxFEz9muxYwUWBVpQZ</guid>
            <pubDate>Fri, 14 Feb 2025 13:02:32 GMT</pubDate>
            <description><![CDATA[Un drone explosif a endommagé un abri métallique de la centrale nucléaire de Tchernobyl, vendredi 14 février. L'Ukraine accuse la Russie d'en être à l'origine. Celle-ci nie son implication. ✅ Pour comprendre l'actualité, abonnez-vous à la...]]></description>
            <content:encoded><![CDATA[<p>Un drone explosif a endommagé un abri métallique de la centrale nucléaire de Tchernobyl, vendredi 14 février. L'Ukraine accuse la Russie d'en être à l'origine. Celle-ci nie son implication.</p>

<p>✅ Pour comprendre l'actualité, abonnez-vous à la chaîne YouTube du Monde (et activez la cloche pour les notifications 🔔 !) 👉<a href="http://www.youtube.com/subscription_center?add_user=LeMonde" target="_blank" rel="noopener noreferrer">http://www.youtube.com/subscription_center?add_user=LeMonde</a></p>
]]></content:encoded>
            <dc:creator>Main lemonde channel</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="4585665" type="video/mp4" url="https://tube.fede.re/static/streaming-playlists/hls/738e9090-408d-48fa-b379-9f295edaea8d/8cd459f5-0298-4035-af13-238f864b3b8b-480-fragmented.mp4"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/fgCssxFEz9muxYwUWBVpQZ"/>
            <media:player url="https://peertube2.cpy.re/w/fgCssxFEz9muxYwUWBVpQZ"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/55f7775c-def4-466d-99c9-af921cd30b85-480-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="4585665" url="https://tube.fede.re/static/streaming-playlists/hls/738e9090-408d-48fa-b379-9f295edaea8d/8cd459f5-0298-4035-af13-238f864b3b8b-480-fragmented.mp4" framerate="25" duration="58" isDefault="true"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/af601101-6d14-4979-9eee-b10739fcbbcd.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/6a9e6857-2e74-4571-8e60-e0fb7af33ee4.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Tchernobyl : un drone s'écrase sur la centrale nucléaire ukrainienne</media:title>
            <media:description type="plain">Un drone explosif a endommagé un abri métallique de la centrale nucléaire de Tchernobyl, vendredi 14 février. L'Ukraine accuse la Russie d'en être à l'origine. Celle-ci nie son implication. ✅ Pour comprendre l'actualité, abonnez-vous à la...</media:description>
        </item>
        <item>
            <title><![CDATA[Un drone touche Tchernobyl : la centrale nucléaire ukrainienne endommagée]]></title>
            <link>https://peertube2.cpy.re/w/eJuTXc4FmA6kEW6fY35YSp</link>
            <guid>https://peertube2.cpy.re/w/eJuTXc4FmA6kEW6fY35YSp</guid>
            <pubDate>Fri, 14 Feb 2025 13:02:06 GMT</pubDate>
            <description><![CDATA[Un drone explosif a endommagé un abri métallique de la centrale nucléaire de Tchernobyl, vendredi 14 février. L'Ukraine accuse la Russie d'en être à l'origine. Celle-ci nie son implication. ✅ Pour comprendre l'actualité, abonnez-vous à la...]]></description>
            <content:encoded><![CDATA[<p>Un drone explosif a endommagé un abri métallique de la centrale nucléaire de Tchernobyl, vendredi 14 février. L'Ukraine accuse la Russie d'en être à l'origine. Celle-ci nie son implication.</p>

<p>✅ Pour comprendre l'actualité, abonnez-vous à la chaîne YouTube du Monde (et activez la cloche pour les notifications 🔔 !) 👉<a href="http://www.youtube.com/subscription_center?add_user=LeMonde" target="_blank" rel="noopener noreferrer">http://www.youtube.com/subscription_center?add_user=LeMonde</a></p>
]]></content:encoded>
            <dc:creator>Main lemonde channel</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="16819426" type="video/mp4" url="https://tube.fede.re/static/streaming-playlists/hls/6f35d939-c859-40c9-8d79-7c4ac7a73b0b/4243ee1f-091d-427a-a2cb-abbc78fd1958-1080-fragmented.mp4"/>
            <media:community>
                <media:statistics views="5"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/eJuTXc4FmA6kEW6fY35YSp"/>
            <media:player url="https://peertube2.cpy.re/w/eJuTXc4FmA6kEW6fY35YSp"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0d28b22b-3564-4b65-9c08-9830d71e184d-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c6d89a4c-46ae-4bd6-b824-012a415806f2-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/48f039bf-fb3d-4368-9063-444b783b406f-480-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="16819426" url="https://tube.fede.re/static/streaming-playlists/hls/6f35d939-c859-40c9-8d79-7c4ac7a73b0b/4243ee1f-091d-427a-a2cb-abbc78fd1958-1080-fragmented.mp4" framerate="25" duration="61" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="10087086" url="https://tube.fede.re/static/streaming-playlists/hls/6f35d939-c859-40c9-8d79-7c4ac7a73b0b/80f4da0b-ad09-4551-bd58-df7d81753ed9-720-fragmented.mp4" framerate="25" duration="61" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="5724174" url="https://tube.fede.re/static/streaming-playlists/hls/6f35d939-c859-40c9-8d79-7c4ac7a73b0b/db727bef-267a-4816-af9c-849ce076f4bf-480-fragmented.mp4" framerate="25" duration="61" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/ecb18b4f-43a0-4c76-a7fe-c20e9ebb1bfe.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/22084f9d-fd3f-4d88-9af9-cf3d033f5e23.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Un drone touche Tchernobyl : la centrale nucléaire ukrainienne endommagée</media:title>
            <media:description type="plain">Un drone explosif a endommagé un abri métallique de la centrale nucléaire de Tchernobyl, vendredi 14 février. L'Ukraine accuse la Russie d'en être à l'origine. Celle-ci nie son implication. ✅ Pour comprendre l'actualité, abonnez-vous à la...</media:description>
        </item>
        <item>
            <title><![CDATA[SPIDER ENCOUNTER!]]></title>
            <link>https://peertube2.cpy.re/w/qg1bzhRQihqMRiFDD5pFoG</link>
            <guid>https://peertube2.cpy.re/w/qg1bzhRQihqMRiFDD5pFoG</guid>
            <pubDate>Fri, 14 Feb 2025 11:10:05 GMT</pubDate>
            <dc:creator>qrstuv_channel</dc:creator>
            <enclosure length="4906471" type="video/mp4" url="https://toobnix.org/static/web-videos/c8617b2c-5f91-434c-a18d-bf40e9f98690-1080.mp4"/>
            <media:community>
                <media:statistics views="6"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/qg1bzhRQihqMRiFDD5pFoG"/>
            <media:player url="https://peertube2.cpy.re/w/qg1bzhRQihqMRiFDD5pFoG"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5532bdd7-c4f0-432b-93d3-8dcb9df6e8c0-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c73c0023-05c9-4e48-bd03-5594f8cf7aaf-720.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8c4670c9-0dad-42e6-a8cd-b29ef15609da-480.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cf6cc845-813d-4671-b531-48819efc31b5-360.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/987d5aca-be2f-4d69-baac-01c91beb0e10-240.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c6c8307a-b012-434f-a2de-e21be715bc5c-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/29d3498f-5047-4413-a69a-df724745be4d-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/699d88dc-a182-4d91-80ae-fbfbc1376d6b-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/84d271a8-93c4-4390-921a-9b4da6586224-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8fd92c45-37de-4a5c-9d16-7a8af7866faa-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2cd34cf8-fbfd-42d4-8a75-2bd420216738-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/dce12d52-65e1-461a-af76-a0a1c3239b5b-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="4906471" url="https://toobnix.org/static/web-videos/c8617b2c-5f91-434c-a18d-bf40e9f98690-1080.mp4" framerate="30" duration="14" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="2865920" url="https://toobnix.org/static/web-videos/094b13b5-0fc1-486e-9712-b9eca78cb849-720.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="1672214" url="https://toobnix.org/static/web-videos/738a9d22-6329-4e68-92cf-cf24fae22cfe-480.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="1285965" url="https://toobnix.org/static/web-videos/489e93d5-9c1c-4ace-9589-8047ffa14442-360.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="974160" url="https://toobnix.org/static/web-videos/d0e69035-fd82-440b-8ef5-689fda980383-240.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="685439" url="https://toobnix.org/static/web-videos/3ab99c41-6fbf-40b6-bb4c-fef91c1d1577-0.mp4" framerate="0" duration="14" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="4903117" url="https://toobnix.org/static/streaming-playlists/hls/c47398c4-196b-49af-9a72-518428f63358/d8c35b08-4d09-4837-959d-8330e8770f24-1080-fragmented.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="2861414" url="https://toobnix.org/static/streaming-playlists/hls/c47398c4-196b-49af-9a72-518428f63358/37d8014d-81d1-4df5-88f8-691ef500bab1-720-fragmented.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="1667768" url="https://toobnix.org/static/streaming-playlists/hls/c47398c4-196b-49af-9a72-518428f63358/2f9d266d-4fa9-4292-b548-accaa6e0d3b6-480-fragmented.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="1281551" url="https://toobnix.org/static/streaming-playlists/hls/c47398c4-196b-49af-9a72-518428f63358/39f150b9-cf1e-4f64-bde7-8197987948ed-360-fragmented.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="969514" url="https://toobnix.org/static/streaming-playlists/hls/c47398c4-196b-49af-9a72-518428f63358/46f71505-d3c1-4138-bc03-2f614f5e7b9e-240-fragmented.mp4" framerate="30" duration="14" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="686409" url="https://toobnix.org/static/streaming-playlists/hls/c47398c4-196b-49af-9a72-518428f63358/6bfee0de-071d-40fb-b69e-057ce99c0712-0-fragmented.mp4" framerate="0" duration="14" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/0b42b7b2-87b0-4266-8e6c-b31f8b720a3c.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/d82c0564-8534-45cc-85bb-7b47fee119ac.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">SPIDER ENCOUNTER!</media:title>
        </item>
        <item>
            <title><![CDATA[Conseil Municipal du 20 janvier 2025]]></title>
            <link>https://peertube2.cpy.re/w/uNHG2ftCBVVmisTsDjc2nT</link>
            <guid>https://peertube2.cpy.re/w/uNHG2ftCBVVmisTsDjc2nT</guid>
            <pubDate>Fri, 14 Feb 2025 10:22:50 GMT</pubDate>
            <dc:creator>Conseils municipaux</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="518383230" type="video/mp4" url="https://fontube.fr/static/streaming-playlists/hls/e945c9cd-7842-4270-8dcc-61d4cf9dd311/16f6171f-53e2-44a1-bd86-4fe7987391d6-360-fragmented.mp4"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/uNHG2ftCBVVmisTsDjc2nT"/>
            <media:player url="https://peertube2.cpy.re/w/uNHG2ftCBVVmisTsDjc2nT"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/497df1a5-8df4-4bf6-ba9b-bb9fa7991b71-360-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="518383230" url="https://fontube.fr/static/streaming-playlists/hls/e945c9cd-7842-4270-8dcc-61d4cf9dd311/16f6171f-53e2-44a1-bd86-4fe7987391d6-360-fragmented.mp4" framerate="30" duration="10923" isDefault="true"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/cbb4c6a2-185e-423d-80a2-7034edcd6052.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/611aecb3-e19d-49ae-8860-cbe6cc35ff26.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Conseil Municipal du 20 janvier 2025</media:title>
        </item>
        <item>
            <title><![CDATA[3 - Modifier une galerie]]></title>
            <link>https://peertube2.cpy.re/w/kho5evdX4ZGotfLhL4Vrog</link>
            <guid>https://peertube2.cpy.re/w/kho5evdX4ZGotfLhL4Vrog</guid>
            <pubDate>Fri, 14 Feb 2025 09:14:27 GMT</pubDate>
            <description><![CDATA[Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via Movilab.org.]]></description>
            <content:encoded><![CDATA[<p>Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via <a href="http://Movilab.org" target="_blank" rel="noopener noreferrer">Movilab.org</a>.</p>
]]></content:encoded>
            <dc:creator>Movilab.org</dc:creator>
            <category>How To</category>
            <enclosure length="30567664" type="video/mp4" url="https://videos.lescommuns.org/static/streaming-playlists/hls/9c272347-f78f-4943-b772-c7c3d8e63c87/6bf0752c-30e5-4d15-9df9-3f1fa9ec96c4-768-fragmented.mp4"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/kho5evdX4ZGotfLhL4Vrog"/>
            <media:player url="https://peertube2.cpy.re/w/kho5evdX4ZGotfLhL4Vrog"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ac0dd173-a59c-4eb6-85d9-d6606d1078c5-768-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/52ee9d75-2bb2-45ba-b8b2-5109e1104b49-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8cd4da84-8f07-4f51-8ab4-573e933f79da-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/bc3022ac-c54c-486c-bb5f-4b576ba14960-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/67df911b-e268-4131-b8ef-b819d423394c-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="768" fileSize="30567664" url="https://videos.lescommuns.org/static/streaming-playlists/hls/9c272347-f78f-4943-b772-c7c3d8e63c87/6bf0752c-30e5-4d15-9df9-3f1fa9ec96c4-768-fragmented.mp4" framerate="30" duration="455" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="33344523" url="https://videos.lescommuns.org/static/streaming-playlists/hls/9c272347-f78f-4943-b772-c7c3d8e63c87/f9fa9b07-1c9b-4691-82db-b6fb300f685c-720-fragmented.mp4" framerate="30" duration="455" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="24282784" url="https://videos.lescommuns.org/static/streaming-playlists/hls/9c272347-f78f-4943-b772-c7c3d8e63c87/338e40f8-b419-47dc-9311-7476044fadca-480-fragmented.mp4" framerate="30" duration="455" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="13277049" url="https://videos.lescommuns.org/static/streaming-playlists/hls/9c272347-f78f-4943-b772-c7c3d8e63c87/432c5f4d-d49e-4ee0-9d35-142caebca75f-240-fragmented.mp4" framerate="30" duration="455" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="7419721" url="https://videos.lescommuns.org/static/streaming-playlists/hls/9c272347-f78f-4943-b772-c7c3d8e63c87/07916a5c-4c5f-4b67-a6b6-c7b67566d47a-0-fragmented.mp4" framerate="0" duration="455" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/8920be1b-96ce-4df0-a986-b8ecf526cc14.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/20c91971-9dcf-47b9-b149-cc23e4ba71b2.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">3 - Modifier une galerie</media:title>
            <media:description type="plain">Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via Movilab.org.</media:description>
        </item>
        <item>
            <title><![CDATA[4 - Informer les parties prenantes]]></title>
            <link>https://peertube2.cpy.re/w/2L39YKp7UpHHTooDapGfXE</link>
            <guid>https://peertube2.cpy.re/w/2L39YKp7UpHHTooDapGfXE</guid>
            <pubDate>Fri, 14 Feb 2025 09:13:20 GMT</pubDate>
            <description><![CDATA[Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via Movilab.org.]]></description>
            <content:encoded><![CDATA[<p>Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via <a href="http://Movilab.org" target="_blank" rel="noopener noreferrer">Movilab.org</a>.</p>
]]></content:encoded>
            <dc:creator>Movilab.org</dc:creator>
            <category>How To</category>
            <enclosure length="8352906" type="video/mp4" url="https://videos.lescommuns.org/static/streaming-playlists/hls/0e3f3146-8e75-4ab5-affe-e47b632c3824/1ca2fa8b-fe67-4b05-b899-5b7320085e04-768-fragmented.mp4"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/2L39YKp7UpHHTooDapGfXE"/>
            <media:player url="https://peertube2.cpy.re/w/2L39YKp7UpHHTooDapGfXE"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e0c3511b-f2b9-465a-aa60-eeca4744c503-768-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/bf5366ef-a0cc-4d5e-9646-ecd201559918-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/572a5846-7544-45c0-b1d5-8df3587df2e7-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e3953c74-b109-42c5-873e-682f44b92f4a-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8156b7d8-e643-47fc-8306-57ebf0fa43e7-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="768" fileSize="8352906" url="https://videos.lescommuns.org/static/streaming-playlists/hls/0e3f3146-8e75-4ab5-affe-e47b632c3824/1ca2fa8b-fe67-4b05-b899-5b7320085e04-768-fragmented.mp4" framerate="30" duration="138" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="8261949" url="https://videos.lescommuns.org/static/streaming-playlists/hls/0e3f3146-8e75-4ab5-affe-e47b632c3824/7624ae8e-f18b-4e38-9716-62ed3416d2d0-720-fragmented.mp4" framerate="30" duration="138" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="5730452" url="https://videos.lescommuns.org/static/streaming-playlists/hls/0e3f3146-8e75-4ab5-affe-e47b632c3824/1ac9ad2d-0c94-4a9e-9de3-5ae6e9508fed-480-fragmented.mp4" framerate="30" duration="138" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="3493790" url="https://videos.lescommuns.org/static/streaming-playlists/hls/0e3f3146-8e75-4ab5-affe-e47b632c3824/6d81f7a3-2bda-458c-945c-dd635793e025-240-fragmented.mp4" framerate="30" duration="138" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="2248649" url="https://videos.lescommuns.org/static/streaming-playlists/hls/0e3f3146-8e75-4ab5-affe-e47b632c3824/41e11621-6717-4ea1-85c2-961d04890458-0-fragmented.mp4" framerate="0" duration="138" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/d7838714-94f4-41e9-b0ce-d087f72e6876.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/019343fe-1dce-40d5-8f71-75009a5098e1.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">4 - Informer les parties prenantes</media:title>
            <media:description type="plain">Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via Movilab.org.</media:description>
        </item>
        <item>
            <title><![CDATA[2 - Modifier une page]]></title>
            <link>https://peertube2.cpy.re/w/77j1dxi5mYGAMLNiDh7VkQ</link>
            <guid>https://peertube2.cpy.re/w/77j1dxi5mYGAMLNiDh7VkQ</guid>
            <pubDate>Fri, 14 Feb 2025 09:11:36 GMT</pubDate>
            <description><![CDATA[Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via Movilab.org.]]></description>
            <content:encoded><![CDATA[<p>Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via <a href="http://Movilab.org" target="_blank" rel="noopener noreferrer">Movilab.org</a>.</p>
]]></content:encoded>
            <dc:creator>Movilab.org</dc:creator>
            <category>How To</category>
            <enclosure length="28830623" type="video/mp4" url="https://videos.lescommuns.org/static/streaming-playlists/hls/317863c8-0cce-498d-897a-89f3529efe42/740330b9-223b-4cc2-8f92-1eff03fef5b1-768-fragmented.mp4"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/77j1dxi5mYGAMLNiDh7VkQ"/>
            <media:player url="https://peertube2.cpy.re/w/77j1dxi5mYGAMLNiDh7VkQ"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/33634405-319b-48a7-b573-00b6ebdb0667-768-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2617670d-ff07-4328-83a4-f5d25a16f96f-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e48f4b17-3bfb-4c39-9be3-6602bb4f6cd4-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/df6a1ba3-0063-4ec1-a36d-bbcb0cfdc9ed-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/77c9e9dc-62ec-42cc-b9e7-0db1ee64eff8-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="768" fileSize="28830623" url="https://videos.lescommuns.org/static/streaming-playlists/hls/317863c8-0cce-498d-897a-89f3529efe42/740330b9-223b-4cc2-8f92-1eff03fef5b1-768-fragmented.mp4" framerate="30" duration="478" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="29017889" url="https://videos.lescommuns.org/static/streaming-playlists/hls/317863c8-0cce-498d-897a-89f3529efe42/78165a88-4d97-409b-b981-261a61e28eef-720-fragmented.mp4" framerate="30" duration="478" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="22026420" url="https://videos.lescommuns.org/static/streaming-playlists/hls/317863c8-0cce-498d-897a-89f3529efe42/73c8711c-fa62-43e5-88ed-f33aa13e5243-480-fragmented.mp4" framerate="30" duration="478" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="13089557" url="https://videos.lescommuns.org/static/streaming-playlists/hls/317863c8-0cce-498d-897a-89f3529efe42/22d65c22-76b0-487a-8f5a-435dd15842c5-240-fragmented.mp4" framerate="30" duration="478" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="7799494" url="https://videos.lescommuns.org/static/streaming-playlists/hls/317863c8-0cce-498d-897a-89f3529efe42/a2ae55fc-cc2f-42dd-89be-da5f7f0394cb-0-fragmented.mp4" framerate="0" duration="478" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/9269fb65-e74c-4ec5-b272-04ccf7c2cfc1.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/4c427d4a-6445-4a01-8f13-bd6fce60a12e.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">2 - Modifier une page</media:title>
            <media:description type="plain">Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via Movilab.org.</media:description>
        </item>
        <item>
            <title><![CDATA[1 - Structuration des centres de ressources]]></title>
            <link>https://peertube2.cpy.re/w/bhevKhGrbAHwrZ2YAX62k2</link>
            <guid>https://peertube2.cpy.re/w/bhevKhGrbAHwrZ2YAX62k2</guid>
            <pubDate>Fri, 14 Feb 2025 09:06:46 GMT</pubDate>
            <description><![CDATA[Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via Movilab.org.]]></description>
            <content:encoded><![CDATA[<p>Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via <a href="http://Movilab.org" target="_blank" rel="noopener noreferrer">Movilab.org</a>.</p>
]]></content:encoded>
            <dc:creator>Movilab.org</dc:creator>
            <category>How To</category>
            <enclosure length="19492047" type="video/mp4" url="https://videos.lescommuns.org/static/streaming-playlists/hls/533f9d51-39f5-4ace-8234-12425f914d6b/404047eb-42af-4bc1-b36f-0f387e549aa1-768-fragmented.mp4"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/bhevKhGrbAHwrZ2YAX62k2"/>
            <media:player url="https://peertube2.cpy.re/w/bhevKhGrbAHwrZ2YAX62k2"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cfacadc3-2027-4ed9-8b78-09166bb5f700-768-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/28dc8788-9011-45fa-9f50-d48a16af92e9-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5385ef31-2342-436c-a178-05cd04dcc7dd-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/abbeb8fd-09c8-4408-b29c-909270b4790e-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f4cc34ee-4678-407f-b97a-de6c6d750cdc-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="768" fileSize="19492047" url="https://videos.lescommuns.org/static/streaming-playlists/hls/533f9d51-39f5-4ace-8234-12425f914d6b/404047eb-42af-4bc1-b36f-0f387e549aa1-768-fragmented.mp4" framerate="30" duration="338" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="18824968" url="https://videos.lescommuns.org/static/streaming-playlists/hls/533f9d51-39f5-4ace-8234-12425f914d6b/f0d6cffe-ef4a-4992-9177-b84956b87449-720-fragmented.mp4" framerate="30" duration="338" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="13945925" url="https://videos.lescommuns.org/static/streaming-playlists/hls/533f9d51-39f5-4ace-8234-12425f914d6b/86c20eaf-30fd-415c-8ae9-91ee27ba28f7-480-fragmented.mp4" framerate="30" duration="338" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="8653250" url="https://videos.lescommuns.org/static/streaming-playlists/hls/533f9d51-39f5-4ace-8234-12425f914d6b/c3f30034-b108-4e96-a16d-a6644e1bf5c5-240-fragmented.mp4" framerate="30" duration="338" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="5522499" url="https://videos.lescommuns.org/static/streaming-playlists/hls/533f9d51-39f5-4ace-8234-12425f914d6b/ad0bc14c-a837-4046-820c-1166415a646e-0-fragmented.mp4" framerate="0" duration="338" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/3fa940de-865a-4c1d-8c5b-8edf5a794d2b.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/a44fd300-be9b-421a-917e-a0ee60f64cb2.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">1 - Structuration des centres de ressources</media:title>
            <media:description type="plain">Capsule tutorielle à destination des groupes d'expertises et de coopérations soutenus ou impulsés par l'association nationale des tiers-lieux. Ce tutoriel vise à les outiller pour le dépôts et l'animation des contenus via Movilab.org.</media:description>
        </item>
        <item>
            <title><![CDATA[Maël Ginsburger - Vers la transition juste : pauvreté et lutte contre les injustices écologiques]]></title>
            <link>https://peertube2.cpy.re/w/d88tiEy9LVFNaRNGTsNzBv</link>
            <guid>https://peertube2.cpy.re/w/d88tiEy9LVFNaRNGTsNzBv</guid>
            <pubDate>Fri, 14 Feb 2025 09:00:57 GMT</pubDate>
            <description><![CDATA[Fruit d'un travail collaboratif et participatif mené depuis 2021, le rapport "Faire de la transition écologique un levier d'inclusion sociale" du Conseil national des politiques de lutte contre la pauvreté et l'exclusion sociale (CNLE) fournit un ...]]></description>
            <content:encoded><![CDATA[<p>Fruit d'un travail collaboratif et participatif mené depuis 2021, le rapport "Faire de la transition écologique un levier d'inclusion sociale" du Conseil national des politiques de lutte contre la pauvreté et l'exclusion sociale (CNLE) fournit un ensemble de constats, alimentés par les travaux et méthodes des sciences sociales, sur l'intrication des enjeux écologiques et sociaux, ainsi que de recommandations permettant de réaliser une transition juste. Cette présentation vise à revenir sur sa démarche, sur son contenu (en particulier l'impasse des politiques de responsabilisation des ménages pauvres et modestes) et sur les recommandations qui en découlent.</p>
]]></content:encoded>
            <dc:creator>Labos1point5</dc:creator>
            <enclosure length="77905365" type="video/mp4" url="https://tube.nuagelibre.fr/static/webseed/622c796d-fb82-4eb2-8a9b-711fd8d0075f-1080.mp4"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/d88tiEy9LVFNaRNGTsNzBv"/>
            <media:player url="https://peertube2.cpy.re/w/d88tiEy9LVFNaRNGTsNzBv"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d0d1343a-5111-4670-8318-1c4ccea6c762-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f9fd9676-d5be-48fa-82c4-dcdd8b03ed5d-1080-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="77905365" url="https://tube.nuagelibre.fr/static/webseed/622c796d-fb82-4eb2-8a9b-711fd8d0075f-1080.mp4" framerate="25" duration="3322" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="108958467" url="https://tube.nuagelibre.fr/static/streaming-playlists/hls/622c796d-fb82-4eb2-8a9b-711fd8d0075f/622c796d-fb82-4eb2-8a9b-711fd8d0075f-1080-fragmented.mp4" framerate="25" duration="3322" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/f7d44c30-7389-4e63-8b8a-9491d39df861.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/8422bcb4-1653-4fe3-900b-80212f56e6e7.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Maël Ginsburger - Vers la transition juste : pauvreté et lutte contre les injustices écologiques</media:title>
            <media:description type="plain">Fruit d'un travail collaboratif et participatif mené depuis 2021, le rapport "Faire de la transition écologique un levier d'inclusion sociale" du Conseil national des politiques de lutte contre la pauvreté et l'exclusion sociale (CNLE) fournit un ...</media:description>
        </item>
        <item>
            <title><![CDATA[Bleakness - Dead of Night + Hold On - Bagnolet - 09/02/2025]]></title>
            <link>https://peertube2.cpy.re/w/35uhkDSDC1d62egtAiKJkx</link>
            <guid>https://peertube2.cpy.re/w/35uhkDSDC1d62egtAiKJkx</guid>
            <pubDate>Thu, 13 Feb 2025 21:29:30 GMT</pubDate>
            <description><![CDATA[Bleakness - Dead of Night + Hold On - Le Sample, Bagnolet - 9 février 2025]]></description>
            <content:encoded><![CDATA[<p>Bleakness - Dead of Night + Hold On - Le Sample, Bagnolet - 9 février 2025</p>
]]></content:encoded>
            <dc:creator>flo200</dc:creator>
            <category>Music</category>
            <enclosure length="282953239" type="video/mp4" url="https://www.yiny.org/static/streaming-playlists/hls/10d2ae7e-9d22-4482-9549-9815cc4f4f9d/009a3de6-144d-4399-a656-29d280808397-1080-fragmented.mp4"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/35uhkDSDC1d62egtAiKJkx"/>
            <media:player url="https://peertube2.cpy.re/w/35uhkDSDC1d62egtAiKJkx"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6ebf75f1-8617-478c-9534-900130bd5bbf-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0b8bc6cf-652e-4bde-b614-a548680d617a-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6f2e4154-819f-4ac9-be45-66b131ec0416-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/02626082-6982-4f2f-b517-f9807a195240-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/dab57a03-1dde-4204-906a-f89d4fd9f9c7-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="282953239" url="https://www.yiny.org/static/streaming-playlists/hls/10d2ae7e-9d22-4482-9549-9815cc4f4f9d/009a3de6-144d-4399-a656-29d280808397-1080-fragmented.mp4" framerate="30" duration="430" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="121025718" url="https://www.yiny.org/static/streaming-playlists/hls/10d2ae7e-9d22-4482-9549-9815cc4f4f9d/cf6209a8-be89-4c1a-976a-d365fa74a1e5-720-fragmented.mp4" framerate="30" duration="430" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="62551164" url="https://www.yiny.org/static/streaming-playlists/hls/10d2ae7e-9d22-4482-9549-9815cc4f4f9d/bc511254-c184-40ef-9524-93a056c6fd35-480-fragmented.mp4" framerate="30" duration="430" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="25706428" url="https://www.yiny.org/static/streaming-playlists/hls/10d2ae7e-9d22-4482-9549-9815cc4f4f9d/450ec05f-a6d0-4cab-ad67-056085835481-240-fragmented.mp4" framerate="30" duration="430" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="8477133" url="https://www.yiny.org/static/streaming-playlists/hls/10d2ae7e-9d22-4482-9549-9815cc4f4f9d/7854f059-faf0-44d3-ba08-cc3878b08e55-0-fragmented.mp4" framerate="0" duration="430" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/ff2e2241-ee58-4ccc-a440-9c327372b227.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/13130b12-cd3e-4ad7-b5b4-f5537e84f082.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Bleakness - Dead of Night + Hold On - Bagnolet - 09/02/2025</media:title>
            <media:description type="plain">Bleakness - Dead of Night + Hold On - Le Sample, Bagnolet - 9 février 2025</media:description>
        </item>
        <item>
            <title><![CDATA[Barren? - Heroes play with Fire - Bagnolet - 09/02/2025]]></title>
            <link>https://peertube2.cpy.re/w/rEuHsxs7YCGosHHuYYWKTA</link>
            <guid>https://peertube2.cpy.re/w/rEuHsxs7YCGosHHuYYWKTA</guid>
            <pubDate>Thu, 13 Feb 2025 21:26:05 GMT</pubDate>
            <description><![CDATA[Barren? - Heroes play with Fire - Le Sample, Bagnolet - 9 février 2025]]></description>
            <content:encoded><![CDATA[<p>Barren? - Heroes play with Fire - Le Sample, Bagnolet - 9 février 2025</p>
]]></content:encoded>
            <dc:creator>flo200</dc:creator>
            <category>Music</category>
            <enclosure length="132267136" type="video/mp4" url="https://www.yiny.org/static/streaming-playlists/hls/cfd46d06-3155-4942-8273-2366f8a95e2c/eb15040a-8232-4d08-931e-a14b569f48f4-1080-fragmented.mp4"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/rEuHsxs7YCGosHHuYYWKTA"/>
            <media:player url="https://peertube2.cpy.re/w/rEuHsxs7YCGosHHuYYWKTA"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2b730c65-f932-49f7-bba9-f68b9685b3ce-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ae77e6a1-16a0-4398-b8f8-bdbf3c7f64c1-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/9c368427-48e3-4b8c-aa3f-a3f731770b7d-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/01d1befb-b443-4757-8acd-bf8dceaff127-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f21f7d81-b6b2-4a7f-a8ce-4d9f795eb4f2-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="132267136" url="https://www.yiny.org/static/streaming-playlists/hls/cfd46d06-3155-4942-8273-2366f8a95e2c/eb15040a-8232-4d08-931e-a14b569f48f4-1080-fragmented.mp4" framerate="30" duration="208" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="55652747" url="https://www.yiny.org/static/streaming-playlists/hls/cfd46d06-3155-4942-8273-2366f8a95e2c/0112898b-0e96-4c14-9e94-613b432570c4-720-fragmented.mp4" framerate="30" duration="208" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="28456697" url="https://www.yiny.org/static/streaming-playlists/hls/cfd46d06-3155-4942-8273-2366f8a95e2c/ca469a20-057a-4a03-9c4a-4e70de216b2f-480-fragmented.mp4" framerate="30" duration="208" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="11560357" url="https://www.yiny.org/static/streaming-playlists/hls/cfd46d06-3155-4942-8273-2366f8a95e2c/2e7f7ba5-ed4f-46bf-93e3-8a4d40252d7a-240-fragmented.mp4" framerate="30" duration="208" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="4098769" url="https://www.yiny.org/static/streaming-playlists/hls/cfd46d06-3155-4942-8273-2366f8a95e2c/fdb1eb5d-3370-494a-a7d7-7e1df96325e6-0-fragmented.mp4" framerate="0" duration="208" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/929e6bf5-66c1-4376-9d9e-874bd318f127.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/d8f23960-41c9-4af8-9510-869a5b75b7a8.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Barren? - Heroes play with Fire - Bagnolet - 09/02/2025</media:title>
            <media:description type="plain">Barren? - Heroes play with Fire - Le Sample, Bagnolet - 9 février 2025</media:description>
        </item>
        <item>
            <title><![CDATA[Barren? - Men at the Door - Bagnolet - 09/02/2025]]></title>
            <link>https://peertube2.cpy.re/w/wsBK6EA9SvgF8bR7Wq1sis</link>
            <guid>https://peertube2.cpy.re/w/wsBK6EA9SvgF8bR7Wq1sis</guid>
            <pubDate>Thu, 13 Feb 2025 21:25:37 GMT</pubDate>
            <description><![CDATA[Barren? - Men at the Door - Le Sample, Bagnolet - 9 février 2025]]></description>
            <content:encoded><![CDATA[<p>Barren? - Men at the Door - Le Sample, Bagnolet - 9 février 2025</p>
]]></content:encoded>
            <dc:creator>flo200</dc:creator>
            <category>Music</category>
            <enclosure length="139020847" type="video/mp4" url="https://www.yiny.org/static/streaming-playlists/hls/f6a98677-c6e2-4497-ac4a-0ca52adc6edc/670a2716-29a1-4a39-a32e-c9683588dd92-1080-fragmented.mp4"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/wsBK6EA9SvgF8bR7Wq1sis"/>
            <media:player url="https://peertube2.cpy.re/w/wsBK6EA9SvgF8bR7Wq1sis"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b22b4fd4-fcd7-499c-a969-e52a0f4a87e4-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4401294c-743c-4002-8a98-d93d192e3b5c-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d57d1180-7a2b-4709-a1a7-cef694e7c9d0-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/174a7e18-ab05-4a01-b76e-4f8b5d8d99bc-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2aa2a11d-5c54-449e-808e-1ac4642288d9-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="139020847" url="https://www.yiny.org/static/streaming-playlists/hls/f6a98677-c6e2-4497-ac4a-0ca52adc6edc/670a2716-29a1-4a39-a32e-c9683588dd92-1080-fragmented.mp4" framerate="30" duration="215" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="59025997" url="https://www.yiny.org/static/streaming-playlists/hls/f6a98677-c6e2-4497-ac4a-0ca52adc6edc/989f0cf9-1e8a-440b-aaff-c65c5e332435-720-fragmented.mp4" framerate="30" duration="215" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="30008286" url="https://www.yiny.org/static/streaming-playlists/hls/f6a98677-c6e2-4497-ac4a-0ca52adc6edc/1541ae4f-7375-4fbb-99fd-105142cb2139-480-fragmented.mp4" framerate="30" duration="215" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="12007275" url="https://www.yiny.org/static/streaming-playlists/hls/f6a98677-c6e2-4497-ac4a-0ca52adc6edc/9cef6043-98fc-4182-a1fc-1493c9067e29-240-fragmented.mp4" framerate="30" duration="215" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="4229789" url="https://www.yiny.org/static/streaming-playlists/hls/f6a98677-c6e2-4497-ac4a-0ca52adc6edc/ddb72e3d-f6b6-4ea1-aea7-4545167d8700-0-fragmented.mp4" framerate="0" duration="215" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/2bbf3219-0afb-4caf-ac4e-d68531567caa.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/e7f5d097-6498-4d39-8782-8fb720d50ad8.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Barren? - Men at the Door - Bagnolet - 09/02/2025</media:title>
            <media:description type="plain">Barren? - Men at the Door - Le Sample, Bagnolet - 9 février 2025</media:description>
        </item>
        <item>
            <title><![CDATA[Bleakness - Resignation Kills + Sour Sensation - Bagnolet - 09/02/2025]]></title>
            <link>https://peertube2.cpy.re/w/dC7UbpxftdTdvDZJpFCkJc</link>
            <guid>https://peertube2.cpy.re/w/dC7UbpxftdTdvDZJpFCkJc</guid>
            <pubDate>Thu, 13 Feb 2025 21:23:35 GMT</pubDate>
            <description><![CDATA[Bleakness - Resignation Kills + Sour Sensation - Le Sample, Bagnolet - 9 février 2025]]></description>
            <content:encoded><![CDATA[<p>Bleakness - Resignation Kills + Sour Sensation - Le Sample, Bagnolet - 9 février 2025</p>
]]></content:encoded>
            <dc:creator>flo200</dc:creator>
            <category>Music</category>
            <enclosure length="190042275" type="video/mp4" url="https://www.yiny.org/static/web-videos/1d8e13f7-47d0-4471-80f0-23f9f75cdff2-1080.mp4"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/dC7UbpxftdTdvDZJpFCkJc"/>
            <media:player url="https://peertube2.cpy.re/w/dC7UbpxftdTdvDZJpFCkJc"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/69f8b780-25cd-489b-8fb5-b4efb31d4efc-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/50748d3d-b812-4f60-a748-c28e1022c306-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5c1c86a8-8a58-4c2a-8641-7d4349643a9c-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6b189e30-06c0-43e7-9cde-5ad035f36631-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/80490fa9-e4e0-42a5-ba7e-e5d8e87bd7ac-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/a6bc7c91-a884-4951-a943-eb3e6917a6dc-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="190042275" url="https://www.yiny.org/static/web-videos/1d8e13f7-47d0-4471-80f0-23f9f75cdff2-1080.mp4" framerate="30" duration="422" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="169355940" url="https://www.yiny.org/static/streaming-playlists/hls/6638b113-1113-492c-98c4-4f3efafcfbab/417dc82f-7dcd-4a5f-8b40-7a7bd314aea8-1080-fragmented.mp4" framerate="30" duration="422" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="75103364" url="https://www.yiny.org/static/streaming-playlists/hls/6638b113-1113-492c-98c4-4f3efafcfbab/62c1e672-1ec0-4f1b-b0a7-a19e296f6020-720-fragmented.mp4" framerate="30" duration="422" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="40622080" url="https://www.yiny.org/static/streaming-playlists/hls/6638b113-1113-492c-98c4-4f3efafcfbab/c1bc7a1c-2c59-4e0c-9867-6007d898faa6-480-fragmented.mp4" framerate="30" duration="422" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="18873175" url="https://www.yiny.org/static/streaming-playlists/hls/6638b113-1113-492c-98c4-4f3efafcfbab/7680e6b1-9244-4407-953f-3b6a8989c14c-240-fragmented.mp4" framerate="30" duration="422" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="8323668" url="https://www.yiny.org/static/streaming-playlists/hls/6638b113-1113-492c-98c4-4f3efafcfbab/48adb12b-753f-42d5-b414-b74c0f7f645d-0-fragmented.mp4" framerate="0" duration="422" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/696facf3-d03b-4239-b37e-dc27ed25d89f.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/14998ac6-63f4-41de-a0fb-9c13fc669cd1.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Bleakness - Resignation Kills + Sour Sensation - Bagnolet - 09/02/2025</media:title>
            <media:description type="plain">Bleakness - Resignation Kills + Sour Sensation - Le Sample, Bagnolet - 9 février 2025</media:description>
        </item>
        <item>
            <title><![CDATA[Bleakness - The Closing Door + Toward The End - Bagnolet - 09/02/2025]]></title>
            <link>https://peertube2.cpy.re/w/rz15sWCaJyCZXUjWr36F3X</link>
            <guid>https://peertube2.cpy.re/w/rz15sWCaJyCZXUjWr36F3X</guid>
            <pubDate>Thu, 13 Feb 2025 20:56:21 GMT</pubDate>
            <description><![CDATA[Bleakness - The Closing Door + Toward The End - Le Sample, Bagnolet - 9 février 2025]]></description>
            <content:encoded><![CDATA[<p>Bleakness - The Closing Door + Toward The End - Le Sample, Bagnolet - 9 février 2025</p>
]]></content:encoded>
            <dc:creator>flo200</dc:creator>
            <category>Music</category>
            <enclosure length="328791777" type="video/mp4" url="https://www.yiny.org/static/streaming-playlists/hls/cf100eef-d1fa-4240-bff6-1262ac55172f/74da4925-bedf-486f-b721-51708ca116b7-1080-fragmented.mp4"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/rz15sWCaJyCZXUjWr36F3X"/>
            <media:player url="https://peertube2.cpy.re/w/rz15sWCaJyCZXUjWr36F3X"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/af235f71-309a-42b1-a970-e83dc31f802b-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/9982caac-f72b-4a32-a4e9-e9f9234be5a5-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2195e41d-3871-46db-afcc-0d18f71e921c-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b20391b2-27ed-42bd-8aee-cc3967f50a05-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b6219efb-1d59-4ac3-a709-5d0b392a347b-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="328791777" url="https://www.yiny.org/static/streaming-playlists/hls/cf100eef-d1fa-4240-bff6-1262ac55172f/74da4925-bedf-486f-b721-51708ca116b7-1080-fragmented.mp4" framerate="30" duration="415" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="152152362" url="https://www.yiny.org/static/streaming-playlists/hls/cf100eef-d1fa-4240-bff6-1262ac55172f/5a75ae30-1a6e-442d-8623-8c3e8414bbef-720-fragmented.mp4" framerate="30" duration="415" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="79599584" url="https://www.yiny.org/static/streaming-playlists/hls/cf100eef-d1fa-4240-bff6-1262ac55172f/6bce67ab-280c-486c-956e-642efa35f504-480-fragmented.mp4" framerate="30" duration="415" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="31314933" url="https://www.yiny.org/static/streaming-playlists/hls/cf100eef-d1fa-4240-bff6-1262ac55172f/db42fc2a-6d29-46a0-9b50-e64c00dc46a0-240-fragmented.mp4" framerate="30" duration="415" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="8179397" url="https://www.yiny.org/static/streaming-playlists/hls/cf100eef-d1fa-4240-bff6-1262ac55172f/ea842ee7-7cb2-4ae1-928c-b6d3d6f26409-0-fragmented.mp4" framerate="0" duration="415" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/f086846d-71f6-4497-a1b5-0f057999c974.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/722ddc6b-82ea-41c8-8262-a4384723bb0c.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Bleakness - The Closing Door + Toward The End - Bagnolet - 09/02/2025</media:title>
            <media:description type="plain">Bleakness - The Closing Door + Toward The End - Le Sample, Bagnolet - 9 février 2025</media:description>
        </item>
        <item>
            <title><![CDATA[Violent City - Neuromancer - Bagnolet - 09/02/2025]]></title>
            <link>https://peertube2.cpy.re/w/nkndSA8Sxk5JygL95rEhUB</link>
            <guid>https://peertube2.cpy.re/w/nkndSA8Sxk5JygL95rEhUB</guid>
            <pubDate>Thu, 13 Feb 2025 20:49:48 GMT</pubDate>
            <description><![CDATA[Violent City - Neuromancer - Le Sample, Bagnolet - 9 février 2025]]></description>
            <content:encoded><![CDATA[<p>Violent City - Neuromancer - Le Sample, Bagnolet - 9 février 2025</p>
]]></content:encoded>
            <dc:creator>flo200</dc:creator>
            <category>Music</category>
            <enclosure length="124408831" type="video/mp4" url="https://www.yiny.org/static/streaming-playlists/hls/acc41f39-8a7d-420f-b259-94d6730b042b/751c6f56-a20f-4d43-bdfe-a5211b9a4eff-1080-fragmented.mp4"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/nkndSA8Sxk5JygL95rEhUB"/>
            <media:player url="https://peertube2.cpy.re/w/nkndSA8Sxk5JygL95rEhUB"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ea9bd8c1-c999-4893-8587-17bbef8f81a5-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2acba6cf-0907-42c0-aced-23e045627ed0-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/49c5ebf2-f039-4093-8d8b-5c01acaac3d8-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b3fdd573-32aa-4f72-97e5-8315481e13ce-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/88182249-f3a9-4f64-a2e4-b26c4fddfde7-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="124408831" url="https://www.yiny.org/static/streaming-playlists/hls/acc41f39-8a7d-420f-b259-94d6730b042b/751c6f56-a20f-4d43-bdfe-a5211b9a4eff-1080-fragmented.mp4" framerate="30" duration="194" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="51113968" url="https://www.yiny.org/static/streaming-playlists/hls/acc41f39-8a7d-420f-b259-94d6730b042b/4dbb547e-d4f5-4c23-a658-9b225a7b1f09-720-fragmented.mp4" framerate="30" duration="194" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="27331986" url="https://www.yiny.org/static/streaming-playlists/hls/acc41f39-8a7d-420f-b259-94d6730b042b/d1b89f72-eb54-400a-a78c-2fea26ad80c6-480-fragmented.mp4" framerate="30" duration="194" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="11634425" url="https://www.yiny.org/static/streaming-playlists/hls/acc41f39-8a7d-420f-b259-94d6730b042b/e8035b2d-92af-4751-ae26-8b4df0d6b40a-240-fragmented.mp4" framerate="30" duration="194" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="3812336" url="https://www.yiny.org/static/streaming-playlists/hls/acc41f39-8a7d-420f-b259-94d6730b042b/304c3bf6-15f1-4ce2-9b48-22ff6052462a-0-fragmented.mp4" framerate="0" duration="194" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/previews/a182e03b-f671-4527-9f8d-3cc40bed5f11.jpg"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/137800ca-6f76-40f7-a75c-5e17b023bdc8.jpg"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Violent City - Neuromancer - Bagnolet - 09/02/2025</media:title>
            <media:description type="plain">Violent City - Neuromancer - Le Sample, Bagnolet - 9 février 2025</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 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.

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

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" "-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
[
  • {