PeerTube (8.1.0)

Download OpenAPI specification:

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.

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
required
id (integer) or UUIDv4 (string) or shortUUID (string)

Video id or UUID

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 feature-rich ; 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>Thu, 20 Aug 2026 03:03:59 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/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.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[Invasion On The Clone Base - qrstuv]]></title>
            <link>https://peertube2.cpy.re/w/8btwtB3DXoGimsfy2t6x1Y;threadId=194036</link>
            <guid>https://peertube2.cpy.re/w/8btwtB3DXoGimsfy2t6x1Y;threadId=194036</guid>
            <pubDate>Wed, 19 Aug 2026 21:54:09 GMT</pubDate>
            <content:encoded><![CDATA[<p>This was a video about humiliation.</p>
]]></content:encoded>
            <dc:creator>qrstuv</dc:creator>
        </item>
        <item>
            <title><![CDATA[🇩🇪 Sunset at an abandoned winter garden, somewhere in Germany - Eva]]></title>
            <link>https://peertube2.cpy.re/w/x96Wdq6s7jAPprqbgeapFw;threadId=194035</link>
            <guid>https://peertube2.cpy.re/w/x96Wdq6s7jAPprqbgeapFw;threadId=194035</guid>
            <pubDate>Wed, 19 Aug 2026 20:06:54 GMT</pubDate>
            <content:encoded><![CDATA[<p>It reminds me of Picard's vineyard.</p>
]]></content:encoded>
            <dc:creator>Eva</dc:creator>
        </item>
        <item>
            <title><![CDATA[My new (& old) FAVORITE DISTRO: Tuxedo OS - Debian Beta - Ulfi]]></title>
            <link>https://peertube2.cpy.re/w/f6VXVRmGV2GFKcE67Xpv9j;threadId=194034</link>
            <guid>https://peertube2.cpy.re/w/f6VXVRmGV2GFKcE67Xpv9j;threadId=194034</guid>
            <pubDate>Wed, 19 Aug 2026 19:24:41 GMT</pubDate>
            <content:encoded><![CDATA[<p>Looks like tuxedo following the way from openSUSE tumbleweed, which do the same approach with stable an well tested rolling Distro and AS Fall back btrfs and snapper (this can be used from non technician users easily as well). The future will show, if the result is similar good as at tumbleweed, which use it since about 10years</p>
]]></content:encoded>
            <dc:creator>Ulfi</dc:creator>
        </item>
        <item>
            <title><![CDATA[Corno alle Scale: Le Alpi in Appennino - simoneviaggiatore]]></title>
            <link>https://peertube2.cpy.re/w/qQmQByCv2jaF9S9sEGCuhE;threadId=194018</link>
            <guid>https://peertube2.cpy.re/w/qQmQByCv2jaF9S9sEGCuhE;threadId=194018</guid>
            <pubDate>Wed, 19 Aug 2026 18:34:19 GMT</pubDate>
            <content:encoded><![CDATA[<p>@aliperviaggiare@peertube.uno 😄</p>
]]></content:encoded>
            <dc:creator>simoneviaggiatore</dc:creator>
        </item>
        <item>
            <title><![CDATA[My new (& old) FAVORITE DISTRO: Tuxedo OS - Debian Beta - Azufre36]]></title>
            <link>https://peertube2.cpy.re/w/f6VXVRmGV2GFKcE67Xpv9j;threadId=194032</link>
            <guid>https://peertube2.cpy.re/w/f6VXVRmGV2GFKcE67Xpv9j;threadId=194032</guid>
            <pubDate>Wed, 19 Aug 2026 17:45:29 GMT</pubDate>
            <content:encoded><![CDATA[<p>Excaping from cannonical hands is hard but necessary, I expect Linux Mint makes LMDE their main flavour.</p>
]]></content:encoded>
            <dc:creator>Azufre36</dc:creator>
        </item>
        <item>
            <title><![CDATA[[Album] CyberSDF - Patrons' Selected Pieces - vol.1 [Free/Libre Music] - Julien Ottavi]]></title>
            <link>https://peertube2.cpy.re/w/x1sHCCR82mhPh8RfgRzv3V;threadId=194031</link>
            <guid>https://peertube2.cpy.re/w/x1sHCCR82mhPh8RfgRzv3V;threadId=194031</guid>
            <pubDate>Wed, 19 Aug 2026 17:43:18 GMT</pubDate>
            <content:encoded><![CDATA[<p>sweet</p>
]]></content:encoded>
            <dc:creator>Julien Ottavi</dc:creator>
        </item>
        <item>
            <title><![CDATA[Sony hat da ein Fass aufgemacht - Cthulhu_breakfast]]></title>
            <link>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194030</link>
            <guid>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194030</guid>
            <pubDate>Wed, 19 Aug 2026 16:29:09 GMT</pubDate>
            <content:encoded><![CDATA[<p>Ich hatte früher eine Warcraft 3 CD mit einem kompletten Riss von der Mitte bis zur Außenkannte. zum starten reichte die CD trotzdem immer 😄</p>
]]></content:encoded>
            <dc:creator>Cthulhu_breakfast</dc:creator>
        </item>
        <item>
            <title><![CDATA[hatniX spielt „Cargo, Please!“ - hatniX]]></title>
            <link>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo;threadId=194026</link>
            <guid>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo;threadId=194026</guid>
            <pubDate>Wed, 19 Aug 2026 12:54:01 GMT</pubDate>
            <content:encoded><![CDATA[<p>@starfarer Danke! ❤️<br />
Man darf das Spiel halt nicht ernst nehmen, dann machts Spaß. ^^</p>
]]></content:encoded>
            <dc:creator>hatniX</dc:creator>
        </item>
        <item>
            <title><![CDATA[hatniX spielt „Cargo, Please!“ - starfarer]]></title>
            <link>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo;threadId=194026</link>
            <guid>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo;threadId=194026</guid>
            <pubDate>Wed, 19 Aug 2026 10:39:33 GMT</pubDate>
            <content:encoded><![CDATA[<p>Das Spiel hat mir nicht so gut gefallen aber das Video umso mehr  😉</p>
]]></content:encoded>
            <dc:creator>starfarer</dc:creator>
        </item>
        <item>
            <title><![CDATA[hatniX spielt „Cargo, Please!“ - hatniX]]></title>
            <link>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo;threadId=194024</link>
            <guid>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo;threadId=194024</guid>
            <pubDate>Wed, 19 Aug 2026 10:32:30 GMT</pubDate>
            <content:encoded><![CDATA[<p>@starfarer Aber echt! ^^</p>
]]></content:encoded>
            <dc:creator>hatniX</dc:creator>
        </item>
        <item>
            <title><![CDATA[hatniX spielt „Cargo, Please!“ - starfarer]]></title>
            <link>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo;threadId=194024</link>
            <guid>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo;threadId=194024</guid>
            <pubDate>Wed, 19 Aug 2026 10:16:13 GMT</pubDate>
            <content:encoded><![CDATA[<p>Der Onkel ist ja echt n Jumpscare</p>
]]></content:encoded>
            <dc:creator>starfarer</dc:creator>
        </item>
        <item>
            <title><![CDATA[Sony hat da ein Fass aufgemacht - Adrian]]></title>
            <link>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194023</link>
            <guid>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194023</guid>
            <pubDate>Wed, 19 Aug 2026 07:48:35 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://tube.the-morpheus.de/a/morpheus/video-channels" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>morpheus</span></a></span> es ist schwierig. Ja man sollte das Eigentum, die Software schützen aber es gibt Grenzen. Irgendwann ist der Schutz unnötig, es gibt bei Dungeon Keepers kein großes Interesse mehr als bei einem 2026er Titel weshalb SafeDisc weg kann. </p><p>Das GOG Prinzip müsste einfach Schule machen.</p>]]></content:encoded>
            <dc:creator>Adrian</dc:creator>
        </item>
        <item>
            <title><![CDATA[Sony hat da ein Fass aufgemacht - Leonard Menzel :pdh_bird:]]></title>
            <link>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194022</link>
            <guid>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194022</guid>
            <pubDate>Wed, 19 Aug 2026 06:58:31 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://tube.the-morpheus.de/a/morpheus/video-channels" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>morpheus</span></a></span> hab nachgeschaut, die funktion DRM content zu schauen ist bei mir in Firefox deaktiviert und es ist mir bisher noch nicht aufgefallen :)</p>]]></content:encoded>
            <dc:creator>Leonard Menzel :pdh_bird:</dc:creator>
        </item>
        <item>
            <title><![CDATA[Corno alle Scale: Le Alpi in Appennino - AliperViaggiare]]></title>
            <link>https://peertube2.cpy.re/w/qQmQByCv2jaF9S9sEGCuhE;threadId=194018</link>
            <guid>https://peertube2.cpy.re/w/qQmQByCv2jaF9S9sEGCuhE;threadId=194018</guid>
            <pubDate>Tue, 18 Aug 2026 16:58:43 GMT</pubDate>
            <content:encoded><![CDATA[<p>@simoneviaggiatore@video.simoneviaggiatore.com Quando ho realizzato mi si è gelato il sangue!! 😂</p>
]]></content:encoded>
            <dc:creator>AliperViaggiare</dc:creator>
        </item>
        <item>
            <title><![CDATA[Corno alle Scale: Le Alpi in Appennino - simoneviaggiatore]]></title>
            <link>https://peertube2.cpy.re/w/qQmQByCv2jaF9S9sEGCuhE;threadId=194018</link>
            <guid>https://peertube2.cpy.re/w/qQmQByCv2jaF9S9sEGCuhE;threadId=194018</guid>
            <pubDate>Tue, 18 Aug 2026 16:31:33 GMT</pubDate>
            <content:encoded><![CDATA[<p>Sì, ecco, non bestemmiamo, siete in emilia 😄 😄</p>
]]></content:encoded>
            <dc:creator>simoneviaggiatore</dc:creator>
        </item>
        <item>
            <title><![CDATA[Sony hat da ein Fass aufgemacht - Clu | #RipNatenom 🕯]]></title>
            <link>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194015</link>
            <guid>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194015</guid>
            <pubDate>Tue, 18 Aug 2026 14:30:19 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://tube.the-morpheus.de/a/morpheus/video-channels" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>morpheus</span></a></span> Für MacOS ist übrigens die Kombination aus gog und <span><a href="https://mastodon.social/@MacSourcePorts" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>MacSourcePorts</span></a></span> grandios, gerade für die „alten Schätzchen“ 🥰
Game-/Portübersicht: <a href="https://www.macsourceports.com" target="_blank" rel="noopener noreferrer"><span>https://www.</span><span>macsourceports.com</span><span></span></a></p>]]></content:encoded>
            <dc:creator>Clu | #RipNatenom 🕯</dc:creator>
        </item>
        <item>
            <title><![CDATA[Sony hat da ein Fass aufgemacht - Clu | #RipNatenom 🕯]]></title>
            <link>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194014</link>
            <guid>https://peertube2.cpy.re/w/qDRAYgXVY2LkSzK4htDypi;threadId=194014</guid>
            <pubDate>Tue, 18 Aug 2026 14:04:28 GMT</pubDate>
            <content:encoded><![CDATA[<p><span><a href="https://tube.the-morpheus.de/a/morpheus/video-channels" class="u-url mention" target="_blank" rel="noopener noreferrer">@<span>morpheus</span></a></span> Was ein Wahnsinn, mit was für einem Misstrauen und einer Missgunst Unternehmen und Konzerne Ihren Kunden agieren. Ich weiß schon, warum ich die nicht mag.</p><p>Aber sehr schön:
„Ihr habt dieses System tatsächlich sogar in diesem Moment in eurem Browser aktiv, ziemlich sicher sogar. Außer ihr guckt über PeerTube, dann nicht.“
Deshalb liebe ich PeerTube (und finde es klasse, dass du auch dort vertreten bist 🫶).</p><p><a href="https://dizl.de/tags/CorporateGreed" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>CorporateGreed</span></a> <a href="https://dizl.de/tags/Gier" class="mention hashtag" rel="noopener noreferrer" target="_blank">#<span>Gier</span></a></p>]]></content:encoded>
            <dc:creator>Clu | #RipNatenom 🕯</dc:creator>
        </item>
        <item>
            <title><![CDATA[PLB 40 - IA générative, c'est pas Skynet, c'est pire ! - jpp]]></title>
            <link>https://peertube2.cpy.re/w/byKx4MJRvipFZ6hSXGdkZJ;threadId=193978</link>
            <guid>https://peertube2.cpy.re/w/byKx4MJRvipFZ6hSXGdkZJ;threadId=193978</guid>
            <pubDate>Tue, 18 Aug 2026 02:55:59 GMT</pubDate>
            <content:encoded><![CDATA[<p><a href="https://notes.vv221.fr/ia-g%C3%A9n%C3%A9ratives.xhtml" target="_blank" rel="noopener noreferrer">https://notes.vv221.fr/ia-génératives.xhtml</a>                                                                                                                                                                                        Les IA génératives sont un fléau !</p>
]]></content:encoded>
            <dc:creator>jpp</dc:creator>
        </item>
        <item>
            <title><![CDATA[Informatique ou libertés ? [Version 2019] – Lunar - jpp]]></title>
            <link>https://peertube2.cpy.re/w/1XH8yery5LSNpGpi716rxH;threadId=193963</link>
            <guid>https://peertube2.cpy.re/w/1XH8yery5LSNpGpi716rxH;threadId=193963</guid>
            <pubDate>Tue, 18 Aug 2026 00:18:06 GMT</pubDate>
            <content:encoded><![CDATA[<p>j'ai appris son décès malheureusement RIP</p>
]]></content:encoded>
            <dc:creator>jpp</dc:creator>
        </item>
        <item>
            <title><![CDATA[Nextcloud: Dateien hoch-/runterladen (ohne Client) - m23hauke]]></title>
            <link>https://peertube2.cpy.re/w/mEzbnhTdKS7KA5jKyUASqm;threadId=193960</link>
            <guid>https://peertube2.cpy.re/w/mEzbnhTdKS7KA5jKyUASqm;threadId=193960</guid>
            <pubDate>Mon, 17 Aug 2026 20:30:30 GMT</pubDate>
            <content:encoded><![CDATA[<p>@pdl@social.tchncs.de Danke 😃</p>
]]></content:encoded>
            <dc:creator>m23hauke</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 feature-rich ; it serves Media RSS)

query Parameters
accountId
string

limit listing to a specific account

accountName
string

limit listing to a specific account

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

PeerTube >= 4.0 Display only local or remote objects

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

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

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

sort
string
Example: sort=-createdAt

Sort column

videoChannelId
string

limit listing to a specific video channel

videoChannelName
string

limit listing to a specific video channel

Responses

Response samples

Content type
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:podcast="https://podcastindex.org/namespace/1.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>PeerTube Nightly</title>
        <link>https://peertube2.cpy.re</link>
        <description>This instance is a test instance of the PeerTube project. It is updated to the latest commit in the develop branch every business day, 8pm CET.</description>
        <lastBuildDate>Thu, 20 Aug 2026 03:05:12 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/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.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[Press Anie Key to Continue]]></title>
            <link>https://peertube2.cpy.re/w/aKrS8k6ghLA4mTwM82Hwqv</link>
            <guid>https://peertube2.cpy.re/w/aKrS8k6ghLA4mTwM82Hwqv</guid>
            <pubDate>Thu, 20 Aug 2026 00:11:25 GMT</pubDate>
            <description><![CDATA[A game-shaped shitpost I made for an art buddy this past spring. Someone mentioned that it wasn't working for them on mobile, but thankfully there's very little interactivity to begin with. *Now anie-body...]]></description>
            <content:encoded><![CDATA[<p><a href="https://www.huguesross.net/code/aniekey" target="_blank" rel="noopener noreferrer">A game-shaped shitpost</a> I made for an art buddy this past spring. Someone mentioned that it wasn't working for them on mobile, but thankfully there's very little interactivity to begin with. <em>Now anie-body can enjoy this experience!</em></p>
]]></content:encoded>
            <dc:creator>Digital Potato</dc:creator>
            <enclosure length="21488152" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/4ef32b61-a7da-43f8-a404-877ff7a54fdd?videoFileIds=5843606"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/aKrS8k6ghLA4mTwM82Hwqv"/>
            <media:player url="https://peertube2.cpy.re/w/aKrS8k6ghLA4mTwM82Hwqv"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/228b0da4-6c9f-4aed-a1e9-ac83b3c799d0-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/89d61a6b-48a5-4add-a1b9-0d7f8c3f5cca-480.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/13251b22-6ed9-4710-a5f1-47682cace509-360.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/02bbd18b-edfd-45ba-a46b-f61abea9a6d2-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/9d34be55-1d1b-4853-9201-cb2d62e0379d-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/182dbf08-c994-465e-b044-a12995d1a5dc-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5070f0db-3705-46b8-b8ce-dd911cf1fca8-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b2bcfbab-7074-4025-9d9e-09a10938e5c7-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="21488152" url="https://media.tube.tchncs.de/videos/3805440b-5a1b-4ab5-bc66-c0a1a8e779ee-1080.mp4" framerate="60" duration="104" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="4481580" url="https://media.tube.tchncs.de/videos/5d059f9f-a453-4b28-99fa-0597494f136a-480.mp4" framerate="30" duration="104" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="3622702" url="https://media.tube.tchncs.de/videos/487b9082-7568-4acf-b78e-79446c1b9f87-360.mp4" framerate="30" duration="104" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1806738" url="https://media.tube.tchncs.de/videos/a45cbdc6-6cc8-4efe-97ab-0803933e5d98-0.mp4" framerate="0" duration="104" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="21422526" url="https://media.tube.tchncs.de/streaming-playlists/hls/4ef32b61-a7da-43f8-a404-877ff7a54fdd/7da4d701-1049-484f-b6a6-bf03a444354f-1080-fragmented.mp4" framerate="60" duration="104" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="4439546" url="https://media.tube.tchncs.de/streaming-playlists/hls/4ef32b61-a7da-43f8-a404-877ff7a54fdd/4e18d40e-801c-42fa-bbc2-82696ded9f78-480-fragmented.mp4" framerate="30" duration="104" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="3580460" url="https://media.tube.tchncs.de/streaming-playlists/hls/4ef32b61-a7da-43f8-a404-877ff7a54fdd/4c11f097-34f2-442a-93b0-afb408f031b9-360-fragmented.mp4" framerate="30" duration="104" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1810068" url="https://media.tube.tchncs.de/streaming-playlists/hls/4ef32b61-a7da-43f8-a404-877ff7a54fdd/ab607c3a-299c-4573-863a-04951f13e550-0-fragmented.mp4" framerate="0" duration="104" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/66f94404-d270-420c-84da-1304c2a13c41.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Press Anie Key to Continue</media:title>
            <media:description type="plain">A game-shaped shitpost I made for an art buddy this past spring. Someone mentioned that it wasn't working for them on mobile, but thankfully there's very little interactivity to begin with. *Now anie-body...</media:description>
        </item>
        <item>
            <title><![CDATA[Tuto : lanceur à eau !]]></title>
            <link>https://peertube2.cpy.re/w/drP24Vi4TDRLMfDgjLWaFm</link>
            <guid>https://peertube2.cpy.re/w/drP24Vi4TDRLMfDgjLWaFm</guid>
            <pubDate>Wed, 19 Aug 2026 19:06:22 GMT</pubDate>
            <description><![CDATA[Comment fabriquer avec 2 fois rien un pistolet à eau . Parfait pur se rafraichir en samusant lors des étés très chaud]]></description>
            <content:encoded><![CDATA[<p>Comment fabriquer avec 2 fois rien un pistolet à eau . Parfait pur se rafraichir en samusant lors des étés très chaud</p>
]]></content:encoded>
            <dc:creator>emmacrea</dc:creator>
            <category>Entertainment</category>
            <enclosure length="92568939" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/64c83bfa-9491-47b5-bb54-55b5e3ef31de?videoFileIds=5843146"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/drP24Vi4TDRLMfDgjLWaFm"/>
            <media:player url="https://peertube2.cpy.re/w/drP24Vi4TDRLMfDgjLWaFm"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/87d62fc3-bbb8-41f2-9ffa-1d5df3428c74-1080-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="92568939" url="https://tube.benzo.online/static/streaming-playlists/hls/64c83bfa-9491-47b5-bb54-55b5e3ef31de/6d68b182-63de-4b66-8a49-8f8d3a7c8c1b-1080-fragmented.mp4" framerate="30" duration="153" isDefault="true"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/6cdd2dcc-8ca9-4256-b855-fd388dd5fd5d.png" height="157" width="280"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/14bf11a4-22be-484d-b771-4a45c3cb12d1.png" height="480" width="850"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Tuto : lanceur à eau !</media:title>
            <media:description type="plain">Comment fabriquer avec 2 fois rien un pistolet à eau . Parfait pur se rafraichir en samusant lors des étés très chaud</media:description>
        </item>
        <item>
            <title><![CDATA[KHALED’S ODYSSEY, A GAZA GENOCIDE TESTIMONY [SUB-ITA🇮🇹 ]]]></title>
            <link>https://peertube2.cpy.re/w/od8TnTNFfDvwu67kQnjy4q</link>
            <guid>https://peertube2.cpy.re/w/od8TnTNFfDvwu67kQnjy4q</guid>
            <pubDate>Wed, 19 Aug 2026 18:43:58 GMT</pubDate>
            <description><![CDATA[A ‘HUMANITY VIDEO-CALL’ WITH KHALED FROM GAZA IS HE LEGIT? Fanrivista spoke with Khaled Adnan Alzaq, a young man from Gaza studying computer engineering who was forced by the lack of any income to use social media in order to raise some funds ...]]></description>
            <content:encoded><![CDATA[<p>A ‘HUMANITY VIDEO-CALL’ WITH KHALED FROM GAZA</p>
<p>IS HE LEGIT?<br />
Fanrivista spoke with Khaled Adnan Alzaq, a young man from Gaza studying computer engineering who was forced by the lack of any income to use social media in order to raise some funds for his family, starting with diapers for his little brother.</p>
<p>Before the genocidal campaign, when life in #Gaza was busy and “generally normal”, despite the occupation, he considered social networks mainly as a “distraction”. Instagram was also the way we got to know him.</p>
<p>At first we were suspicious. We were asking ourselves: “is this profile real, or is this the umpteenth scammer trying to further profit from the blood of Palestinians, pretending to be one of them?”. After some research, which is better explained in the full interview with him that you can find in the video, we realized that he was really from Gaza, and he had a story to tell, a terrible one, together with a glimpse of hope: us, ‘Westerners’ whom Khaled is grateful to for opposing governments and media complicit in the most recent genocide in history, the first one to be live-streamed. He told us: “You are our only weapon because the resistance is not effective at the moment and we have no tool to put pressure on Israel. There is only you, only you!”.<br />
(...)</p>
<p>FIND THE FULL ARTICLE ON OUR WEBSITE<br />
#FanrivistaEnglish<br />
<a href="https://www.fanrivista.it/2026/08/khaleds-odyssey-gaza-genocide-testimony.html" target="_blank" rel="noopener noreferrer">https://www.fanrivista.it/2026/08/khaleds-odyssey-gaza-genocide-testimony.html</a></p>
<p>DO NOT FORGET TO FOLLOW AND SUPPORT KHALED ON IG!<br />
@khaledadnanalzaq<br />
<a href="https://www.instagram.com/khaledadnanalzaq/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/khaledadnanalzaq/</a></p>
<p>🇮🇹<br />
L’ODISSEA DI KHALED: TESTIMONIANZA DEL GENOCIDIO DI GAZA<br />
LA 'VIDEO-CHIAMATA DELL’UMANITÀ' CON KHALED DA GAZA</p>
<p>È VERO?<br />
Fanrivista ha parlato con Khaled Adnan Alzaq, giovane studente di ingegneria informatica a Gaza, obbligato dalla mancanza di mezzi di sostentamento a usare i social per guadagnare qualcosa e supportare la sua famiglia, cominciando con i pannolini per il suo fratellino.</p>
<p>Prima della campagna genocida, quando la vita a Gaza era “di solito normale”, nonostante l’occupazione, pensava ai social principalmente come una “distrazione”. Instagram è stato anche il mezzo che ci ha fatti incontrare.</p>
<p>All’inizio nutrivamo sospetti. Ci chiedevamo: “ma questo profilo è vero, oppure è l’ennesimo truffatore che si spaccia per uno di Gaza per fare ulteriore profitto sul sangue palestinese?”. Dopo qualche ricerca, spiegata meglio nel video con la sua intervista completa, abbiamo capito che era davvero di Gaza. E aveva una storia da raccontare, terribile, insieme a un barlume di speranza: noi, gli ‘occidentali’ a cui è grato perché ci siamo opposti ai media e ai governi complici nel più recente genocidio della storia, il primo a essere trasmesso in diretta. Ci ha detto: “siete la nostra unica arma perché la resistenza non è efficace al momento e non abbiamo nessuno strumento di pressione su Israele (...) Ci siete solo voi, solo voi!”.<br />
CONTINUA A LEGGERE L’ARTICOLO COMPLETO SUL SITO DI #Fanrivista, La #FanzinaGeneralista<br />
<a href="https://www.fanrivista.it/2026/08/odissea-Khaled-genocidio-Gaza.html" target="_blank" rel="noopener noreferrer">https://www.fanrivista.it/2026/08/odissea-Khaled-genocidio-Gaza.html</a></p>
]]></content:encoded>
            <dc:creator>Politica e attualità</dc:creator>
            <category>Activism</category>
            <enclosure length="960557184" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/b3dad5e7-c974-4a4d-86e3-2a7d9a235f26?videoFileIds=5843114&amp;videoFileIds=5843113"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/od8TnTNFfDvwu67kQnjy4q"/>
            <media:player url="https://peertube2.cpy.re/w/od8TnTNFfDvwu67kQnjy4q"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3887604e-1b1f-48b9-b102-254eff313e30-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/737739f1-ed99-44a6-9207-0b4228ae5d4d-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/597fd34a-7195-4b44-87e8-c532a9c2e3f3-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="74827896" url="https://peertube.uno/static/web-videos/ca76ff20-800c-46b2-a1e2-61a7711cf794-0.mp4" framerate="0" duration="4711" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="885729288" url="https://peertube.uno/static/streaming-playlists/hls/b3dad5e7-c974-4a4d-86e3-2a7d9a235f26/5bd2af78-7393-4a81-868f-8b28ab06e4e2-1080-fragmented.mp4" framerate="24" duration="4711" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="75015202" url="https://peertube.uno/static/streaming-playlists/hls/b3dad5e7-c974-4a4d-86e3-2a7d9a235f26/feac223a-ee60-4d63-a0e2-55de6a902880-0-fragmented.mp4" framerate="0" duration="4711" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/82e5d3ae-3394-449c-b972-17224e5617c9.png" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">KHALED’S ODYSSEY, A GAZA GENOCIDE TESTIMONY [SUB-ITA🇮🇹 ]</media:title>
            <media:description type="plain">A ‘HUMANITY VIDEO-CALL’ WITH KHALED FROM GAZA IS HE LEGIT? Fanrivista spoke with Khaled Adnan Alzaq, a young man from Gaza studying computer engineering who was forced by the lack of any income to use social media in order to raise some funds ...</media:description>
        </item>
        <item>
            <title><![CDATA[QUAND LE GOUVERNEMENT S'EN PREND AUX MALADES EN CACHETTE]]></title>
            <link>https://peertube2.cpy.re/w/qmYyZd7jNQR39dLs39TzbJ</link>
            <guid>https://peertube2.cpy.re/w/qmYyZd7jNQR39dLs39TzbJ</guid>
            <pubDate>Wed, 19 Aug 2026 18:00:19 GMT</pubDate>
            <description><![CDATA[⚠️ SAUVEZ LE MÉDIA, DEVENEZ DONATEUR MENSUEL : 👉 https://lmdtv.fr/capsur10k-youtube 🔴 Soutenez le Média ! 👉 https://soutenez.lemediatv.fr (CB - SEPA - Chèque) ⚠️ Le Média est également diffusé sur le canal 165 de la Freebox, sur le canal 257 d...]]></description>
            <content:encoded><![CDATA[<p>⚠️ SAUVEZ LE MÉDIA, DEVENEZ DONATEUR MENSUEL : 👉 <a href="https://lmdtv.fr/capsur10k-youtube" target="_blank" rel="noopener noreferrer">https://lmdtv.fr/capsur10k-youtube</a></p>
<p>🔴 Soutenez le Média ! 👉 <a href="https://soutenez.lemediatv.fr" target="_blank" rel="noopener noreferrer">https://soutenez.lemediatv.fr</a> (CB - SEPA - Chèque)<br />
⚠️ Le Média est également diffusé sur le canal 165 de la Freebox, sur le canal 257 de la Livebox (Orange) et sur le bouquet GRATUIT de l'application Molotov TV.</p>
<p>Le gouvernement cherche des milliards d’euros d’économies et la santé est en première ligne. Mais derrière les annonces budgétaires se cache une question essentielle:  qui va  payer ?</p>
<p>Doublement du plafond annuel des franchises médicales, baisse des remboursements de certains médicaments, diminution de la prise en charge de certains soins dentaires, actes paramédicaux ou transports sanitaire. Le reste à charge des patients risque de s’alourdir. Les malades et les plus précaires sont encore en première ligne…</p>
<p>Suivez Le Média sur sa seconde chaîne Youtube :<br />
👉 <a href="https://www.youtube.com/@LeM%C3%A9dia24-7" target="_blank" rel="noopener noreferrer">https://www.youtube.com/@LeMédia24-7</a></p>
<p>👉 Pour recevoir les dernières actualités, le résumé de la semaine et être alerté des derniers programmes publiés du Média, directement dans votre boîte e-mail.<br />
<a href="https://newsletter.lemediatv.fr" target="_blank" rel="noopener noreferrer">https://newsletter.lemediatv.fr</a></p>
<p>▶ Soutenez Le Média :<br />
👉 <a href="https://soutenez.lemediatv.fr" target="_blank" rel="noopener noreferrer">https://soutenez.lemediatv.fr</a> (CB - SEPA - Chèque)<br />
👉 <a href="https://dons.lemediatv.fr" target="_blank" rel="noopener noreferrer">https://dons.lemediatv.fr</a> (CB - SEPA - Chèque)<br />
👉 <a href="https://fr.tipeee.com/le-media" target="_blank" rel="noopener noreferrer">https://fr.tipeee.com/le-media</a> (CB - Paypal)</p>
<p>✅  Suivez-nous :<br />
Instagram : <a href="https://www.instagram.com/lemedia_tv/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/lemedia_tv/</a><br />
Facebook : <a href="http://bit.ly/FacebookLeMedia" target="_blank" rel="noopener noreferrer">http://bit.ly/FacebookLeMedia</a><br />
BlueSky : <a href="https://bsky.app/profile/lemediatv.bsky.social" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/lemediatv.bsky.social</a><br />
Youtube : <a href="http://bit.ly/YouTubeLeMedia" target="_blank" rel="noopener noreferrer">http://bit.ly/YouTubeLeMedia</a><br />
Peertube : <a href="https://video.lemediatv.fr" target="_blank" rel="noopener noreferrer">https://video.lemediatv.fr</a><br />
Telegram :  <a href="https://t.me/LeMediaOfficiel" target="_blank" rel="noopener noreferrer">https://t.me/LeMediaOfficiel</a><br />
TikTok : <a href="https://www.tiktok.com/@lemediatv" target="_blank" rel="noopener noreferrer">https://www.tiktok.com/@lemediatv</a></p>
<p>Rejoignez la communauté des Socios !</p>
]]></content:encoded>
            <dc:creator>Le Média</dc:creator>
            <enclosure length="64923986" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/c54910a1-1e01-45aa-bcfd-114ff18b1a4a?videoFileIds=5843020"/>
            <media:community>
                <media:statistics views="17"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/qmYyZd7jNQR39dLs39TzbJ"/>
            <media:player url="https://peertube2.cpy.re/w/qmYyZd7jNQR39dLs39TzbJ"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/948e28ba-c63d-4824-8cee-3f5ac98d3681-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/534477fa-6cad-46ea-98c2-a0d7c308712d-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/87795ae5-ed7b-434b-b993-365732743c9e-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c32f0efc-a431-489b-b44a-ff2a7c3bbf39-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/57d7df09-9b85-484c-9330-5f847a697634-240-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="14585797" url="https://cdn.octos3.fr/peertube-mtv/web-videos/f0eff5b5-7cfd-497a-9c21-bf0d134ab645-0.mp4" framerate="0" duration="469" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="64923986" url="https://cdn.octos3.fr/peertube-mtv/streaming-playlists/hls/c54910a1-1e01-45aa-bcfd-114ff18b1a4a/9cbabf49-7245-4891-b6bc-488744f38a35-1080-fragmented.mp4" framerate="25" duration="469" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="38307909" url="https://cdn.octos3.fr/peertube-mtv/streaming-playlists/hls/c54910a1-1e01-45aa-bcfd-114ff18b1a4a/7f102c49-a085-4e07-8af1-25b08065b42c-720-fragmented.mp4" framerate="25" duration="469" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="19669715" url="https://cdn.octos3.fr/peertube-mtv/streaming-playlists/hls/c54910a1-1e01-45aa-bcfd-114ff18b1a4a/ebe48fda-56fe-43ef-b6b3-d5e070088f9e-360-fragmented.mp4" framerate="25" duration="469" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="14379743" url="https://cdn.octos3.fr/peertube-mtv/streaming-playlists/hls/c54910a1-1e01-45aa-bcfd-114ff18b1a4a/6c22abb7-253e-4c9f-824e-b362e4ea553a-240-fragmented.mp4" framerate="25" duration="469" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/243df6ed-36ab-4b0b-8bac-1ea309fb1a3e.webp" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">QUAND LE GOUVERNEMENT S'EN PREND AUX MALADES EN CACHETTE</media:title>
            <media:description type="plain">⚠️ SAUVEZ LE MÉDIA, DEVENEZ DONATEUR MENSUEL : 👉 https://lmdtv.fr/capsur10k-youtube 🔴 Soutenez le Média ! 👉 https://soutenez.lemediatv.fr (CB - SEPA - Chèque) ⚠️ Le Média est également diffusé sur le canal 165 de la Freebox, sur le canal 257 d...</media:description>
        </item>
        <item>
            <title><![CDATA[Quand Jancovici calmait les ardeurs d'Attal par médias interposés]]></title>
            <link>https://peertube2.cpy.re/w/ihEN421f3BdgWHwuXoYc1d</link>
            <guid>https://peertube2.cpy.re/w/ihEN421f3BdgWHwuXoYc1d</guid>
            <pubDate>Wed, 19 Aug 2026 18:00:09 GMT</pubDate>
            <description><![CDATA[Gabriel Attal fait sa campagne pour 2027, il m'a semblé important de rappeler à quel point il manipulait l'information dans un but électoral lorsqu'il était Premier Ministre. Petite mise au point du président du Shift Project, expert énergie-clima...]]></description>
            <content:encoded><![CDATA[<p>Gabriel Attal fait sa campagne pour 2027, il m'a semblé important de rappeler à quel point il manipulait l'information dans un but électoral lorsqu'il était Premier Ministre. Petite mise au point du président du Shift Project, expert énergie-climat, Jean-Marc Jancovici.</p>
<p>Réduire la qualité de la vidéo.</p>
<p>Découvrir le travail du Shift Project <a href="https://theshiftproject.org/" target="_blank" rel="noopener noreferrer">https://theshiftproject.org/</a><br />
S'abonner à la chaîne <a href="https://www.youtube.com/@rtl_france" target="_blank" rel="noopener noreferrer">https://www.youtube.com/@rtl_france</a></p>
<p>Pour changer le système :<br />
Réclamer le RIC constituant : <a href="https://www.mouvement-constituant-populaire.fr/" target="_blank" rel="noopener noreferrer">https://www.mouvement-constituant-populaire.fr/</a><br />
Changer de banque: <a href="https://www.lanef.com/" target="_blank" rel="noopener noreferrer">https://www.lanef.com/</a> <a href="https://change-de-banque.org/particulier/" target="_blank" rel="noopener noreferrer">https://change-de-banque.org/particulier/</a><br />
Passer à l'action militante: <a href="https://extinctionrebellion.fr/" target="_blank" rel="noopener noreferrer">https://extinctionrebellion.fr/</a> <a href="https://ripostealimentaire.fr/" target="_blank" rel="noopener noreferrer">https://ripostealimentaire.fr/</a><br />
Changer de travail : <a href="https://jobs.makesense.org/fr" target="_blank" rel="noopener noreferrer">https://jobs.makesense.org/fr</a></p>
<p>Sources<br />
Intro Attal <a href="https://www.boursorama.com/videos/actualites/les-emissions-de-gaz-a-effet-de-serre-en-baisse-de-5-8-en-france-en-2023-annonce-attal-9ec45d3e234fd7cc541ce776fc2119ad" target="_blank" rel="noopener noreferrer">https://www.boursorama.com/videos/actualites/les-emissions-de-gaz-a-effet-de-serre-en-baisse-de-5-8-en-france-en-2023-annonce-attal-9ec45d3e234fd7cc541ce776fc2119ad</a><br />
Janco RTL <a href="https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900388237-peut-on-se-rejouir-de-la-baisse-des-emissions-de-co2-en-france-la-reponse-de-jean-marc-jancovici" target="_blank" rel="noopener noreferrer">https://www.rtl.fr/programmes/on-refait-la-planete-rtl/7900388237-peut-on-se-rejouir-de-la-baisse-des-emissions-de-co2-en-france-la-reponse-de-jean-marc-jancovici</a><br />
Musique <a href="https://www.youtube.com/watch?v=39PVEaSytpo" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=39PVEaSytpo</a></p>
<p>Réponses au quiz de fin :</p>
<p>/!\ Description à ne pas lire avant d'avoir vu la vidéo entièrement<br />
/!\</p>
<p>/!\</p>
<p>/!\<br />
/!\</p>
<p>Quelles sont les raisons des baisses des émissions dans l'industrie ?<br />
Baisse de production due à l'inflation énergétique.</p>
<p>Quel est l'angle mort dans la comptabilité gouvernementale ?<br />
On ne calcule pas les émissions importées.</p>
<p>Quel est le sens de l'histoire de la lutte contre le réchauffement climatique ?<br />
Baisser les émissions de CO2 année après année jsuqu'à ce qu'on n'en émette plus du tout.</p>
<p>#jancovici #attal #écologie #politique #extrait #ethiqueettac</p>
]]></content:encoded>
            <dc:creator>ethique_et_tac</dc:creator>
            <enclosure length="27456138" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/8bff2a4a-0604-466e-9e78-de46ac29c918?videoFileIds=5843105"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/ihEN421f3BdgWHwuXoYc1d"/>
            <media:player url="https://peertube2.cpy.re/w/ihEN421f3BdgWHwuXoYc1d"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/7331328c-5e37-4b56-9415-318d92923a69-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6ac85e90-6c9c-4654-b3bd-2a9d3515b08b-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/abc2fc56-bc51-4d16-a5fc-700a82922cfd-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/82aeeb7f-4d76-4f1b-b9a7-2d081fc93990-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b2ab1b95-0e55-4863-b0e9-683e48fde354-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/92322723-7555-4191-8edf-6bfdbc79abbc-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="7378246" url="https://static.indymotion.fr/web-videos/fbf18047-5803-4f12-a885-10b5abc0c4d0-0.mp4" framerate="0" duration="229" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="27456138" url="https://static.indymotion.fr/streaming-playlists/hls/8bff2a4a-0604-466e-9e78-de46ac29c918/c505dbcb-bdae-4079-94a9-0601a3088cad-1080-fragmented.mp4" framerate="25" duration="229" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="17047754" url="https://static.indymotion.fr/streaming-playlists/hls/8bff2a4a-0604-466e-9e78-de46ac29c918/d3c280d5-a02c-42dc-8d1b-c577688c07d1-720-fragmented.mp4" framerate="25" duration="229" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="11495602" url="https://static.indymotion.fr/streaming-playlists/hls/8bff2a4a-0604-466e-9e78-de46ac29c918/312baa38-73a0-4f13-894a-b650d84b4ac5-480-fragmented.mp4" framerate="25" duration="229" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="6577021" url="https://static.indymotion.fr/streaming-playlists/hls/8bff2a4a-0604-466e-9e78-de46ac29c918/d9782315-b0b3-4c1c-b43d-8ef8278ef102-240-fragmented.mp4" framerate="25" duration="229" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="3835212" url="https://static.indymotion.fr/streaming-playlists/hls/8bff2a4a-0604-466e-9e78-de46ac29c918/109698f4-b9e9-48d1-a121-4857fb8f1a9a-0-fragmented.mp4" framerate="0" duration="229" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/ed290d93-4048-4aed-afa1-d5873d70aac0.webp" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Quand Jancovici calmait les ardeurs d'Attal par médias interposés</media:title>
            <media:description type="plain">Gabriel Attal fait sa campagne pour 2027, il m'a semblé important de rappeler à quel point il manipulait l'information dans un but électoral lorsqu'il était Premier Ministre. Petite mise au point du président du Shift Project, expert énergie-clima...</media:description>
        </item>
        <item>
            <title><![CDATA[Invasion On The Clone Base]]></title>
            <link>https://peertube2.cpy.re/w/8btwtB3DXoGimsfy2t6x1Y</link>
            <guid>https://peertube2.cpy.re/w/8btwtB3DXoGimsfy2t6x1Y</guid>
            <pubDate>Wed, 19 Aug 2026 17:47:43 GMT</pubDate>
            <dc:creator>Fett Productions</dc:creator>
            <enclosure length="12460170" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/3a265f19-46e6-4471-afe4-a84f34e811ac?videoFileIds=5842952"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/8btwtB3DXoGimsfy2t6x1Y"/>
            <media:player url="https://peertube2.cpy.re/w/8btwtB3DXoGimsfy2t6x1Y"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b495b7c5-8684-4491-b50a-3a94329a12c4-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/52c172a1-09c4-404a-bd5c-9ade53ccbc6e-720.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3122a05d-83c4-4e30-ac2c-fa059b170ff5-480.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/afc918c8-98d1-4696-b1dc-cecc91cc7d34-360.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c0d12c5e-236c-4622-8065-2becab68ce63-240.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4d033915-c824-4e9c-8f87-4b7c7f6fdbff-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/12405fdf-abf5-4448-82d4-96f211f46fce-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/b8eb1e1d-9893-4419-8ec7-8660d912e4fc-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ab4b4663-6d12-4338-b41d-095a1415845f-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/abd743db-3f52-4514-ad64-3b8dcb4f8abc-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ba53e9ed-f194-4fb8-aa27-224bd8db6d1d-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/64f99b86-6f0c-4031-b853-6e894b4ba075-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="12460170" url="https://toobnix.org/static/web-videos/1766ff47-3d3c-4df9-9bcf-689158add388-1080.mp4" framerate="12" duration="38" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="6157447" url="https://toobnix.org/static/web-videos/07103aa7-f874-41c0-85d4-445c0699a7db-720.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="3270977" url="https://toobnix.org/static/web-videos/21aebe9f-f040-49e1-bc09-cdba8d44b334-480.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="2425255" url="https://toobnix.org/static/web-videos/a13c81ce-98c9-4100-a32f-0f3becf51c32-360.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="1522419" url="https://toobnix.org/static/web-videos/32861084-b400-4490-9405-9d3098492ec4-240.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="557002" url="https://toobnix.org/static/web-videos/d5cbe3be-4ddd-43e8-8866-3bd703225630-0.mp4" framerate="0" duration="38" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="12456520" url="https://toobnix.org/static/streaming-playlists/hls/3a265f19-46e6-4471-afe4-a84f34e811ac/5ef4d518-a157-46ae-b3fc-88d24cec1256-1080-fragmented.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="6153729" url="https://toobnix.org/static/streaming-playlists/hls/3a265f19-46e6-4471-afe4-a84f34e811ac/dfa6e8c9-cfee-47db-8966-01776153c46f-720-fragmented.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="3267367" url="https://toobnix.org/static/streaming-playlists/hls/3a265f19-46e6-4471-afe4-a84f34e811ac/2903ed85-4b85-4adb-a84d-d9e56fc79731-480-fragmented.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="2421577" url="https://toobnix.org/static/streaming-playlists/hls/3a265f19-46e6-4471-afe4-a84f34e811ac/6e1def35-a5cd-4584-a438-701cb1f9a847-360-fragmented.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="1518781" url="https://toobnix.org/static/streaming-playlists/hls/3a265f19-46e6-4471-afe4-a84f34e811ac/0749e276-cdfb-443f-aff9-30706f31463c-240-fragmented.mp4" framerate="12" duration="38" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="558908" url="https://toobnix.org/static/streaming-playlists/hls/3a265f19-46e6-4471-afe4-a84f34e811ac/05a42613-ae93-42fd-8ae3-783fac3efa66-0-fragmented.mp4" framerate="0" duration="38" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/ca78afe5-c0c3-4c51-aa6f-4f04e0ffaef5.jpg" height="157" width="280"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/a37ffdf6-30b1-492a-8385-44f779f4d5ca.jpg" height="480" width="850"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Invasion On The Clone Base</media:title>
        </item>
        <item>
            <title><![CDATA[Sarkozy en prison = la fin de l'état de droit ?]]></title>
            <link>https://peertube2.cpy.re/w/3HwhyzGVy7ju5rHcSnRhdz</link>
            <guid>https://peertube2.cpy.re/w/3HwhyzGVy7ju5rHcSnRhdz</guid>
            <pubDate>Wed, 19 Aug 2026 17:34:02 GMT</pubDate>
            <description><![CDATA[Apprenez facilement une langue étrangère grâce à Rosetta Stone Sapphire  https://partners.rosettastone.com/vousavezledroit-2 POUR EN SAVOIR PLUS, APPUYEZ SUR "AFFICHER PLUS" ➡️➡️➡️➡️➡️ Merci aux donatrices et donateurs qui ont rendu cette vidéo p...]]></description>
            <content:encoded><![CDATA[<p>Apprenez facilement une langue étrangère grâce à Rosetta Stone Sapphire  <a href="https://partners.rosettastone.com/vousavezledroit-2" target="_blank" rel="noopener noreferrer">https://partners.rosettastone.com/vousavezledroit-2</a><br />
POUR EN SAVOIR PLUS, APPUYEZ SUR "AFFICHER PLUS" ➡️➡️➡️➡️➡️</p>
<p>Merci aux donatrices et donateurs qui ont rendu cette vidéo possible (la liste est en fin de description 👇🏻)<br />
Vous pouvez soutenir l'aventure ici ↙<br />
🔗 Tipeee :  <a href="https://fr.tipeee.com/vousavezledroit" target="_blank" rel="noopener noreferrer">https://fr.tipeee.com/vousavezledroit</a><br />
🔗 Patreon : <a href="https://www.patreon.com/c/vousavezledroit" target="_blank" rel="noopener noreferrer">https://www.patreon.com/c/vousavezledroit</a><br />
🔗 Paypal : <a href="https://paypal.me/vousavezledroit" target="_blank" rel="noopener noreferrer">https://paypal.me/vousavezledroit</a><br />
🔗 La boutique : <a href="https://www.youtube.com/c/Vousavezledroit/store" target="_blank" rel="noopener noreferrer">https://www.youtube.com/c/Vousavezledroit/store</a></p>
<p>Pour nous contacter, Tricottine et moi :<br />
Vous avez le droit - B.P. 22 -  37160 Descartes - France</p>
<p>=======SOURCES &amp; LECTURES=======<br />
🔗 Une vidéo du Parisien : <a href="https://www.youtube.com/watch?v=nkEnmIpcQrY" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=nkEnmIpcQrY</a><br />
🔗 Yoon Suk-yeol condamné à perpétuité : <a href="https://tinyurl.com/3wwzu6sr" target="_blank" rel="noopener noreferrer">https://tinyurl.com/3wwzu6sr</a><br />
🔗  Berlusconi : un habitué des tribunaux, pas des prisons :  <a href="https://www.youtube.com/watch?v=CHBqKSGlihQ" target="_blank" rel="noopener noreferrer">https://www.youtube.com/watch?v=CHBqKSGlihQ</a></p>
<p>=======ERRATA=======<br />
corrections<br />
05:17 présidents péruviens, pas brésiliens</p>
<p>====================================================================<br />
🛎️ Pour ne rien rater, pensez à vous ABONNER et à ACTIVER LA PETITE CLOCHE 🛎️<br />
🔗 Les lives sur Twitch : <a href="https://www.twitch.tv/vousavezledroit" target="_blank" rel="noopener noreferrer">https://www.twitch.tv/vousavezledroit</a><br />
🔗 Le discord : <a href="https://discord.gg/q727hr8P7t" target="_blank" rel="noopener noreferrer">https://discord.gg/q727hr8P7t</a><br />
🔗 La chaine secondaire  : <a href="https://www.youtube.com/@vousnavezpasledroit" target="_blank" rel="noopener noreferrer">https://www.youtube.com/@vousnavezpasledroit</a><br />
🔗 <a href="https://bsky.app/profile/vousavezledroit.bsky.social" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/vousavezledroit.bsky.social</a><br />
🔗 Mastodon : <a href="http://mamot.fr/@vousavezledroit" target="_blank" rel="noopener noreferrer">http://mamot.fr/@vousavezledroit</a><br />
🔗 Facebook (page de fans) : <a href="https://www.facebook.com/VousAvezLeDroitPageFan" target="_blank" rel="noopener noreferrer">https://www.facebook.com/VousAvezLeDroitPageFan</a><br />
🔗 Instagram (page de fans) : <a href="https://www.instagram.com/vousavezledroit_/?hl=fr" target="_blank" rel="noopener noreferrer">https://www.instagram.com/vousavezledroit_/?hl=fr</a></p>
<p>=======CREDITS=======<br />
Production : Sébastien Canévet<br />
Animations &amp; Montage : Banniwam<br />
Modération (commentaires) : Handymanon, Philémon Mavercoin, Patate Bionic<br />
Musique du générique : Reprise  par Alexandre Moonwell</p>
<p>=====LISTE DES DONATRICES ET DONATEURS ====<br />
Alekshar, André Fourtier, Anoldor, Anskess, Antigone, Antoine T, Ascho, Astrobax, Asuma, Aurélien, BB_Feta, Bethany77, Bobylou, Cement5452, Claude Romain, Clauper, Clément Garchery, Corwin, Dandelionmood, Delance, Delphineprof, Dimitri, Eibu, Emilie, Emmanuel Militon, Eric, ETimS, Fab_Ortuno, Fjanvier, Flo-rat-le, François, François B, Guilhem, Guillaume L, Guimack, Gux, Gwen, Hervé COSTIL, Il-presidente, Jaco512, Jean AIMARD, Jeremie, Jimih 6703, Joce, Julie, Julien, K_lep, Karine à Berlin, LCh78, Léo, LeSourdre, Ludwig, M_9, Marielle.dumont, Matsama, Matt, Michael, Morziloeil M, MrPhy14, Naga_partout, Nanstremouilles, Nicolas, Olivier Jacquemin, Orpheas, P'titMat, Paméla, Pastoinou, Patate, Perroway, Philip Masse, Pieralb, Pierreonthenet, Pilote37, Polytopal, Ppet3765, R373, Rémy, River Champeimont, Romain BONNINGUE, Romifla, Samuel Vimaire, Sarvhangel, Savanturier, Sébas, Sébastien (sbeccompany.fr), SharkCrazy7, SKBo, Ssitnam, Sterrier, Supertonio, SyCo', Tlaf, Trémouilles, Ugo, Vin Cent, Vitetrouveunnomcool, YBau, Yza, Zal, Zap<br />
#VousAvezLeDroit</p>
]]></content:encoded>
            <dc:creator>vous_avez_le_droit</dc:creator>
            <enclosure length="218838528" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/15fe6f9f-1d55-41d9-bbae-81af71895691?videoFileIds=5843032"/>
            <media:community>
                <media:statistics views="5"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/3HwhyzGVy7ju5rHcSnRhdz"/>
            <media:player url="https://peertube2.cpy.re/w/3HwhyzGVy7ju5rHcSnRhdz"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/17fc17b3-71fb-4cf8-8380-00f1fd6b5509-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/7aae5c01-a453-41b2-9180-868302a3b185-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/bcb77e8d-1c9d-4022-bda3-740845ee0988-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c6202962-1be6-451a-b6fe-393bb244a6e7-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0bd46e24-4d54-4a0b-b2ab-6a6a2977749e-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/7489ab7a-76f0-4e97-9987-7065d011cb1e-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="36098940" url="https://static.indymotion.fr/web-videos/75bf95f6-ec0e-404d-9fd8-1aecc20cf44e-0.mp4" framerate="0" duration="1160" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="218838528" url="https://static.indymotion.fr/streaming-playlists/hls/15fe6f9f-1d55-41d9-bbae-81af71895691/700b40e9-2e44-4614-8967-cf7d4671e75a-1080-fragmented.mp4" framerate="25" duration="1160" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="166187050" url="https://static.indymotion.fr/streaming-playlists/hls/15fe6f9f-1d55-41d9-bbae-81af71895691/dcfa41f6-0248-4a83-bc46-5651cfd5bb8a-720-fragmented.mp4" framerate="25" duration="1160" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="103784108" url="https://static.indymotion.fr/streaming-playlists/hls/15fe6f9f-1d55-41d9-bbae-81af71895691/15e92aa5-cd7b-4cfe-9ef7-16210b292e70-480-fragmented.mp4" framerate="25" duration="1160" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="51873193" url="https://static.indymotion.fr/streaming-playlists/hls/15fe6f9f-1d55-41d9-bbae-81af71895691/d6da99dc-99aa-4c11-bfc9-18585da2f8a8-240-fragmented.mp4" framerate="25" duration="1160" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="18739694" url="https://static.indymotion.fr/streaming-playlists/hls/15fe6f9f-1d55-41d9-bbae-81af71895691/0192f0f5-a3ea-423d-ac70-bc6720846380-0-fragmented.mp4" framerate="0" duration="1160" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/ed3b70d0-504d-441b-9f01-7c96f3c26f28.webp" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Sarkozy en prison = la fin de l'état de droit ?</media:title>
            <media:description type="plain">Apprenez facilement une langue étrangère grâce à Rosetta Stone Sapphire  https://partners.rosettastone.com/vousavezledroit-2 POUR EN SAVOIR PLUS, APPUYEZ SUR "AFFICHER PLUS" ➡️➡️➡️➡️➡️ Merci aux donatrices et donateurs qui ont rendu cette vidéo p...</media:description>
        </item>
        <item>
            <title><![CDATA[Les biocarburants peuvent-ils remplacer le pétrole ?]]></title>
            <link>https://peertube2.cpy.re/w/7FGjoDpCVy4Thwowpx2i7L</link>
            <guid>https://peertube2.cpy.re/w/7FGjoDpCVy4Thwowpx2i7L</guid>
            <pubDate>Wed, 19 Aug 2026 16:06:42 GMT</pubDate>
            <description><![CDATA[💥 Le Greenletter Club est 100% indépendant, pour nous aider, c'est ici 👉 https://bit.ly/3QuCIp5 La transition énergétique devait nous libérer de notre dépendance au pétrole. Pourtant, en se tournant vers les biocarburants pour faire rouler nos ...]]></description>
            <content:encoded><![CDATA[<p>💥 Le Greenletter Club est 100% indépendant, pour nous aider, c'est ici 👉 <a href="https://bit.ly/3QuCIp5" target="_blank" rel="noopener noreferrer">https://bit.ly/3QuCIp5</a></p>
<p>La transition énergétique devait nous libérer de notre dépendance au pétrole. Pourtant, en se tournant vers les biocarburants pour faire rouler nos véhicules et voler nos avions, une nouvelle bataille mondiale s'est engagée. Entre la monopolisation des surfaces arables, la concurrence directe avec l'alimentation humaine et l'assèchement des ressources en eau, l'or vert révèle une réalité brutale. Ses enjeux de souveraineté attisent les appétits industriels. D'où cette question : les biocarburants sont-ils vraiment le remède miracle pour sauver notre climat, ou la promesse d'une nouvelle crise écologique et alimentaire sans précédent ?</p>
<p>Dans cet épisode, on a eu le plaisir d'échanger avec Simon Susan, spécialiste auprès de l'ONG Transports et Environnement.</p>
<p>Interview : Maxime Thuillez<br />
Montage : Wilfried Kaiser</p>
<p>CHAPITRAGE :<br />
00:00 : Introduction<br />
00:48 : Les biocarburants dans le monde<br />
02:50 : Les grandes zones de production de biocarburants<br />
04:30 : Part des biocarburants dans le transport mondial<br />
05:04 : Surface dédiée à la culture des biocarburants<br />
08:32 : À la pompe en France et en Europe<br />
11:00 : Le bioéthanol<br />
12:39 : Prix compétitif ?<br />
18:22 : Le parc automobile va se réinventer ?<br />
20:08 : Impact sur l'environnement<br />
25:16 : Plus de carburant et moins d'aliment ?<br />
27:28 : Consommation d'eau des biocarburants<br />
30:33 : Utilisation des surfaces arables<br />
35:32 : Biocarburants et souveraineté<br />
38:01 : Qu'est-ce qui constitue les carburants de deuxième génération ?<br />
42:21 : Consommation de graisses animales<br />
46:44 : Industries maritimes et aériennes<br />
49:38 : Les SAF<br />
52:24 : Qui a intérêt à développer les biocarburants ?<br />
57:40 : Ampleur des fraudes<br />
01:05:54 : Projet de biocarburant avancé<br />
01:10:23 : Conclusion</p>
]]></content:encoded>
            <dc:creator>green_letter_club</dc:creator>
            <enclosure length="664275967" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/3621af6d-ec81-43ca-9017-3fde8c0705e4?videoFileIds=5843118"/>
            <media:community>
                <media:statistics views="2"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/7FGjoDpCVy4Thwowpx2i7L"/>
            <media:player url="https://peertube2.cpy.re/w/7FGjoDpCVy4Thwowpx2i7L"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/03669784-a220-49a7-8b27-0851795b3cc7-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/88ee1e4d-ab80-4daa-b725-aef5999f8847-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8df46f52-e4ec-4780-abcb-3a95e8965058-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cd4059ee-4f12-4d86-b76a-f69c770e9d60-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ca89aa66-9ec5-45ab-bdc6-9e5a0c26d05e-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5a2e874f-5c9a-4320-a002-703bb76f9088-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="141395058" url="https://static.indymotion.fr/web-videos/2f9ed974-4737-4d00-9976-e85c659ae6e4-0.mp4" framerate="0" duration="4416" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="664275967" url="https://static.indymotion.fr/streaming-playlists/hls/3621af6d-ec81-43ca-9017-3fde8c0705e4/1fde4e9d-524e-4004-af2e-6143a437db92-1080-fragmented.mp4" framerate="25" duration="4416" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="379278829" url="https://static.indymotion.fr/streaming-playlists/hls/3621af6d-ec81-43ca-9017-3fde8c0705e4/898ad1d6-1574-4b59-87a8-d0b8c35b23b5-720-fragmented.mp4" framerate="25" duration="4416" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="242463052" url="https://static.indymotion.fr/streaming-playlists/hls/3621af6d-ec81-43ca-9017-3fde8c0705e4/30f54dca-82dd-4c97-887b-0ec814e4923f-480-fragmented.mp4" framerate="25" duration="4416" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="136228144" url="https://static.indymotion.fr/streaming-playlists/hls/3621af6d-ec81-43ca-9017-3fde8c0705e4/db136071-de1e-4ac4-a75d-1059b9017903-240-fragmented.mp4" framerate="25" duration="4416" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="71321417" url="https://static.indymotion.fr/streaming-playlists/hls/3621af6d-ec81-43ca-9017-3fde8c0705e4/04dc3102-9d60-4150-96dc-5e3e5f45bf60-0-fragmented.mp4" framerate="0" duration="4416" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/9a17665f-d1ea-4eb2-883e-94697882d881.webp" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Les biocarburants peuvent-ils remplacer le pétrole ?</media:title>
            <media:description type="plain">💥 Le Greenletter Club est 100% indépendant, pour nous aider, c'est ici 👉 https://bit.ly/3QuCIp5 La transition énergétique devait nous libérer de notre dépendance au pétrole. Pourtant, en se tournant vers les biocarburants pour faire rouler nos ...</media:description>
        </item>
        <item>
            <title><![CDATA[Canicule en prison : de la torture institutionnalisée]]></title>
            <link>https://peertube2.cpy.re/w/6fBzHf8NBdH3rH9Tqxt4jG</link>
            <guid>https://peertube2.cpy.re/w/6fBzHf8NBdH3rH9Tqxt4jG</guid>
            <pubDate>Wed, 19 Aug 2026 16:00:06 GMT</pubDate>
            <description><![CDATA[Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir Peut-on vivre une canicule en prison comme n'importe où ailleurs ? Dans cet entretien, la chercheuse et autrice Hélène Nogues-Brunet revient sur son livre "Surveille...]]></description>
            <content:encoded><![CDATA[<p>Soutenez Blast, nouveau média indépendant : <a href="https://www.blast-info.fr/soutenir" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/soutenir</a></p>
<p>Peut-on vivre une canicule en prison comme n'importe où ailleurs ? Dans cet entretien, la chercheuse et autrice Hélène Nogues-Brunet revient sur son livre "Surveiller, punir et réinsérer en Anthropocène", qui relit le travail de Michel Foucault à l'aune du dérèglement climatique : surpopulation carcérale, accès à l'eau et redirection écologique.</p>
<p>Journaliste : Ibrahim Benaissa<br />
Montage : Sandra Perrin<br />
Son : Baptiste Veilhan, Théo Duchesne<br />
Graphisme : Morgane Sabouret, Margaux Simon<br />
Production : Hicham Tragha<br />
Directeur du développement des collaborations extérieures : Mathias Enthoven<br />
Co-directrice de la rédaction : Soumaya Benaïssa<br />
Directeur de la publication : Denis Robert</p>
<p>Le site : <a href="https://www.blast-info.fr/" target="_blank" rel="noopener noreferrer">https://www.blast-info.fr/</a><br />
Facebook : <a href="https://www.facebook.com/blastofficiel" target="_blank" rel="noopener noreferrer">https://www.facebook.com/blastofficiel</a><br />
Twitter : <a href="https://twitter.com/blast_france" target="_blank" rel="noopener noreferrer">https://twitter.com/blast_france</a><br />
Instagram : <a href="https://www.instagram.com/blastofficiel/" target="_blank" rel="noopener noreferrer">https://www.instagram.com/blastofficiel/</a><br />
Mastodon : <a href="https://mamot.fr/web/@blast_info" target="_blank" rel="noopener noreferrer">https://mamot.fr/web/@blast_info</a><br />
Peertube : <a href="https://video.blast-info.fr/" target="_blank" rel="noopener noreferrer">https://video.blast-info.fr/</a><br />
Twitch : <a href="https://www.twitch.tv/blastinfo" target="_blank" rel="noopener noreferrer">https://www.twitch.tv/blastinfo</a><br />
Bluesky : <a href="https://bsky.app/profile/blast-info.fr" target="_blank" rel="noopener noreferrer">https://bsky.app/profile/blast-info.fr</a></p>
<p>#prison<br />
#canicule<br />
#société</p>
]]></content:encoded>
            <dc:creator>blast, le souffle de l’info</dc:creator>
            <enclosure length="398898525" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/2a8808a6-6d36-41a2-9b95-11b0fc787f90?videoFileIds=5842833"/>
            <media:community>
                <media:statistics views="34"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/6fBzHf8NBdH3rH9Tqxt4jG"/>
            <media:player url="https://peertube2.cpy.re/w/6fBzHf8NBdH3rH9Tqxt4jG"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4091d3fb-4280-442e-a920-bb6b036f9d97-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d2606881-e932-44f7-8c92-68c9ca0ef370-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ad85600c-004a-46cf-b0a4-958a8f26787f-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/df09d06b-6ee2-420d-adb7-ce05b5ad58d3-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/25c6ce79-5bde-4313-a877-1930eea923cf-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f44dd5e6-75ea-4da4-8f61-6e84331266b4-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="39011532" url="https://cdn.octos3.fr/peertube-blast/web-videos/92f803a3-8db7-466a-95fd-f3c867a96ef5-0.mp4" framerate="0" duration="1231" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="398898525" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/2a8808a6-6d36-41a2-9b95-11b0fc787f90/2c43b360-f2d3-4726-98c1-b058b5ad4927-1080-fragmented.mp4" framerate="25" duration="1231" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="175472080" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/2a8808a6-6d36-41a2-9b95-11b0fc787f90/46a716e9-d5e9-4742-af3e-9c478dd5e94f-720-fragmented.mp4" framerate="25" duration="1231" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="98758599" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/2a8808a6-6d36-41a2-9b95-11b0fc787f90/7690e959-76d5-491e-ac4d-01490b4b00b5-480-fragmented.mp4" framerate="25" duration="1231" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="46544002" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/2a8808a6-6d36-41a2-9b95-11b0fc787f90/592f820b-7135-42d3-89d1-320b72061d2f-240-fragmented.mp4" framerate="25" duration="1231" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="19988128" url="https://cdn.octos3.fr/peertube-blast/streaming-playlists/hls/2a8808a6-6d36-41a2-9b95-11b0fc787f90/c8b51435-1516-42dd-9a49-a65a6bb62644-0-fragmented.mp4" framerate="0" duration="1231" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/cff1dac3-d3ac-4c28-8d2d-97ea60f9fbff.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Canicule en prison : de la torture institutionnalisée</media:title>
            <media:description type="plain">Soutenez Blast, nouveau média indépendant : https://www.blast-info.fr/soutenir Peut-on vivre une canicule en prison comme n'importe où ailleurs ? Dans cet entretien, la chercheuse et autrice Hélène Nogues-Brunet revient sur son livre "Surveille...</media:description>
        </item>
        <item>
            <title><![CDATA[S05-E07 - Les Gourous au cinéma (avec Elisabeth Feytit) - Part 2]]></title>
            <link>https://peertube2.cpy.re/w/ve8oaseNHfe4YmcstyBGDv</link>
            <guid>https://peertube2.cpy.re/w/ve8oaseNHfe4YmcstyBGDv</guid>
            <pubDate>Wed, 19 Aug 2026 12:59:12 GMT</pubDate>
            <description><![CDATA[Avec la sortie dernière de "Gourou" de Yann Gozlan qui a fait couler beaucoup d'encre, nous ne pouvions passer à côté pour notre émission spéciale de l'été. Notre invitée était d'ailleurs toute désignée puisqu'elle est spécialiste des mouvements N...]]></description>
            <content:encoded><![CDATA[<p>Avec la sortie dernière de "Gourou" de Yann Gozlan qui a fait couler beaucoup d'encre, nous ne pouvions passer à côté pour notre émission spéciale de l'été. Notre invitée était d'ailleurs toute désignée puisqu'elle est spécialiste des mouvements New Age et a été consultante sur le film : Elisabeth Feytit du podcast Méta de Choc !</p>
<p>On n'en a profité pour aborder d'autres film mettant en scène des gourous, notamment ceux de Paul Thomas Anderson : Magnolia et The Master. Nous vous proposons donc une plongée dans le monde des mouvements sectaires et de ses représentations au cinéma. Enjoy !</p>
]]></content:encoded>
            <dc:creator>Cinétique</dc:creator>
            <category>Films</category>
            <enclosure length="280622483" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/ecae3d52-af13-40a1-984b-3ed158428177?videoFileIds=5842731"/>
            <media:community>
                <media:statistics views="5"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/ve8oaseNHfe4YmcstyBGDv"/>
            <media:player url="https://peertube2.cpy.re/w/ve8oaseNHfe4YmcstyBGDv"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5fc7b79a-cbf2-4f3d-b3c0-576ab53e4c18-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/02e30817-133a-4a8b-b4ad-830162443280-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/3fe7d0d9-ff4d-4ccd-9689-971a207c2ae9-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4452764e-cc81-4c92-8625-53fbeb6f9f69-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f89ee27a-d074-4d4d-828d-fb45fedff21f-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="188877291" url="https://skeptikon.fr/static/web-videos/a2457d0f-058b-4fec-b78a-2019ce20f4b6-0.mp4" framerate="0" duration="6296" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="280622483" url="https://skeptikon.fr/static/streaming-playlists/hls/ecae3d52-af13-40a1-984b-3ed158428177/523934c8-8258-4626-8eb3-bd964fbd5c98-480-fragmented.mp4" framerate="25" duration="6296" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="245186734" url="https://skeptikon.fr/static/streaming-playlists/hls/ecae3d52-af13-40a1-984b-3ed158428177/f46eb749-4cdb-42ea-b2b5-ecfa46ef652e-360-fragmented.mp4" framerate="25" duration="6296" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="180958913" url="https://skeptikon.fr/static/streaming-playlists/hls/ecae3d52-af13-40a1-984b-3ed158428177/77dad57a-bf70-4e10-8c52-26991286f1d4-240-fragmented.mp4" framerate="25" duration="6296" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="189126225" url="https://skeptikon.fr/static/streaming-playlists/hls/ecae3d52-af13-40a1-984b-3ed158428177/19b0abea-32f9-4324-9f49-2fafd20ef3c8-0-fragmented.mp4" framerate="0" duration="6296" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/14ff5f5d-f606-4236-80d2-546476c9fd20.png" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">S05-E07 - Les Gourous au cinéma (avec Elisabeth Feytit) - Part 2</media:title>
            <media:description type="plain">Avec la sortie dernière de "Gourou" de Yann Gozlan qui a fait couler beaucoup d'encre, nous ne pouvions passer à côté pour notre émission spéciale de l'été. Notre invitée était d'ailleurs toute désignée puisqu'elle est spécialiste des mouvements N...</media:description>
        </item>
        <item>
            <title><![CDATA[Canibamboo]]></title>
            <link>https://peertube2.cpy.re/w/cJJjYuSSLP9DgyPQshXkPC</link>
            <guid>https://peertube2.cpy.re/w/cJJjYuSSLP9DgyPQshXkPC</guid>
            <pubDate>Wed, 19 Aug 2026 12:50:07 GMT</pubDate>
            <description><![CDATA[Extrait du court métrage parodique "publicité" réalisé dans le cadre de la 11e édition Festival de Courgemétrage 2026.  https://courgemetrage.ch/ production: mischmasch movies x marie&amp;marie © 2026]]></description>
            <content:encoded><![CDATA[<p>Extrait du court métrage parodique "publicité" réalisé dans le cadre de la 11e édition Festival de Courgemétrage 2026.  <a href="https://courgemetrage.ch/" target="_blank" rel="noopener noreferrer">https://courgemetrage.ch/</a></p>
<p>production: mischmasch movies x marie&amp;marie © 2026</p>
]]></content:encoded>
            <dc:creator>Main mischmasch_movies channel</dc:creator>
            <category>Comedy</category>
            <enclosure length="12017071" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/5f0bd93f-966b-435d-8b22-c10c8605a9ce?videoFileIds=5842710&amp;videoFileIds=5842709"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/cJJjYuSSLP9DgyPQshXkPC"/>
            <media:player url="https://peertube2.cpy.re/w/cJJjYuSSLP9DgyPQshXkPC"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/9010ebfd-1283-4dec-85e4-fcf937cfe36d-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c7d94840-c48f-4069-ba1e-b7fcb1b68b15-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f659644f-8e6e-46ff-aebc-44554003b269-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/a5221402-b423-45c6-9924-a45693cc890b-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/efee4c9e-0052-4a7a-a5ae-4e79cf72905c-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="798623" url="https://peertube.ch/static/web-videos/f40e8ba4-1bb3-4d91-bf70-56200fbc6aad-0.mp4" framerate="0" duration="49" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="11218448" url="https://peertube.ch/static/streaming-playlists/hls/5f0bd93f-966b-435d-8b22-c10c8605a9ce/6070cc58-45e9-480a-b661-d889a5926307-1080-fragmented.mp4" framerate="25" duration="49" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="5458265" url="https://peertube.ch/static/streaming-playlists/hls/5f0bd93f-966b-435d-8b22-c10c8605a9ce/68a7a0ec-652e-411d-99e9-d4128d54d2dc-720-fragmented.mp4" framerate="25" duration="49" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="2925219" url="https://peertube.ch/static/streaming-playlists/hls/5f0bd93f-966b-435d-8b22-c10c8605a9ce/f7e85e4e-052b-430e-886a-9516e19d606a-480-fragmented.mp4" framerate="25" duration="49" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="800897" url="https://peertube.ch/static/streaming-playlists/hls/5f0bd93f-966b-435d-8b22-c10c8605a9ce/3f028e73-1c01-4d2d-a257-22c7ac855522-0-fragmented.mp4" framerate="0" duration="49" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/ae25b915-bc05-41b0-8ead-e80a5c74de57.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Canibamboo</media:title>
            <media:description type="plain">Extrait du court métrage parodique "publicité" réalisé dans le cadre de la 11e édition Festival de Courgemétrage 2026.  https://courgemetrage.ch/ production: mischmasch movies x marie&amp;marie © 2026</media:description>
        </item>
        <item>
            <title><![CDATA[Unisciti alla nostra FAMIGLIA Boost Media & Ufficio Zero crescono!]]></title>
            <link>https://peertube2.cpy.re/w/u5m5pkb7jEHY5uVcu8yT9X</link>
            <guid>https://peertube2.cpy.re/w/u5m5pkb7jEHY5uVcu8yT9X</guid>
            <pubDate>Wed, 19 Aug 2026 12:06:54 GMT</pubDate>
            <description><![CDATA[Unisciti alla nostra FAMIGLIA Boost Media &amp; Ufficio Zero crescono!]]></description>
            <content:encoded><![CDATA[<p>Unisciti alla nostra FAMIGLIA Boost Media &amp; Ufficio Zero crescono!</p>
]]></content:encoded>
            <dc:creator>Boost Media APS</dc:creator>
            <category>Science &amp; Technology</category>
            <enclosure length="150743866" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/e35b3ad2-6ad4-4e6c-8672-48b9f6b55b63?videoFileIds=5842669&amp;videoFileIds=5842668"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/u5m5pkb7jEHY5uVcu8yT9X"/>
            <media:player url="https://peertube2.cpy.re/w/u5m5pkb7jEHY5uVcu8yT9X"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/420c385c-59b8-4378-a70a-8d35715b93ca-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/ca724320-e2c9-4862-8dd6-30a05702e50c-1920-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/2162f969-4d8c-46a1-a068-164c67b82b90-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1021049" url="https://peertube.uno/static/web-videos/92c78b64-0772-430e-8edb-51404b1b3537-0.mp4" framerate="0" duration="63" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="149722817" url="https://peertube.uno/static/streaming-playlists/hls/e35b3ad2-6ad4-4e6c-8672-48b9f6b55b63/aa452163-b7d4-4b19-bd10-f0d145c0ae83-1080-fragmented.mp4" framerate="60" duration="63" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="1024287" url="https://peertube.uno/static/streaming-playlists/hls/e35b3ad2-6ad4-4e6c-8672-48b9f6b55b63/0cd01d24-1f8f-45b9-a9ad-fee1ab67df18-0-fragmented.mp4" framerate="0" duration="63" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/c6e0e6a9-5dac-44a0-a36c-ae7817861a4e.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Unisciti alla nostra FAMIGLIA Boost Media &amp; Ufficio Zero crescono!</media:title>
            <media:description type="plain">Unisciti alla nostra FAMIGLIA Boost Media &amp; Ufficio Zero crescono!</media:description>
        </item>
        <item>
            <title><![CDATA[Palestinesi numerati sul corpo. Ti ricorda qualcosa?]]></title>
            <link>https://peertube2.cpy.re/w/7HZocCUQk6Hso8GMDaCprC</link>
            <guid>https://peertube2.cpy.re/w/7HZocCUQk6Hso8GMDaCprC</guid>
            <pubDate>Wed, 19 Aug 2026 08:17:22 GMT</pubDate>
            <description><![CDATA[Un numero scritto sul corpo. Non è una scena del passato: è successo il 17 agosto 2026 a Qabatiya, nella Cisgiordania occupata. L’esercito israeliano lo ha confermato: durante un raid con perquisizioni in circa cento edifici, persone palestinesi ...]]></description>
            <content:encoded><![CDATA[<p>Un numero scritto sul corpo.<br />
Non è una scena del passato: è successo il 17 agosto 2026 a Qabatiya, nella Cisgiordania occupata.</p>
<p>L’esercito israeliano lo ha confermato: durante un raid con perquisizioni in circa cento edifici, persone palestinesi fermate sono state contrassegnate con numeri a pennarello sulla fronte e sulle braccia, interrogate e poi rilasciate. L’uomo ripreso con il numero 44 ha raccontato di non aver mai vissuto nulla di simile nei precedenti arresti. Un altro fermato ha detto di essere stato trattato «come un animale».</p>
<p>Non è un episodio isolato: pratiche analoghe erano già emerse ad aprile a Jenin e nel 2024 nell’area di Hebron. Già nel 2009 l’esercito israeliano aveva ordinato di interrompere la pratica.</p>
<p>Questa è la scelta, ripetuta e non casuale, di ridurre un essere umano a un codice identificativo: la disumanizzazione cresce in un contesto politico che la rende possibile, normale, persino giustificabile.</p>
<p>L’Unione europea chiede da mesi misure concrete contro la violenza in Cisgiordania.<br />
Ora le parole non bastano più: servono responsabilità, conseguenze e una politica estera europea senza ambiguità né doppi standard.</p>
<p>La dignità umana non è negoziabile.</p>
<p>#Cisgiordania #Palestina #DirittiUmani #Israele #WestBank #EuropaFederale #Volt #VoltItalia #VoltEuropa</p>
]]></content:encoded>
            <dc:creator>Volt Italia</dc:creator>
            <category>News &amp; Politics</category>
            <enclosure length="1964137" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/3673b09e-78a4-4f99-9ae6-148a5cf7b79a?videoFileIds=5842538"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/7HZocCUQk6Hso8GMDaCprC"/>
            <media:player url="https://peertube2.cpy.re/w/7HZocCUQk6Hso8GMDaCprC"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/954777d2-325d-46d0-9362-f61da1e89f5e-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1221734f-bb75-49f3-aec2-fbe6037fcf06-1920-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/695aeb3b-0b11-4feb-91e1-f8c9131de69d-1280-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/bb8cbdb3-e603-419b-b833-feff7b9c2cec-640-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="330019" url="https://videos.domainepublic.net/static/web-videos/87311664-bfbd-45fa-ab14-ccf848ec5f9b-0.mp4" framerate="0" duration="20" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="1964137" url="https://videos.domainepublic.net/static/streaming-playlists/hls/3673b09e-78a4-4f99-9ae6-148a5cf7b79a/1c48c711-3282-4483-b5cb-3774c922b1b6-1080-fragmented.mp4" framerate="30" duration="20" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="1917567" url="https://videos.domainepublic.net/static/streaming-playlists/hls/3673b09e-78a4-4f99-9ae6-148a5cf7b79a/26ca0417-71c7-4e5c-a1fe-65b1d56d7674-720-fragmented.mp4" framerate="30" duration="20" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="1002439" url="https://videos.domainepublic.net/static/streaming-playlists/hls/3673b09e-78a4-4f99-9ae6-148a5cf7b79a/4015a17a-0f50-4c2e-af65-cdc543a34778-360-fragmented.mp4" framerate="30" duration="20" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/0c6d2a49-14f8-4140-aaee-d6a9825e05d7.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Palestinesi numerati sul corpo. Ti ricorda qualcosa?</media:title>
            <media:description type="plain">Un numero scritto sul corpo. Non è una scena del passato: è successo il 17 agosto 2026 a Qabatiya, nella Cisgiordania occupata. L’esercito israeliano lo ha confermato: durante un raid con perquisizioni in circa cento edifici, persone palestinesi ...</media:description>
        </item>
        <item>
            <title><![CDATA[Le journaliste fait le malin sur LFI et se fait HUMILIER ( Ingérences israel Russie ) - Saintoul]]></title>
            <link>https://peertube2.cpy.re/w/vof6P727G6UwGXWSmjnc5h</link>
            <guid>https://peertube2.cpy.re/w/vof6P727G6UwGXWSmjnc5h</guid>
            <pubDate>Wed, 19 Aug 2026 08:00:21 GMT</pubDate>
            <dc:creator>a_gauche</dc:creator>
            <enclosure length="42646403" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/edf412da-39af-48a6-aa18-0226948830ec?videoFileIds=5843012"/>
            <media:community>
                <media:statistics views="1"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/vof6P727G6UwGXWSmjnc5h"/>
            <media:player url="https://peertube2.cpy.re/w/vof6P727G6UwGXWSmjnc5h"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/f0a7b8f0-463e-46d9-b7fb-6e1f7e9e73f0-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d45ad7b3-963c-471a-a893-c09fdf0dbd29-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6e1810f1-38e0-4955-bf13-8b51f03206fe-720-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/029f4cf4-b4c4-4293-8b41-5c61b20bacc9-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/befd0564-ba81-4bdd-9a3f-47b9f5d6c835-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cce9e204-d94d-4ae1-92b7-97c5c55cbbe3-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="5584710" url="https://static.indymotion.fr/web-videos/cc4dc79a-b2d7-45a4-817e-915a7675b41f-0.mp4" framerate="0" duration="186" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="42646403" url="https://static.indymotion.fr/streaming-playlists/hls/edf412da-39af-48a6-aa18-0226948830ec/36eb9e63-5b06-47b9-81dd-7d0bfa470990-1080-fragmented.mp4" framerate="30" duration="186" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="720" fileSize="31824663" url="https://static.indymotion.fr/streaming-playlists/hls/edf412da-39af-48a6-aa18-0226948830ec/ae116b9f-8e71-4d08-b6ef-03c8662c7a4b-720-fragmented.mp4" framerate="30" duration="186" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="20233667" url="https://static.indymotion.fr/streaming-playlists/hls/edf412da-39af-48a6-aa18-0226948830ec/ef2129bc-b002-41b4-bbd7-1507877f874b-480-fragmented.mp4" framerate="30" duration="186" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="10716262" url="https://static.indymotion.fr/streaming-playlists/hls/edf412da-39af-48a6-aa18-0226948830ec/aabd0dde-3996-418e-aa0f-004657e1c132-240-fragmented.mp4" framerate="30" duration="186" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="2982813" url="https://static.indymotion.fr/streaming-playlists/hls/edf412da-39af-48a6-aa18-0226948830ec/116b7cf9-3a40-4d88-ae19-7c1b4cde60fe-0-fragmented.mp4" framerate="0" duration="186" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/7e131dbe-0a0f-4108-83be-fddcd3036b0b.webp" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Le journaliste fait le malin sur LFI et se fait HUMILIER ( Ingérences israel Russie ) - Saintoul</media:title>
        </item>
        <item>
            <title><![CDATA[hatniX spielt „Cargo, Please!“]]></title>
            <link>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo</link>
            <guid>https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo</guid>
            <pubDate>Wed, 19 Aug 2026 06:54:10 GMT</pubDate>
            <description><![CDATA[Ich spiele das Top-Down-Fahrspiel „Cargo, Please!“ von Cyber752. Es steht nur für Windows zur Verfügung. Ich spiele es mit Hilfe von Wine 11.15 unter Linux (CachyOS, Plasma Desktop). bei GOG: https://www.gog.com/game/cargo_please bei Steam: ht...]]></description>
            <content:encoded><![CDATA[<p>Ich spiele das Top-Down-Fahrspiel „Cargo, Please!“ von Cyber752. Es steht nur für Windows zur Verfügung. Ich spiele es mit Hilfe von Wine 11.15 unter Linux (CachyOS, Plasma Desktop).</p>
<p>bei GOG: <a href="https://www.gog.com/game/cargo_please" target="_blank" rel="noopener noreferrer">https://www.gog.com/game/cargo_please</a><br />
bei Steam: <a href="https://store.steampowered.com/app/4160920" target="_blank" rel="noopener noreferrer">https://store.steampowered.com/app/4160920</a></p>

<p>Meine Webseite: <a href="https://hatnix.net" target="_blank" rel="noopener noreferrer">https://hatnix.net</a></p>
]]></content:encoded>
            <dc:creator>haTube</dc:creator>
            <category>Gaming</category>
            <enclosure length="1177622660" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/ff0f6317-bed1-4f2b-a3c7-a35de145a8fc?videoFileIds=5842503"/>
            <media:community>
                <media:statistics views="14"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/xuLeQXhWVdwdZ5wKssW1Fo"/>
            <media:player url="https://peertube2.cpy.re/w/xuLeQXhWVdwdZ5wKssW1Fo"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/37b69a8d-23af-4012-960b-67818abfb342-1080.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4c6896ed-3d40-4ffe-a6e9-58b628d20575-480.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c7b0a80b-b9d4-4132-9513-886491427b6a-360.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/847d79be-a715-449b-896c-3c512f16c4e5-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6062e5d2-cfed-4b68-b3d9-2a13454398a5-1080-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/5a04331d-abc9-425b-b00f-c2c5ce1bcaf2-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/edd33e19-8f0f-44a2-bef0-b4b8bb5f3be1-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/7ac97e9f-68ef-4520-8539-b9a7873115fd-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="1177622660" url="https://media.tube.tchncs.de/videos/cf16f8ae-105c-44f1-b62f-a2f2b4d2d4a9-1080.mp4" framerate="60" duration="3326" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="391346620" url="https://media.tube.tchncs.de/videos/a73d5264-aac4-43f5-85ff-6bd2a9c80ecd-480.mp4" framerate="30" duration="3326" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="288550245" url="https://media.tube.tchncs.de/videos/b3a73398-926f-4aaa-83cb-eb1cf4714e07-360.mp4" framerate="30" duration="3326" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="80443013" url="https://media.tube.tchncs.de/videos/27f412f4-343f-4cac-b5e2-79153608800d-0.mp4" framerate="0" duration="3326" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="1080" fileSize="1174526122" url="https://media.tube.tchncs.de/streaming-playlists/hls/ff0f6317-bed1-4f2b-a3c7-a35de145a8fc/4f03e012-e558-4a78-9b6d-99b96fee03b1-1080-fragmented.mp4" framerate="60" duration="3326" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="389929410" url="https://media.tube.tchncs.de/streaming-playlists/hls/ff0f6317-bed1-4f2b-a3c7-a35de145a8fc/2142948b-c194-410d-a696-72a8ebbe31c3-480-fragmented.mp4" framerate="30" duration="3326" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="287133647" url="https://media.tube.tchncs.de/streaming-playlists/hls/ff0f6317-bed1-4f2b-a3c7-a35de145a8fc/45ac75c0-3715-4b19-816a-5885bd3fb807-360-fragmented.mp4" framerate="30" duration="3326" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="80575939" url="https://media.tube.tchncs.de/streaming-playlists/hls/ff0f6317-bed1-4f2b-a3c7-a35de145a8fc/9ad458b4-a32b-4b43-8f6e-0485a3d6b51c-0-fragmented.mp4" framerate="0" duration="3326" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/ce20027b-c48f-46a3-9273-8ca21c7b4876.png" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">hatniX spielt „Cargo, Please!“</media:title>
            <media:description type="plain">Ich spiele das Top-Down-Fahrspiel „Cargo, Please!“ von Cyber752. Es steht nur für Windows zur Verfügung. Ich spiele es mit Hilfe von Wine 11.15 unter Linux (CachyOS, Plasma Desktop). bei GOG: https://www.gog.com/game/cargo_please bei Steam: ht...</media:description>
        </item>
        <item>
            <title><![CDATA[Israel Coelho. Campaña Latinoamericana por el Derecho a la Educación (CLADE)]]></title>
            <link>https://peertube2.cpy.re/w/xjCVKGj6SQGMERDV9ScW3p</link>
            <guid>https://peertube2.cpy.re/w/xjCVKGj6SQGMERDV9ScW3p</guid>
            <pubDate>Wed, 19 Aug 2026 03:00:00 GMT</pubDate>
            <description><![CDATA[FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.]]></description>
            <content:encoded><![CDATA[<p>FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.</p>
]]></content:encoded>
            <dc:creator>redclade</dc:creator>
            <category>Education</category>
            <enclosure length="13371964" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/fda57179-5658-4b62-94cb-98ab87d910bb?videoFileIds=5842340"/>
            <media:community>
                <media:statistics views="3"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/xjCVKGj6SQGMERDV9ScW3p"/>
            <media:player url="https://peertube2.cpy.re/w/xjCVKGj6SQGMERDV9ScW3p"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1760d71f-0e68-419f-aad1-82f4d34959f8-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e4fa9f6e-76d5-4b19-a55a-044f2e31a322-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d70c4a53-66ab-4de9-a4ff-db59b26ccfca-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/d8ab0dfe-8215-45df-bf3a-ff95e5a24418-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4bcfadd6-e5a5-45a9-b703-c51a330709a6-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="2665567" url="https://tube.undernet.uy/static/web-videos/59694b7a-4347-4580-82c0-2f6cafada294-0.mp4" framerate="0" duration="171" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="13371964" url="https://tube.undernet.uy/static/streaming-playlists/hls/fda57179-5658-4b62-94cb-98ab87d910bb/97d593dd-a62b-45bd-8957-f0640b709587-360-fragmented.mp4" framerate="30" duration="171" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="9458369" url="https://tube.undernet.uy/static/streaming-playlists/hls/fda57179-5658-4b62-94cb-98ab87d910bb/282987d5-b09b-48d0-87c5-1a2edc4f7e28-240-fragmented.mp4" framerate="30" duration="171" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="5843230" url="https://tube.undernet.uy/static/streaming-playlists/hls/fda57179-5658-4b62-94cb-98ab87d910bb/bae03d07-7cbb-4a68-9b43-d2b7b1f7764d-144-fragmented.mp4" framerate="30" duration="171" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="2672361" url="https://tube.undernet.uy/static/streaming-playlists/hls/fda57179-5658-4b62-94cb-98ab87d910bb/5d06b0a0-04c4-4585-98a0-2a2c4e155e6a-0-fragmented.mp4" framerate="0" duration="171" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/41565b06-48f4-45aa-9406-74d7e26d9f59.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Israel Coelho. Campaña Latinoamericana por el Derecho a la Educación (CLADE)</media:title>
            <media:description type="plain">FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.</media:description>
        </item>
        <item>
            <title><![CDATA[Momentos del XII FOSPA en Puyo, Ecuador.]]></title>
            <link>https://peertube2.cpy.re/w/aHuEashEDPfpp2z85xfekR</link>
            <guid>https://peertube2.cpy.re/w/aHuEashEDPfpp2z85xfekR</guid>
            <pubDate>Wed, 19 Aug 2026 03:00:00 GMT</pubDate>
            <description><![CDATA[FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.]]></description>
            <content:encoded><![CDATA[<p>FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.</p>
]]></content:encoded>
            <dc:creator>redclade</dc:creator>
            <category>Education</category>
            <enclosure length="10181515" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/4ead6753-957f-417c-b088-ca300ae44233?videoFileIds=5843568"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/aHuEashEDPfpp2z85xfekR"/>
            <media:player url="https://peertube2.cpy.re/w/aHuEashEDPfpp2z85xfekR"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c56956e0-df48-4285-93d8-31464453894a-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0b33662b-bcf5-4da8-bd17-f053b45c214f-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e486c43d-4bda-4e26-b1c5-a1d61b9b22e0-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/1ef7b3ec-e191-487b-85ab-4b026e63f6d6-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/bfa6eb4d-e114-4457-a541-b126c31fc0da-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="3270953" url="https://tube.undernet.uy/static/web-videos/af4b19ee-d43a-410d-8c28-d38f560e92e4-0.mp4" framerate="0" duration="137" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="10181515" url="https://tube.undernet.uy/static/streaming-playlists/hls/4ead6753-957f-417c-b088-ca300ae44233/623ed561-eabb-439f-93c3-7f3472192b3c-360-fragmented.mp4" framerate="30" duration="137" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="9784260" url="https://tube.undernet.uy/static/streaming-playlists/hls/4ead6753-957f-417c-b088-ca300ae44233/96dd02d9-fd4f-4902-8cfb-e4503c7af553-240-fragmented.mp4" framerate="30" duration="137" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="6192023" url="https://tube.undernet.uy/static/streaming-playlists/hls/4ead6753-957f-417c-b088-ca300ae44233/57649b5c-eddc-40a4-bc8d-87b0c32aba79-144-fragmented.mp4" framerate="30" duration="137" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="3276639" url="https://tube.undernet.uy/static/streaming-playlists/hls/4ead6753-957f-417c-b088-ca300ae44233/4ac41425-1db4-434c-8904-e43665017361-0-fragmented.mp4" framerate="0" duration="137" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/7d46e3b7-033f-479e-8093-b520c2b1768b.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Momentos del XII FOSPA en Puyo, Ecuador.</media:title>
            <media:description type="plain">FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.</media:description>
        </item>
        <item>
            <title><![CDATA[Carla Maruri, Red de Mujeres Rurales de América Latina y el Caribe (RED LAC),]]></title>
            <link>https://peertube2.cpy.re/w/gfAh6dhVDmwSQUScV74tn5</link>
            <guid>https://peertube2.cpy.re/w/gfAh6dhVDmwSQUScV74tn5</guid>
            <pubDate>Wed, 19 Aug 2026 03:00:00 GMT</pubDate>
            <description><![CDATA[FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.]]></description>
            <content:encoded><![CDATA[<p>FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.</p>
]]></content:encoded>
            <dc:creator>redclade</dc:creator>
            <category>Education</category>
            <enclosure length="6278032" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/7b829dec-2fa4-4df8-a677-31373bbc5c4a?videoFileIds=5843574"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/gfAh6dhVDmwSQUScV74tn5"/>
            <media:player url="https://peertube2.cpy.re/w/gfAh6dhVDmwSQUScV74tn5"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4baec436-d650-4993-85ee-160b59e612d7-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/babad544-cf69-4d64-a9e2-0e94051c3100-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/e9369e35-c975-4b3f-80b1-0c9e9ac51857-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4aa82b56-d149-4ce1-9b3c-6bb904cec0c7-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/6f1fcdc9-2240-47cf-9f50-b5692a3f7042-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="2014021" url="https://tube.undernet.uy/static/web-videos/8cd27c95-d3fe-4b32-8cd4-35684494e8a8-0.mp4" framerate="0" duration="82" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="6278032" url="https://tube.undernet.uy/static/streaming-playlists/hls/7b829dec-2fa4-4df8-a677-31373bbc5c4a/fd72723d-fe4a-4d29-891b-8b939a7fa2d3-360-fragmented.mp4" framerate="30" duration="82" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="5655700" url="https://tube.undernet.uy/static/streaming-playlists/hls/7b829dec-2fa4-4df8-a677-31373bbc5c4a/d161ab55-f26b-4080-a804-c1206c0a4a79-240-fragmented.mp4" framerate="30" duration="82" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="3768975" url="https://tube.undernet.uy/static/streaming-playlists/hls/7b829dec-2fa4-4df8-a677-31373bbc5c4a/8ac83b86-a690-4187-86c1-3d693fd093b6-144-fragmented.mp4" framerate="30" duration="82" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="2017703" url="https://tube.undernet.uy/static/streaming-playlists/hls/7b829dec-2fa4-4df8-a677-31373bbc5c4a/3c64c7e5-c9ac-443f-8371-eb1bb5dfb2f8-0-fragmented.mp4" framerate="0" duration="82" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/e60b5daa-3ad6-42e6-baa8-8a4e0d39d21b.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Carla Maruri, Red de Mujeres Rurales de América Latina y el Caribe (RED LAC),</media:title>
            <media:description type="plain">FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.</media:description>
        </item>
        <item>
            <title><![CDATA[Maritza Caigua y Martha Chaves Orozco. Escuela Achakaspi Bula]]></title>
            <link>https://peertube2.cpy.re/w/8qN7WnTSaSVPZ3yAt7tj7y</link>
            <guid>https://peertube2.cpy.re/w/8qN7WnTSaSVPZ3yAt7tj7y</guid>
            <pubDate>Wed, 19 Aug 2026 03:00:00 GMT</pubDate>
            <description><![CDATA[FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.]]></description>
            <content:encoded><![CDATA[<p>FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.</p>
]]></content:encoded>
            <dc:creator>redclade</dc:creator>
            <category>Education</category>
            <enclosure length="32697951" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/3c263e4a-4be2-40b2-b755-5f5042b9fafc?videoFileIds=5843583"/>
            <media:community>
                <media:statistics views="0"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/8qN7WnTSaSVPZ3yAt7tj7y"/>
            <media:player url="https://peertube2.cpy.re/w/8qN7WnTSaSVPZ3yAt7tj7y"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/45aaa6f5-a66e-4a30-a18d-121ead25ad36-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/a0f23479-2855-4731-b6f6-107e9da8b7b9-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/32b92d32-aaf8-4b0d-a2d2-cc9e5c7634ff-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0ebccdc4-7453-4a98-85ba-e6f75048585a-144-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/efdc8425-4149-4782-b11f-6c3cbfab047c-0-hls.torrent" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="9387033" url="https://tube.undernet.uy/static/web-videos/19177ede-5ccf-411e-8dc0-ad0991590950-0.mp4" framerate="0" duration="362" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="32697951" url="https://tube.undernet.uy/static/streaming-playlists/hls/3c263e4a-4be2-40b2-b755-5f5042b9fafc/00645c14-e2bf-4128-976c-69f9131bb496-360-fragmented.mp4" framerate="30" duration="362" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="28957032" url="https://tube.undernet.uy/static/streaming-playlists/hls/3c263e4a-4be2-40b2-b755-5f5042b9fafc/45e395e7-c334-4a8f-affa-e5a14d48f3f5-240-fragmented.mp4" framerate="30" duration="362" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="144" fileSize="18718984" url="https://tube.undernet.uy/static/streaming-playlists/hls/3c263e4a-4be2-40b2-b755-5f5042b9fafc/b49dbf7c-1749-4798-a308-0805cfab69cd-144-fragmented.mp4" framerate="30" duration="362" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="9401819" url="https://tube.undernet.uy/static/streaming-playlists/hls/3c263e4a-4be2-40b2-b755-5f5042b9fafc/07d0c714-e7bd-4b5e-b20e-c82f97618d41-0-fragmented.mp4" framerate="0" duration="362" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/980bd9ae-b08e-44f9-bed6-986161498298.jpg" height="1400" width="1400"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">Maritza Caigua y Martha Chaves Orozco. Escuela Achakaspi Bula</media:title>
            <media:description type="plain">FOSPA XII edición, del 16 al 22 de agosto en Puyo, Ecuador, bajo el lema “Amazonía, un solo territorio”.</media:description>
        </item>
        <item>
            <title><![CDATA[#climateCrisis with Kent Pitman and Ramin Honary, #lambdaMOO digging a new #gofaiLab and #lispyGopherClimate community]]></title>
            <link>https://peertube2.cpy.re/w/1wbMEGRvVeRrbSviJVxy8H</link>
            <guid>https://peertube2.cpy.re/w/1wbMEGRvVeRrbSviJVxy8H</guid>
            <pubDate>Wed, 19 Aug 2026 01:24:31 GMT</pubDate>
            <description><![CDATA[Addendum from Kent Pitman: In the bonus after-show discussion after this week's show, I mentioned that I thought we did a better job of Covid than of Climate. I was alluding to my 2020 essay The Two Economies. https://netsettlement.blogspot.co...]]></description>
            <content:encoded><![CDATA[<p>Addendum from Kent Pitman:</p>
<p>In the bonus after-show discussion after this week's show, I mentioned that I thought we did a better job of Covid than of Climate. I was alluding to my 2020 essay The Two Economies.<br />
<a href="https://netsettlement.blogspot.com/2020/04/the-two-economies.html" target="_blank" rel="noopener noreferrer">https://netsettlement.blogspot.com/2020/04/the-two-economies.html</a></p>
<p>The problem is we believed in Covid enough to do something but don't similarly believe in Climate, even now. Not enough to do what's really needed. To that end, I would also reference another 2020 essay, Humanity's Superpower, though I reference that one a lot, so hopefully people are getting used to my mentioning that. 😃</p>
<p>Show mastodon thread: <a href="https://gamerplus.org/@screwlisp/117119197753424870" target="_blank" rel="noopener noreferrer">https://gamerplus.org/@screwlisp/117119197753424870</a></p>
]]></content:encoded>
            <dc:creator>Lispy Gopher Climate extras</dc:creator>
            <category>Science &amp; Technology</category>
            <enclosure length="131206047" type="video/mp4" url="https://peertube2.cpy.re/download/videos/generate/0436f607-779f-438b-8f2d-39a1c8cffe67?videoFileIds=5842356"/>
            <media:community>
                <media:statistics views="8"/>
            </media:community>
            <media:embed url="https://peertube2.cpy.re/videos/embed/1wbMEGRvVeRrbSviJVxy8H"/>
            <media:player url="https://peertube2.cpy.re/w/1wbMEGRvVeRrbSviJVxy8H"/>
            <media:group>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/fc2efaa5-b009-4972-ae32-ffee6a729ae5-480.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/23b750bb-5cb7-4de0-8d28-f860d73a82fb-360.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/c593fb63-4967-4dd1-b972-f0cc9e547414-240.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/0f927677-c574-4f18-b8d6-29dd81f5f776-0.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/cb0c1145-fdea-4279-accd-79a301b16e1a-480-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/36ac111b-e9ae-47a1-ae09-4e2dea6b2b4e-360-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/8a0f70ff-5ef8-4caf-ae2f-23d8923cc2fc-240-hls.torrent" isDefault="false"/>
                <media:peerLink type="application/x-bittorrent" href="https://peertube2.cpy.re/lazy-static/torrents/4cf816a6-e153-4b9e-beab-847b47dd09ca-0-hls.torrent" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="131206047" url="https://toobnix.org/static/web-videos/58d04621-3778-441f-b097-2c5da2de2276-480.mp4" framerate="25" duration="4476" isDefault="true"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="199152656" url="https://toobnix.org/static/web-videos/c5965d37-0900-4fc0-85ea-a9092c0fbec5-360.mp4" framerate="25" duration="4476" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="145393776" url="https://toobnix.org/static/web-videos/9147e29e-7966-47b0-adac-22035e63055a-240.mp4" framerate="25" duration="4476" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="72373525" url="https://toobnix.org/static/web-videos/384a47c5-23d5-4194-bca4-785215238cdf-0.mp4" framerate="0" duration="4476" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="480" fileSize="130951329" url="https://toobnix.org/static/streaming-playlists/hls/0436f607-779f-438b-8f2d-39a1c8cffe67/cb720d7c-c71c-4213-8976-b118a2865f61-480-fragmented.mp4" framerate="25" duration="4476" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="360" fileSize="198484986" url="https://toobnix.org/static/streaming-playlists/hls/0436f607-779f-438b-8f2d-39a1c8cffe67/9e5ca3fa-e57d-4006-93ee-ff4b4703f35e-360-fragmented.mp4" framerate="25" duration="4476" isDefault="false"/>
                <media:content type="video/mp4" medium="video" height="240" fileSize="144739618" url="https://toobnix.org/static/streaming-playlists/hls/0436f607-779f-438b-8f2d-39a1c8cffe67/d8480138-ab7a-4944-a452-8c179b5ce6e6-240-fragmented.mp4" framerate="25" duration="4476" isDefault="false"/>
                <media:content type="audio/mp4" medium="video" height="0" fileSize="72551471" url="https://toobnix.org/static/streaming-playlists/hls/0436f607-779f-438b-8f2d-39a1c8cffe67/fcde7d07-774d-4fa7-9d07-4a62fd1abb0e-0-fragmented.mp4" framerate="0" duration="4476" isDefault="false"/>
            </media:group>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/d1791275-32bd-4949-92e4-10ffa2aa782a.png" height="157" width="280"/>
            <media:thumbnail url="https://peertube2.cpy.re/lazy-static/thumbnails/026b90cf-3cf7-4f32-9234-cc4fe1ac01cf.png" height="480" width="850"/>
            <media:rating>nonadult</media:rating>
            <media:title type="plain">#climateCrisis with Kent Pitman and Ramin Honary, #lambdaMOO digging a new #gofaiLab and #lispyGopherClimate community</media:title>
            <media:description type="plain">Addendum from Kent Pitman: In the bonus after-show discussion after this week's show, I mentioned that I thought we did a better job of Covid than of Climate. I was alluding to my 2020 essay The Two Economies. https://netsettlement.blogspot.co...</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 feature-rich ; 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
enclosurePreference
string
Enum: "video-only" "audio-only"

Filter enclosures by type (video-only or audio-only)

playlistId
string

Limit listing to a specific video playlist

videoChannelId
string

Limit listing to a specific video channel

Responses

Register

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

Resend user verification link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

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

Resend verification link to registration request email

Request Body schema: application/json
email
required
string

Registration email

Responses

Request samples

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

Verify a user

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

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

Entity id

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

Responses

Request samples

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

Verify a registration email

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

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

Registration ID

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

Responses

Request samples

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

Register a user

Signup has to be enabled and signup approval is not required

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

email of the user, used for login or service communications

password
required
string <password> (password) [ 6 .. 50 ] 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": {
    }
}

Response samples

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

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 .. 50 ] 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
{
  • "state": {
    }
}

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

stateOneOf
Array of integers (UserRegistrationState)
Items Enum: 1 2 3

Responses

Response samples

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

Login/Logout

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

Login prerequisite

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

Responses

Request samples

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

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

Response samples

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

Login

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

header Parameters
x-peertube-otp
string

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

Request Body schema: application/x-www-form-urlencoded
client_id
required
string = 32 characters /^[a-z0-9]$/
client_secret
required
string = 32 characters /^[a-zA-Z0-9]$/
grant_type
required
string
username
required
string [ 1 .. 50 ] characters /^[a-z0-9._]+$/

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

externalAuthToken
string

If you want to authenticate using an external authentication token you got from an auth plugin (like peertube-plugin-auth-openid-connect for example) instead of a password or a refresh token, provide it here.

password
string <password> (password) [ 6 .. 50 ] characters

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

List token sessions

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

Entity id

Responses

Response samples

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

List token sessions

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

Entity id

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

Token session Id

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
includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

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

search
string

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

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
string or Array of strings

PeerTube >= 8.0 Filter on playlists that are published on a channel with one of these names

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

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

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

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

statsDays
integer
Default: 30
Enum: 30 90 365 0

number of days of view statistics to include in viewsPerDay when withStats is true (only if authenticated as the account user). 0 means all time (since the channel's earliest recorded stat). viewsPerDay always spans the whole requested range so channels can be compared to each other. Its bucket size is reported in viewsGroupInterval: it is derived from the requested range, narrowed to the channel history so that a young channel on a long range is not aggregated into a single coarse bucket. totalViews is unaffected by this parameter and always reports lifetime views.

withStats
boolean

include view statistics time series and total views (only if authenticated 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

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

List ratings of an account

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

The username or handle of the account

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

Number of items to return

rating
string
Enum: "like" "dislike"

Optionally filter which ratings to retrieve

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Users

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

Create a user

Authorizations:
OAuth2
Request Body schema: application/json
required

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

email
required
string <email>

The user email

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

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

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

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

adminFlags
integer (UserAdminFlags)
Enum: 0 1

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

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

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

videoQuota
integer

The user video quota in bytes

videoQuotaDaily
integer

The user daily video quota in bytes

Responses

Request samples

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

Response samples

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

List users

Authorizations:
OAuth2
query Parameters
blocked
boolean

Filter results down to (un)banned users

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

role
integer (UserRole)
Enum: 0 1 2
Example: role=2

Filter results down to users with a specific role

search
string

Plain text search that will match with user usernames or emails

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

Sort users by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Delete a user

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

Entity id

Responses

Get a user

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

Entity id

query Parameters
withStats
boolean

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

Responses

Response samples

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

Update a user

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

Entity id

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

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

email
string <email>

The updated email of the user

emailVerified
boolean

Set the email as verified

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

The auth plugin to use to authenticate the user

role
integer (UserRole)
Enum: 0 1 2

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

videoQuota
integer

The updated video quota of the user in bytes

videoQuotaDaily
integer

The updated daily video quota of the user in bytes

Responses

Request samples

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

Block a user

Prevent a user from logging in and interacting with the instance

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

Entity id

Request Body schema: application/json
reason
string [ 0 .. 500 ] characters

Optional reason for blocking the user

Responses

Request samples

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

Unblock a user

Allow a previously blocked user to login and interact with the instance

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

Entity id

Responses

Resend user verification link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

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

Verify a user

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

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

Entity id

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

Responses

Request samples

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

Ask to reset password

An email containing a reset password link

Request Body schema: application/json
email
required
string

User email

Responses

Request samples

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

Reset password

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

Entity id

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

Responses

Request samples

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

Request two factor auth

Request two factor authentication for a user

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

Entity id

Request Body schema: application/json
currentPassword
string

Password of the currently authenticated user

Responses

Request samples

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

Response samples

Content type
application/json
[
  • {
    }
]

Confirm two factor auth

Confirm a two factor authentication request

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

Entity id

Request Body schema: application/json
otpToken
required
string

OTP token generated by the app

requestToken
required
string

Token to identify the two factor request

Responses

Request samples

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

Disable two factor auth

Disable two factor authentication of a user

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

Entity id

Request Body schema: application/json
currentPassword
string

Password of the currently authenticated user

Responses

Request samples

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

User Exports

To create an archive of user data.

Request user export

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

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

User id

Request Body schema: application/json
withVideoFiles
boolean

Whether to include video files in the archive

Responses

Request samples

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

Response samples

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

List user exports

PeerTube >= 6.1

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

User id

Responses

Response samples

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

Delete a user export

PeerTube >= 6.1

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

Entity id

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

User id

Responses

User Imports

To import an archive of user data.

Initialize the resumable user import

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

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

User id

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

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

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

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

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

Archive filename including extension

Responses

Request samples

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

Send chunk for the resumable user import

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

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

User id

query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

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

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

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

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

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

Responses

Cancel the resumable user import

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

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

User id

query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 0

Responses

Get latest user import

PeerTube >= 6.1

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

User id

Responses

Response samples

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

My User

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

Get my user information

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Update my user information

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

new preference regarding playing following videos automatically

autoPlayNextVideoPlaylist
boolean

new preference regarding playing following playlist videos automatically

autoPlayVideo
boolean

new preference regarding playing videos automatically

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

new name of the user in its representations

email
string <email>

new email used for login and service communications

language
string

default language for this user

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

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

new NSFW display policy

p2pEnabled
boolean

whether to enable P2P in the player or not

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

list of languages to filter videos down to

videosHistoryEnabled
boolean

whether to keep track of watched history or not

Responses

Request samples

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

Delete my account

Delete the authenticated user's account and all associated data

Authorizations:
OAuth2

Responses

Get video imports of my user

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

Number of items to return

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

search
string

Search in video names

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

stateOneOf
Array of integers
Items Enum: 1 2 3 4 5 6

Filter on import state

targetUrl
string

Filter on import target URL

videoChannelSyncId
number

Filter on imports created by a specific channel synchronization

videoId
integer

Filter on import video ID

Responses

Response samples

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

Get my user used quota

Authorizations:
OAuth2

Responses

Response samples

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

Get rate of my user for a video

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

Video id or UUID

Responses

Response samples

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

List videos of my user

Authorizations:
OAuth2
query Parameters
string or Array of strings

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

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

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

string or Array of strings

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

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

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

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

PeerTube >= 8.0 Include objects from collaborated channels

includeScheduledLive
boolean

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

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

search
string

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

string or Array of strings

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

string or Array of strings

tag(s) of the video

Responses

Response samples

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

Mark feature info as read

**PeerTube >= v8.0.0

Authorizations:
OAuth2
Request Body schema: application/json
feature
required
integer (NewFeatureInfoType)
Value: 1

Represent a new feature that can be displayed to inform users. One of the following values:

  • 1 CHANNEL_COLLABORATION

Responses

Request samples

Content type
application/json
{
  • "feature": 1
}

Update my user avatar

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

The file to upload

Responses

Response samples

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

Delete my avatar

Authorizations:
OAuth2

Responses

List my abuses

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

Number of items to return

id
integer

only list the report with this id

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

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

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

Responses

Response samples

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

My Subscriptions

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

List my user subscriptions

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

Number of items to return

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

Offset used to paginate results

Responses

Response samples

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

Add subscription to my user

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

uri of the video channels to subscribe to

Responses

Request samples

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

Get if subscriptions exist for my user

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

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

Responses

Response samples

Content type
application/json
{ }

List videos of subscriptions of my user

Authorizations:
OAuth2
query Parameters
string or Array of strings

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

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

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

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

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

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

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

search
string

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

string or Array of strings

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

string or Array of strings

tag(s) of the video

Responses

Response samples

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

Get subscription of my user

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

The subscription handle

Responses

Response samples

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

Delete subscription of my user

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

The subscription handle

Responses

My Notifications

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

List my notifications

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

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

typeOneOf
Array of integers (NotificationType)
Items Enum: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33

only list notifications of these types

unread
boolean

only list unread notifications

Responses

Response samples

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

Mark notifications as read by their id

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

ids of the notifications to mark as read

Responses

Request samples

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

Mark all my notification as read

Authorizations:
OAuth2

Responses

Update my notification settings

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  • 0 NONE
  • 1 WEB
  • 2 EMAIL

Responses

Request samples

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

My History

Operations related to your watch history.

List watched videos history

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

Number of items to return

search
string

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

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Delete history element

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

Video id or UUID

Responses

Clear video history

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

history before this date will be deleted

Responses

Video

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

List videos of an account

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

The username or handle of the account

query Parameters
string or Array of strings

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

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

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

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

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

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

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

search
string

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

string or Array of strings

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

string or Array of strings

tag(s) of the video

Responses

Request samples

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

Response samples

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

Request video token

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

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

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

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

Create a studio task

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

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

The object id, uuid or short uuid

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

Responses

List videos

query Parameters
string or Array of strings

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

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

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

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

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

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

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

search
string

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

string or Array of strings

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

string or Array of strings

tag(s) of the video

Responses

Response samples

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

List available video categories

Responses

Response samples

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

List available video licences

Responses

Response samples

Content type
application/json
{
  • "1": "Attribution",
  • "2": "Attribution - Share Alike",
  • "3": "Attribution - No Derivatives",
  • "4": "Attribution - Non Commercial",
  • "5": "Attribution - Non Commercial - Share Alike",
  • "6": "Attribution - Non Commercial - No Derivatives",
  • "7": "Public Domain Dedication",
  • "8": "Free of known copyright restrictions",
  • "9": "All Rights Reserved"
}

List available video languages

query Parameters
scope
string
Value: "subtitle"

PeerTube >= 8.2 Filter languages by scope. Use subtitle to exclude sign languages and other languages that don't make sense for subtitles.

Responses

Response samples

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

List available video privacy policies

Responses

Response samples

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

Update a video

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

The object id, uuid or short uuid

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

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

channelId
integer

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

language
string (VideoLanguageSet)

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

licence
integer (VideoLicenceSet)

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

name
string [ 3 .. 120 ] characters

Video name

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string or null <date-time>

Date when the content was originally published

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

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

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

thumbnailfile
string <binary>

Video thumbnail file

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

Whether or not we wait transcoding before publish the video

Responses

Get a video

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

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

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

Delete a video

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

The object id, uuid or short uuid

Responses

Notify user is watching a video

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

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

The object id, uuid or short uuid

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

timestamp within the video, in seconds

client
string

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

device
any
Enum: "console" "embedded" "mobile" "smarttv" "tablet" "wearable" "xr" "desktop"

Device used to watch the video. For example "desktop", "mobile", "smarttv", etc.

operatingSystem
string

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

sessionId
string

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

viewEvent
string
Value: "seek"

Event since last viewing call:

  • seek - If the user seeked the video

Responses

Request samples

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

Upload a video

Uses a single request to upload a video.

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

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

videofile
required
string <binary>

Video file

category
integer (VideoCategorySet)

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

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

language
string (VideoLanguageSet)

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

licence
integer (VideoLicenceSet)

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

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

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

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

thumbnailfile
string <binary>

Video thumbnail file

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

Whether or not we wait transcoding before publish the video

Responses

Request samples

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

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

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

Response samples

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

Initialize the resumable upload of a video

Uses a resumable protocol to initialize the upload of a video

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

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

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

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

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

Channel id that will contain this video

filename
required
string <filename>

Video filename including extension

name
required
string [ 3 .. 120 ] characters

Video name

category
integer (VideoCategorySet)

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

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

language
string (VideoLanguageSet)

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

licence
integer (VideoLicenceSet)

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

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

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

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

thumbnailfile
string <binary>

Video thumbnail file

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

Whether or not we wait transcoding before publish the video

Responses

Request samples

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

Send chunk for the resumable upload of a video

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

Authorizations:
OAuth2
query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

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

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

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

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

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

Responses

Response samples

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

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

Uses a resumable protocol to cancel the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 0

Responses

Create a live

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

Channel id that will contain this live video

name
required
string [ 3 .. 120 ] characters

Live video/replay name

category
integer (VideoCategorySet)

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Live video/replay description

downloadEnabled
boolean

Enable or disable downloading for the replay of this live video

language
string (VideoLanguageSet)

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

latencyMode
integer
Enum: 1 2 3

User can select live latency mode if enabled by the instance

licence
integer (VideoLicenceSet)

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

nsfw
boolean

Whether or not this live video/replay contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

permanentLive
boolean

User can stream multiple times in a permanent live

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (LiveVideoReplaySettings)
saveReplay
boolean
Array of objects (LiveSchedule)
support
string

A text tell the audience how to support the creator

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

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

thumbnailfile
string <binary>

Live video/replay thumbnail file

Responses

Response samples

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

Get information about a live

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

The object id, uuid or short uuid

Responses

Response samples

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

Update information about a live

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

The object id, uuid or short uuid

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

User can select live latency mode if enabled by the instance

permanentLive
boolean

User can stream multiple times in a permanent live

object (LiveVideoReplaySettings)
saveReplay
boolean
Array of objects (LiveSchedule)

Responses

Request samples

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

Get video source file metadata

Get metadata and download link of original video file

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

The object id, uuid or short uuid

Responses

Response samples

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

Delete video source file

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

The object id, uuid or short uuid

Responses

Initialize the resumable replacement of a video

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

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

The object id, uuid or short uuid

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

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

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

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

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

Video filename including extension

Responses

Request samples

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

Send chunk for the resumable replacement of a video

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

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

The object id, uuid or short uuid

query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

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

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

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

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

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

Responses

Cancel the resumable replacement of a video

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

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

The object id, uuid or short uuid

query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 0

Responses

List storyboards of a video

PeerTube >= 6.0

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

The object id, uuid or short uuid

Responses

Response samples

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

List videos of a video channel

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

The video channel handle

query Parameters
string or Array of strings

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

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

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

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

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

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

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

search
string

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

string or Array of strings

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

string or Array of strings

tag(s) of the video

Responses

Response samples

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

Search videos

query Parameters
string or Array of strings

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

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

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

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

durationMax
integer

Get videos that have this maximum duration

durationMin
integer

Get videos that have this minimum duration

endDate
string <date-time>

Get videos that are published before this date

excludeAlreadyWatched
boolean

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

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

Get videos that are originally published before this date

originallyPublishedStartDate
string <date-time>

Get videos that are originally published after this date

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

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

search
required
string

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

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

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

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

startDate
string <date-time>

Get videos that are published after this date

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

string or Array of strings

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

string or Array of strings

tag(s) of the video

uuids
Array of strings

Find elements with specific UUIDs

Responses

Response samples

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

Video Upload

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

Upload

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

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

Favor using resumable uploads in any of the following cases:

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

Import

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

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

Upload a video

Uses a single request to upload a video.

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

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

videofile
required
string <binary>

Video file

category
integer (VideoCategorySet)

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

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

language
string (VideoLanguageSet)

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

licence
integer (VideoLicenceSet)

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

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

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

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

thumbnailfile
string <binary>

Video thumbnail file

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

Whether or not we wait transcoding before publish the video

Responses

Request samples

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

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

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

Response samples

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

Initialize the resumable upload of a video

Uses a resumable protocol to initialize the upload of a video

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

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

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

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

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

Channel id that will contain this video

filename
required
string <filename>

Video filename including extension

name
required
string [ 3 .. 120 ] characters

Video name

category
integer (VideoCategorySet)

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

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

language
string (VideoLanguageSet)

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

licence
integer (VideoLicenceSet)

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

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

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

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

thumbnailfile
string <binary>

Video thumbnail file

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

Whether or not we wait transcoding before publish the video

Responses

Request samples

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

Send chunk for the resumable upload of a video

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

Authorizations:
OAuth2
query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

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

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

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

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

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

Responses

Response samples

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

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

Uses a resumable protocol to cancel the upload of a video

Authorizations:
OAuth2
query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 0

Responses

Import a video

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

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

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

targetUrl
required
string <url>

remote URL where to find the import's source video

category
integer (VideoCategorySet)

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

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

language
string (VideoLanguageSet)

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

licence
integer (VideoLicenceSet)

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

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

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

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

thumbnailfile
string <binary>

Video thumbnail file

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

Whether or not we wait transcoding before publish the video

Responses

Response samples

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

Initialize the resumable replacement of a video

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

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

The object id, uuid or short uuid

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

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

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

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

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

Video filename including extension

Responses

Request samples

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

Send chunk for the resumable replacement of a video

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

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

The object id, uuid or short uuid

query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 262144

Size of the chunk that the request is sending.

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

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

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

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

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

Responses

Cancel the resumable replacement of a video

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

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

The object id, uuid or short uuid

query Parameters
upload_id
required
string

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

header Parameters
Content-Length
required
number
Example: 0

Responses

Video Imports

Operations dealing with listing, adding and removing video imports.

Import a video

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

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

Channel id that will contain this video

name
required
string [ 3 .. 120 ] characters

Video name

targetUrl
required
string <url>

remote URL where to find the import's source video

category
integer (VideoCategorySet)

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Video description

downloadEnabled
boolean

Enable or disable downloading for this video

generateTranscription
boolean

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

language
string (VideoLanguageSet)

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

licence
integer (VideoLicenceSet)

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

nsfw
boolean

Whether or not this video contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

originallyPublishedAt
string <date-time>

Date when the content was originally published

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (VideoScheduledUpdate)
support
string

A text tell the audience how to support the video creator

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

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

thumbnailfile
string <binary>

Video thumbnail file

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

Whether or not we wait transcoding before publish the video

Responses

Response samples

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

Cancel video import

Cancel a pending video import

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

Entity id

Responses

Retry video import

PeerTube >= 8.0 Retry a failed or cancelled (PeerTube >= 8.3) video import

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

Entity id

Responses

Delete video import

Delete ended video import

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

Entity id

Responses

Video Captions

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

List captions of a video

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

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

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

Generate a video caption

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

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

The object id, uuid or short uuid

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

Responses

Request samples

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

Add or replace a video caption

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

The caption language

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

The object id, uuid or short uuid

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

The file to upload.

Responses

Delete a video caption

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

The caption language

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

The object id, uuid or short uuid

Responses

Video Chapters

Operations dealing with managing chapters of a video.

Get chapters of a video

PeerTube >= 6.0

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

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

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

Replace video chapters

PeerTube >= 6.0

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

The object id, uuid or short uuid

Request Body schema: application/json
Array of objects

Responses

Request samples

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

Video Channels

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

List video channels

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

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Create a video channel

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

Channel display name

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

username of the channel to create

description
any

Channel description

publicEmail
string or null <email>

Public email visible in podcast RSS feeds

support
any

How to support/fund the channel

Responses

Request samples

Content type
application/json
{
  • "displayName": null,
  • "description": null,
  • "support": null,
  • "publicEmail": "user@example.com",
  • "name": "framasoft_videos"
}

Response samples

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

Get a video channel

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

The video channel handle

Responses

Response samples

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

Update a video channel

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

The video channel handle

Request Body schema: application/json
bulkVideosSupportUpdate
boolean

Update the support field for all videos of this channel

description
any

Channel description

displayName
any

Channel display name

publicEmail
string or null <email>

Public email visible in podcast RSS feeds

support
any

How to support/fund the channel

Responses

Request samples

Content type
application/json
{
  • "displayName": null,
  • "description": null,
  • "support": null,
  • "publicEmail": "user@example.com",
  • "bulkVideosSupportUpdate": true
}

Delete a video channel

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

The video channel handle

Responses

List videos of a video channel

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

The video channel handle

query Parameters
string or Array of strings

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

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

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

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

excludeAlreadyWatched
boolean

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

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

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

search
string

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

string or Array of strings

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

string or Array of strings

tag(s) of the video

Responses

Response samples

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

List activities of a video channel

PeerTube >= 8.0

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

The video channel handle

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

Number of items to return

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 a channel

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

The video channel handle

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

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

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

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Reorder channel playlists

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

The video channel handle

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

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

startPosition
required
integer >= 1

Start position of the element to reorder

reorderLength
integer >= 1

How many element from startPosition to reorder

Responses

Request samples

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

List followers of a video channel

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

The video channel handle

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

Number of items to return

search
string

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

sort
string
Value: "createdAt"

Sort followers by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Update channel avatar

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

The video channel handle

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

The file to upload.

Responses

Response samples

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

Delete channel avatar

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

The video channel handle

Responses

Update channel banner

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

The video channel handle

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

The file to upload.

Responses

Response samples

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

Delete channel banner

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

The video channel handle

Responses

Import videos in channel

Import a remote channel/playlist videos into a channel

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

The video channel handle

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

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

Responses

Request samples

Content type
application/json
{}

List video channels of an account

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

The username or handle of the account

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

Number of items to return

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

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

statsDays
integer
Default: 30
Enum: 30 90 365 0

number of days of view statistics to include in viewsPerDay when withStats is true (only if authenticated as the account user). 0 means all time (since the channel's earliest recorded stat). viewsPerDay always spans the whole requested range so channels can be compared to each other. Its bucket size is reported in viewsGroupInterval: it is derived from the requested range, narrowed to the channel history so that a young channel on a long range is not aggregated into a single coarse bucket. totalViews is unaffected by this parameter and always reports lifetime views.

withStats
boolean

include view statistics time series and total views (only if authenticated 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

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Search channels

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

Number of items to return

handles
Array of strings

Find elements with these handles

host
string

Find elements owned by this host

search
required
string

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

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

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

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

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

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

List channel collaborators

PeerTube >= 8.0

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

The video channel handle

Responses

Response samples

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

Invite a collaborator

PeerTube >= 8.0 Invite a local user to collaborate on the specified video channel.

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

The video channel handle

Request Body schema: application/json
required
accountHandle
string

Local user username to invite

Responses

Request samples

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

Response samples

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

Accept a collaboration invitation

PeerTube >= 8.0

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

The video channel handle

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

The collaborator id

Responses

Reject a collaboration invitation

PeerTube >= 8.0

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

The video channel handle

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

The collaborator id

Responses

Remove a channel collaborator

PeerTube >= 8.0 Only the channel owner or the collaborator themselves can remove a collaborator from a channel

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

The video channel handle

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

The collaborator id

Responses

Video Comments

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

List comments on user's videos

PeerTube >= 6.2

Authorizations:
OAuth2
query Parameters
string or Array of strings

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

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

isHeldForReview
boolean

only display comments that are held for review

search
string

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

searchAccount
string

Filter comments by searching on the account

searchVideo
string

Filter comments by searching on the video

videoChannelId
integer

Limit results on this specific video channel

videoId
integer

Limit results on this specific video

Responses

Response samples

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

List threads of a video

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

The object id, uuid or short uuid

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

Number of items to return

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

Sort comments by criteria

start
integer >= 0

Offset used to paginate results

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

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

Create a thread

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

The object id, uuid or short uuid

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

Text of the comment

Responses

Request samples

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

Response samples

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

Get a thread

Since PeerTube 8.3 the returned tree is truncated: only the first replies of each comment are included, and only down to maxDepth nesting levels. Use GET /api/v1/videos/{id}/comments/{commentId}/replies to fetch the replies that are missing, comparing children and totalChildren of each node of the tree.

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

The object id, uuid or short uuid

threadId
required
integer

The thread id (root comment id)

query Parameters
maxDepth
integer [ 1 .. 10 ]
Default: 5

Number of nesting levels to include below the requested comment. Bounded by repliesPerLevel and count, see the note on repliesPerLevel

repliesPerLevel
integer [ 1 .. 30 ]
Default: 10

Number of direct replies to include for each comment of the tree. Does not apply to the first level of GET /api/v1/videos/{id}/comments/{commentId}/replies, which is paginated using start and count. A tree can make the server walk through count * (repliesPerLevel ^ maxDepth - 1) / (repliesPerLevel - 1) comments, which grows exponentially. Combinations above 2000000 are rejected A deep tree has to be narrow and a wide tree has to be shallow.

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

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

List replies of a comment

PeerTube >= 8.3 List the direct replies of a comment, each of them nested up to maxDepth levels. Used to unfold the parts of a thread that GET /api/v1/videos/{id}/comment-threads/{threadId} truncated.

path Parameters
commentId
required
integer >= 1
Example: 42

The comment id

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

The object id, uuid or short uuid

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

Number of items to return

maxDepth
integer [ 1 .. 10 ]
Default: 5

Number of nesting levels to include below the requested comment. Bounded by repliesPerLevel and count, see the note on repliesPerLevel

repliesPerLevel
integer [ 1 .. 30 ]
Default: 10

Number of direct replies to include for each comment of the tree. Does not apply to the first level of GET /api/v1/videos/{id}/comments/{commentId}/replies, which is paginated using start and count. A tree can make the server walk through count * (repliesPerLevel ^ maxDepth - 1) / (repliesPerLevel - 1) comments, which grows exponentially. Combinations above 2000000 are rejected A deep tree has to be narrow and a wide tree has to be shallow.

sort
string
Default: "createdAt"
Enum: "createdAt" "-createdAt"

Sort the direct replies of the comment. Deeper levels of the tree are always sorted the same way. Defaults to createdAt so the replies are appended to the thread tree in the order it was built

start
integer >= 0

Offset used to paginate results

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

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

List instance comments

Authorizations:
OAuth2
query Parameters
string or Array of strings

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

includeMuted
boolean

PeerTube >= 8.2 Include comments from muted accounts

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

onLocalVideo
boolean

Display only objects of local or remote videos

search
string

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

searchAccount
string

Filter comments by searching on the account

searchVideo
string

Filter comments by searching on the video

videoChannelId
integer

Limit results on this specific video channel

videoId
integer

Limit results on this specific video

Responses

Response samples

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

Reply to a thread of a video

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

The comment id

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

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

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

Text of the comment

Responses

Request samples

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

Response samples

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

Delete a comment or a reply

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

The comment id

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

The object id, uuid or short uuid

Responses

Approve a comment

PeerTube >= 6.2 Approve a comment that requires a review

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

The comment id

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

The object id, uuid or short uuid

Responses

Video Rates

Like/dislike a video.

Get rate of my user for a video

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

Video id or UUID

Responses

Response samples

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

Like/dislike a video

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

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

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

Responses

Request samples

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

Video Playlists

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

List playlists of a channel

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

The video channel handle

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

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

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

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Reorder channel playlists

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

The video channel handle

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

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

startPosition
required
integer >= 1

Start position of the element to reorder

reorderLength
integer >= 1

How many element from startPosition to reorder

Responses

Request samples

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

List available playlist privacy policies

Responses

Response samples

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

List video playlists

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

Number of items to return

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

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

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Create a video playlist

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

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

Video playlist display name

description
string [ 3 .. 1000 ] characters

Video playlist description

privacy
integer (VideoPlaylistPrivacySet)
Enum: 1 2 3

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

thumbnailfile
string <binary>

Video playlist thumbnail file

videoChannelId
integer >= 1

Video channel in which the playlist will be published

Responses

Response samples

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

Get a video playlist

path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

Responses

Response samples

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

Update a video playlist

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

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

Playlist id

Request Body schema: multipart/form-data
description
string

Video playlist description

displayName
string [ 1 .. 120 ] characters

Video playlist display name

privacy
integer (VideoPlaylistPrivacySet)
Enum: 1 2 3

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

thumbnailfile
string <binary>

Video playlist thumbnail file

videoChannelId
integer >= 1

Video channel in which the playlist will be published

Responses

Delete a video playlist

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

Playlist id

Responses

List videos of a playlist

path Parameters
playlistId
required
integer >= 1
Example: 42

Playlist id

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

Number of items to return

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Add a video in a playlist

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

Playlist id

Request Body schema: application/json
required
string or integer

Video to add in the playlist

startTimestamp
integer <seconds>

Start the video at this specific timestamp

stopTimestamp
integer <seconds>

Stop the video at this specific timestamp

Responses

Request samples

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

Response samples

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

Reorder playlist elements

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

Playlist id

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

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

startPosition
required
integer >= 1

Start position of the element to reorder

reorderLength
integer >= 1

How many element from startPosition to reorder

Responses

Request samples

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

Update a playlist element

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

Playlist element id

playlistId
required
integer >= 1
Example: 42

Playlist id

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

Start the video at this specific timestamp

stopTimestamp
integer <seconds>

Stop the video at this specific timestamp

Responses

Request samples

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

Delete an element from a playlist

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

Playlist element id

playlistId
required
integer >= 1
Example: 42

Playlist id

Responses

Check video exists in my playlists

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

The video ids to check

Responses

Response samples

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

List playlists of an account

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

The username or handle of the account

query Parameters
string or Array of strings

PeerTube >= 8.0 Filter on playlists that are published on a channel with one of these names

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

playlistType
integer (VideoPlaylistTypeSet)
Enum: 1 2

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

search
string

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

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Search playlists

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

Number of items to return

host
string

Find elements owned by this host

search
required
string

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

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

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

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

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

Sort column

start
integer >= 0

Offset used to paginate results

uuids
Array of strings

Find elements with specific UUIDs

Responses

Response samples

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

Video Stats

Video statistics

Get overall stats of a video

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

The object id, uuid or short uuid

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

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

Get user agent stats of a video

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

The object id, uuid or short uuid

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

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

Get retention stats of a video

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

The object id, uuid or short uuid

Responses

Response samples

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

Get timeserie stats of a video

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

The object id, uuid or short uuid

metric
required
string
Enum: "viewers" "aggregateWatchTime"

The metric to get

query Parameters
endDate
string <date-time>

Filter stats by end date

startDate
string <date-time>

Filter stats by start date

Responses

Response samples

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

Ownership Change

List video ownership changes

List ownership change requests received by the authenticated user and requests sent by a channel managed by the authenticated user

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

Number of items to return

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

Offset used to paginate results

Responses

Response samples

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

Accept ownership change request

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

The object id, uuid or short uuid

Request Body schema: application/json
required
channelId
required
integer

Target channel id owned by the authenticated user

Responses

Request samples

Content type
application/json
{
  • "channelId": 0
}

Refuse ownership change request

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

The object id, uuid or short uuid

Responses

Delete ownership change request

Delete an ownership change request. Only users who can manage the video can delete the request.

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

The object id, uuid or short uuid

Responses

List ownership change requests for a video

List all ownership change requests for a specific video. The authenticated user must be able to manage the video.

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

Video id or UUID

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

Number of items to return

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

Offset used to paginate results

state
integer (ChangeOwnershipState)
Enum: 1 2 3

Filter by ownership change state

Responses

Response samples

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

Request ownership change

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

Video id or UUID

Request Body schema: application/json
required
username
required
string

Responses

Request samples

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

List channel ownership changes

List ownership change requests received by the authenticated user and requests sent by channels managed by the authenticated user

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

Number of items to return

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

Offset used to paginate results

Responses

Response samples

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

Accept channel ownership change request

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

The object id, uuid or short uuid

Responses

Refuse channel ownership change request

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

The object id, uuid or short uuid

Responses

Delete channel ownership change request

Delete a channel ownership change request. Only channel owners can delete the request.

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

The object id, uuid or short uuid

Responses

List ownership change requests for a channel

List all ownership change requests for a specific channel. The authenticated user must be able to manage the channel.

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

The video channel handle

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

Number of items to return

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

Offset used to paginate results

state
integer (ChangeOwnershipState)
Enum: 1 2 3

Filter by ownership change state

Responses

Response samples

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

Request channel ownership change

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

The video channel handle

Request Body schema: application/json
required
username
required
string

Responses

Request samples

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

Video Mirroring

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

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

List videos being mirrored

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

Number of items to return

sort
string
Value: "name"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

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

direction of the mirror

Responses

Response samples

Content type
application/json
[
  • {
    }
]

Mirror a video

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

object id for the video

Responses

Request samples

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

Delete a mirror done on a video

Authorizations:
OAuth2
path Parameters
redundancyId
required
string

id of an existing redundancy on a video

Responses

Video Files

Operations on video files

Delete video HLS files

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

The object id, uuid or short uuid

Responses

Delete video Web Video files

PeerTube >= 6.0

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

The object id, uuid or short uuid

Responses

Video Transcoding

Video transcoding related operations

Create a studio task

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

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

The object id, uuid or short uuid

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

Responses

Create a transcoding job

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

The object id, uuid or short uuid

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

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

Responses

Request samples

Content type
application/json
{
  • "transcodingType": "hls",
  • "forceTranscoding": false
}

Live Videos

Create a live

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

Channel id that will contain this live video

name
required
string [ 3 .. 120 ] characters

Live video/replay name

category
integer (VideoCategorySet)

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

commentsPolicy
integer (VideoCommentsPolicySet)
Enum: 1 2 3

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

description
string

Live video/replay description

downloadEnabled
boolean

Enable or disable downloading for the replay of this live video

language
string (VideoLanguageSet)

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

latencyMode
integer
Enum: 1 2 3

User can select live latency mode if enabled by the instance

licence
integer (VideoLicenceSet)

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

nsfw
boolean

Whether or not this live video/replay contains sensitive content

nsfwFlags
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

  • 0 NONE
  • 1 VIOLENT
  • 2 EXPLICIT_SEX
nsfwSummary
any

More information about the sensitive content of the video

permanentLive
boolean

User can stream multiple times in a permanent live

previewfile
string <binary>
Deprecated

Deprecated in PeerTube v8.1, use thumbnailfile instead

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

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

object (LiveVideoReplaySettings)
saveReplay
boolean
Array of objects (LiveSchedule)
support
string

A text tell the audience how to support the creator

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

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

thumbnailfile
string <binary>

Live video/replay thumbnail file

Responses

Response samples

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

Get information about a live

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

The object id, uuid or short uuid

Responses

Response samples

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

Update information about a live

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

The object id, uuid or short uuid

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

User can select live latency mode if enabled by the instance

permanentLive
boolean

User can stream multiple times in a permanent live

object (LiveVideoReplaySettings)
saveReplay
boolean
Array of objects (LiveSchedule)

Responses

Request samples

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

List live sessions

List all sessions created in a particular live

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

The object id, uuid or short uuid

query Parameters
sort
string
Example: sort=-createdAt

Sort column

Responses

Response samples

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

Get live session of a replay

If the video is a replay of a live, you can find the associated live session using this endpoint

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

The object id, uuid or short uuid

header Parameters
x-peertube-video-password
string

Required on password protected video

Responses

Response samples

Content type
application/json
{
  • "id": 0,
  • "startDate": "2019-08-24T14:15:22Z",
  • "endDate": "2019-08-24T14:15:22Z",
  • "error": 1,
  • "replayVideo": {
    }
}

Channels Sync

Operations dealing with synchronizing PeerTube user's channel with channels of other platforms

Import videos in channel

Import a remote channel/playlist videos into a channel

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

The video channel handle

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

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

Responses

Request samples

Content type
application/json
{}

Create a synchronization for a video channel

Authorizations:
OAuth2
Request Body schema: application/json
externalChannelUrl
string
videoChannelId
integer (id) >= 1
videoPrivacy
integer

Privacy of imported videos (1 = PUBLIC, 2 = UNLISTED, 3 = PRIVATE, 4 = INTERNAL). Password protected privacy is not supported

Responses

Request samples

Content type
application/json
{}

Response samples

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

Delete a video channel synchronization

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

Channel Sync id

Responses

Triggers the channel synchronization job, fetching all the videos from the remote channel

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

Channel Sync id

Responses

List the synchronizations of video channels of an account

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

The username or handle of the account

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

Number of items to return

includeCollaborations
boolean

PeerTube >= 8.0 Include objects from collaborated channels

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Video Passwords

Operations on video passwords.

List video passwords

PeerTube >= 6.0

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

The object id, uuid or short uuid

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

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

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

Update video passwords

PeerTube >= 6.0

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

The object id, uuid or short uuid

Request Body schema: application/json
passwords
Array of strings (AddVideoPasswords) unique [ items >= 2 characters ]

Responses

Request samples

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

Add a video password

PeerTube >= 8.0

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

The object id, uuid or short uuid

Request Body schema: application/json
password
string

Responses

Request samples

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

Delete a video password

PeerTube >= 6.0

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

The object id, uuid or short uuid

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

The video password id

Responses

Video Embed Privacy

Get video embed privacy

PeerTube >= 8.1

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

The object id, uuid or short uuid

Responses

Response samples

Content type
application/json
{
  • "policy": {
    },
  • "domains": [
    ]
}

Update video embed privacy

PeerTube >= 8.1

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

The object id, uuid or short uuid

Request Body schema: application/json
domains
Array of strings
policy
integer (VideoEmbedPrivacy)
Enum: 1 2 3 4

The video embed privacy level:

  • 1 All allowed: anyone can embed the video
  • 2 Allowlist: only the domains in the allowlist can embed the video
  • 3 Remote restrictions: the remote instance has restrictions on where the video can be embedded
  • 4 Nobody can embed this video

Responses

Request samples

Content type
application/json
{
  • "policy": 1,
  • "domains": [
    ]
}

Check if embed is allowed

PeerTube >= 8.1 Check if video embed is allowed on a specific domain according to the video embed privacy settings

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

The object id, uuid or short uuid

query Parameters
domain
required
string

The domain to check if embed is allowed

Responses

Response samples

Content type
application/json
{
  • "domainAllowed": true,
  • "userBypassAllowed": true
}

Search

The search helps to find videos or channels from within the instance and beyond. Videos from other instances federated by the instance (that is, instances followed by the instance) can be found via keywords and other criteria of the advanced search.

Administrators can also enable the use of a remote search system, indexing videos and channels that may not be federated by the instance.

Search videos

query Parameters
string or Array of strings

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

VideoCategorySet (integer) or Array of VideoCategorySet (integers)

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

count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

durationMax
integer

Get videos that have this maximum duration

durationMin
integer

Get videos that have this minimum duration

endDate
string <date-time>

Get videos that are published before this date

excludeAlreadyWatched
boolean

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

hasHLSFiles
boolean

PeerTube >= 4.0 Display only videos that have HLS files

hasWebVideoFiles
boolean

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

host
string

Find elements owned by this host

include
integer
Enum: 0 1 2 4 8 16 32

Only administrators and moderators can use this parameter

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

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

whether or not include live that are scheduled for later

isLive
boolean

whether or not the video is a live

isLocal
boolean

PeerTube >= 4.0 Display only local or remote objects

VideoLanguageSet (string) or Array of VideoLanguageSet (strings)

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

VideoLicenceSet (integer) or Array of VideoLicenceSet (integers)

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

nsfw
string
Enum: "true" "false"

whether to include nsfw videos, if any

nsfwFlagsExcluded
integer (NSFWFlag)
Enum: 0 1 2 4

NSFW flags (can be combined using bitwise or operator)

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

NSFW flags (can be combined using bitwise or operator)

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

Get videos that are originally published before this date

originallyPublishedStartDate
string <date-time>

Get videos that are originally published after this date

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

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

search
required
string

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

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

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

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

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

if you don't need the total in the response

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

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

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

Offset used to paginate results

startDate
string <date-time>

Get videos that are published after this date

integer or Array of integers

PeerTube >= 8.2 Admins and moderators only filter on videos that have one of these states

string or Array of strings

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

string or Array of strings

tag(s) of the video

uuids
Array of strings

Find elements with specific UUIDs

Responses

Response samples

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

Search channels

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

Number of items to return

handles
Array of strings

Find elements with these handles

host
string

Find elements owned by this host

search
required
string

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

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

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

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

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Search playlists

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

host
string

Find elements owned by this host

search
required
string

String to search. If the user can make a remote URI search, and the string is an URI then the PeerTube instance will fetch the remote object and add it to its database. Then, you can use the REST API to fetch the complete playlist information and interact with it.

searchTarget
string
Enum: "local" "search-index"

If the administrator enabled search index support, you can override the default search target.

Warning: If you choose to make an index search, PeerTube will get results from a third party service. It means the instance may not yet know the objects you fetched. If you want to load video/channel information:

  • If the current user has the ability to make a remote URI search (this information is available in the config endpoint), then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database. After that, you can use the classic REST API endpoints to fetch the complete object or interact with it
  • If the current user doesn't have the ability to make a remote URI search, then redirect the user on the origin instance or fetch the data from the origin instance API
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

uuids
Array of strings

Find elements with specific UUIDs

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Abuses

Abuses deal with reports of local or remote videos/comments/accounts alike.

List my abuses

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

id
integer

only list the report with this id

sort
string
Enum: "-id" "-createdAt" "-state"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

List abuses

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

filter
string
Enum: "video" "comment" "account"

only list account, comment or video reports

id
integer

only list the report with this id

predefinedReason
Array of strings (PredefinedAbuseReasons) <= 8 items
Items Enum: "violentOrAbusive" "hatefulOrAbusive" "spamOrMisleading" "privacy" "rights" "serverRules" "thumbnails" "captions"

predefined reason the listed reports should contain

search
string

plain search that will match with video titles, reporter names and more

searchReportee
string

only list reports of a specific reportee

searchReporter
string

only list reports of a specific reporter

searchVideo
string

only list reports of a specific video

searchVideoChannel
string

only list reports of a specific video channel

sort
string
Enum: "-id" "-createdAt" "-state"

Sort abuses by criteria

start
integer >= 0

Offset used to paginate results

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

videoIs
string
Enum: "deleted" "blacklisted"

only list deleted or blocklisted videos

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Report an abuse

You cannot report a video that you own or on which you are a collaborator (video channel editor).

Authorizations:
OAuth2
Request Body schema: application/json
required
reason
required
string [ 2 .. 3000 ] characters

Reason why the user reports this video

object
object
predefinedReasons
Array of strings (PredefinedAbuseReasons) <= 8 items
Items Enum: "violentOrAbusive" "hatefulOrAbusive" "spamOrMisleading" "privacy" "rights" "serverRules" "thumbnails" "captions"

Reason categories that help triage reports

object

Responses

Request samples

Content type
application/json
{
  • "reason": "string",
  • "predefinedReasons": [
    ],
  • "video": {
    },
  • "comment": {
    },
  • "account": {
    }
}

Response samples

Content type
application/json
{
  • "abuse": {
    }
}

Update an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Request Body schema: application/json
moderationComment
string [ 2 .. 3000 ] characters

Update the report comment visible only to the moderation team

state
integer (AbuseStateSet)
Enum: 1 2 3

The abuse state (Pending = 1, Rejected = 2, Accepted = 3)

Responses

Request samples

Content type
application/json
{
  • "state": 1,
  • "moderationComment": "string"
}

Delete an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Responses

List messages of an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add message to an abuse

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

Request Body schema: application/json
required
message
required
string [ 2 .. 3000 ] characters

Message to send

Responses

Request samples

Content type
application/json
{
  • "message": "string"
}

Delete an abuse message

Authorizations:
OAuth2
path Parameters
abuseId
required
integer >= 1
Example: 42

Abuse id

abuseMessageId
required
integer >= 1
Example: 42

Abuse message id

Responses

Video Blocks

Operations dealing with blocking videos (removing them from view and preventing interactions).

Block a video

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
internalNote
string

Internal note for moderators/admins

reason
string

Reason for the block (public)

unfederate
boolean

Whether to unfederate the video

Responses

Request samples

Content type
application/json
{
  • "reason": "string",
  • "unfederate": true,
  • "internalNote": "string"
}

Update a video block

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Request Body schema: application/json
internalNote
string

Internal note for moderators/admins

reason
string

Reason for the block (displayed publicly)

Responses

Request samples

Content type
application/json
{
  • "reason": "string",
  • "internalNote": "string"
}

Unblock a video by its id

Authorizations:
OAuth2
path Parameters
required
id (integer) or UUIDv4 (string) or shortUUID (string)

The object id, uuid or short uuid

Responses

List video blocks

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

plain search that will match with video titles, and more

sort
string
Enum: "-id" "name" "-duration" "-views" "-likes" "-dislikes" "-uuid" "-createdAt"

Sort blocklists by criteria

start
integer >= 0

Offset used to paginate results

type
integer
Enum: 1 2

list only blocks that match this type:

  • 1: manual block
  • 2: automatic block that needs review

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Account Blocklist

Get block status of accounts/hosts

query Parameters
accounts
Array of strings
Example: accounts=goofy@example.com&accounts=donald@example.com

Check if these accounts are blocked

hosts
Array of strings
Example: hosts=example.com

Check if these hosts are blocked

Responses

Response samples

Content type
application/json
{
  • "accounts": {
    },
  • "hosts": {
    }
}

List accounts blocked by my account

Get the list of accounts that the authenticated user has blocked

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Search query string

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": [
    ]
}

Block an account by my account

Add an account to the authenticated user's blocklist

Authorizations:
OAuth2
Request Body schema: application/json
required
accountName
required
string

Account name to block (format: name@host)

Responses

Request samples

Content type
application/json
{
  • "accountName": "user@example.com"
}

Unblock an account by my account

Remove an account from the authenticated user's blocklist

Authorizations:
OAuth2
path Parameters
accountName
required
string
Example: user@example.com

Account name to unblock (format: name@host)

Responses

List servers blocked by my account

Get the list of servers that the authenticated user has blocked

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Search query string

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": [
    ]
}

Block a server by my account

Add a server to the authenticated user's blocklist

Authorizations:
OAuth2
Request Body schema: application/json
required
host
required
string

Server host to block

Responses

Request samples

Content type
application/json
{
  • "host": "example.com"
}

Unblock a server by my account

Remove a server from the authenticated user's blocklist

Authorizations:
OAuth2
path Parameters
host
required
string
Example: example.com

Server host to unblock

Responses

Server Blocklist

Get block status of accounts/hosts

query Parameters
accounts
Array of strings
Example: accounts=goofy@example.com&accounts=donald@example.com

Check if these accounts are blocked

hosts
Array of strings
Example: hosts=example.com

Check if these hosts are blocked

Responses

Response samples

Content type
application/json
{
  • "accounts": {
    },
  • "hosts": {
    }
}

List blocked accounts by server

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

subscriptionName
string

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Block an account by server

Authorizations:
OAuth2
Request Body schema: application/json
accountName
required
string

account to block, in the form username@domain

Responses

Request samples

Content type
application/json
{
  • "accountName": "chocobozzz@example.org"
}

Unblock an account by server

Authorizations:
OAuth2
path Parameters
accountName
required
string

account to unblock, in the form username@domain

Responses

List blocked servers by server

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

subscriptionName
string

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Block a server by server

Authorizations:
OAuth2
Request Body schema: application/json
host
required
string <hostname>

server domain to block

Responses

Request samples

Content type
application/json
{
  • "host": "example.com"
}

Unblock a server by server

Authorizations:
OAuth2
path Parameters
host
required
string <hostname>

server domain to unblock

Responses

List server blocklist subscriptions

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add a server blocklist subscription

Authorizations:
OAuth2
Request Body schema: application/json
url
required
string <url>

Responses

Request samples

Content type
application/json
{
  • "url": "string"
}

Response samples

Content type
application/json
{
  • "id": 42,
  • "name": "string",
  • "url": "string",
  • "mutedAccountsCount": 0,
  • "mutedServersCount": 0,
  • "lastSyncAt": "2019-08-24T14:15:22Z",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

Delete a server blocklist subscription

Authorizations:
OAuth2
path Parameters
id
required
integer

Responses

List publicly shared server blocklist log entries

query Parameters
startDate
required
string <date-time>

Responses

Response samples

Content type
application/json
{
  • "name": "string",
  • "actions": [
    ]
}

Automatic Tags

Automatic tags set on objects (like comments or videos) by specific rules (external link, watched words, etc.)

Get account auto tag policies on comments

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to get auto tag policies

Responses

Response samples

Content type
application/json
{
  • "review": [
    ]
}

Update account auto tag policies on comments

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to update auto tag policies

Request Body schema: application/json
review
Array of strings

Auto tags that automatically set the comment in review state

Responses

Request samples

Content type
application/json
{
  • "review": [
    ]
}

Get account available auto tags

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to get auto tag policies

Responses

Response samples

Content type
application/json
{
  • "available": [
    ]
}

Get server available auto tags

PeerTube >= 6.2

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "available": [
    ]
}

Get server auto tag policies for videos

PeerTube >= 8.3

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "autoBlock": [
    ]
}

Update server auto tag policies for videos

PeerTube >= 8.3

Authorizations:
OAuth2
Request Body schema: application/json
autoBlock
Array of strings

Auto tags that will automatically block videos matching these tags

Responses

Request samples

Content type
application/json
{
  • "autoBlock": [
    ]
}

Watched Words

Manage list of watched words to detect patterns on objects (like comments of videos)

List account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to list watched words

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Response samples

Content type
application/json
{
  • "watchedWordsList": {
    }
}

Update account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
listId
required
string

list of watched words to update

Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Delete account watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
accountName
required
string
listId
required
string

list of watched words to delete

Responses

List server watched words

PeerTube >= 6.2

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Response samples

Content type
application/json
{
  • "watchedWordsList": {
    }
}

Update server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
listId
required
string

list of watched words to update

Request Body schema: application/json
listName
string
words
Array of strings

Responses

Request samples

Content type
application/json
{
  • "listName": "string",
  • "words": [
    ]
}

Delete server watched words

PeerTube >= 6.2

Authorizations:
OAuth2
path Parameters
listId
required
string

list of watched words to delete

Responses

List account watched words subscriptions

Authorizations:
OAuth2
path Parameters
accountName
required
string

account name to list watched words subscriptions

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
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add account watched words subscription

Authorizations:
OAuth2
path Parameters
accountName
required
string
Request Body schema: application/json
url
required
string <url>

Responses

Request samples

Content type
application/json
{
  • "url": "string"
}

Response samples

Content type
application/json
{
  • "id": 42,
  • "name": "string",
  • "url": "string",
  • "importedWordsCount": 0,
  • "lastSyncAt": "2021-05-04T08:01:01.502Z",
  • "state": {
    },
  • "updatedAt": "2021-05-04T08:01:01.502Z",
  • "createdAt": "2021-05-04T08:01:01.502Z"
}

Delete account watched words subscription

Authorizations:
OAuth2
path Parameters
accountName
required
string
id
required
integer

Responses

List server watched words subscriptions

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Add server watched words subscription

Authorizations:
OAuth2
Request Body schema: application/json
url
required
string <url>

Responses

Request samples

Content type
application/json
{
  • "url": "string"
}

Response samples

Content type
application/json
{
  • "id": 42,
  • "name": "string",
  • "url": "string",
  • "importedWordsCount": 0,
  • "lastSyncAt": "2021-05-04T08:01:01.502Z",
  • "state": {
    },
  • "updatedAt": "2021-05-04T08:01:01.502Z",
  • "createdAt": "2021-05-04T08:01:01.502Z"
}

Delete server watched words subscription

Authorizations:
OAuth2
path Parameters
id
required
integer

Responses

Config

Each server exposes public information regarding supported videos and options.

Get instance public configuration

Responses

Response samples

Content type
application/json
{
  • "client": {
    },
  • "defaults": {
    },
  • "webadmin": {
    },
  • "instance": {},
  • "search": {
    },
  • "plugin": {
    },
  • "theme": {
    },
  • "email": {
    },
  • "contactForm": {
    },
  • "serverVersion": "8.2.4-nightly-2026-08-19",
  • "serverCommit": "",
  • "transcoding": {
    },
  • "live": {
    },
  • "videoStudio": {
    },
  • "videoFile": {
    },
  • "videoTranscription": {
    },
  • "import": {
    },
  • "export": {
    },
  • "autoBlacklist": {
    },
  • "avatar": {
    },
  • "banner": {
    },
  • "logo": {
    },
  • "video": {
    },
  • "videoCaption": {
    },
  • "user": {
    },
  • "videoChannels": {
    },
  • "trending": {
    },
  • "tracker": {
    },
  • "followings": {},
  • "blocklist": {
    },
  • "federation": {
    },
  • "broadcastMessage": {
    },
  • "homepage": {
    },
  • "openTelemetry": {
    },
  • "views": {
    },
  • "storyboards": {
    },
  • "webrtc": {
    },
  • "nsfwFlagsSettings": {
    },
  • "fieldsConstraints": {
    },
  • "signup": {
    }
}

Get instance "About" information

Responses

Response samples

Content type
application/json
{}

Get instance runtime configuration

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
{
  • "instance": {
    },
  • "theme": {
    },
  • "services": {
    },
  • "cache": {
    },
  • "signup": {
    },
  • "admin": {
    },
  • "contactForm": {
    },
  • "user": {
    },
  • "transcoding": {
    },
  • "import": {
    },
  • "autoBlacklist": {
    },
  • "blocklist": {
    },
  • "followers": {
    },
  • "storyboard": {
    },
  • "defaults": {
    }
}

Set instance runtime configuration

Authorizations:
OAuth2

Responses

Delete instance runtime configuration

Authorizations:
OAuth2

Responses

Update instance banner

Authorizations:
OAuth2
Request Body schema: multipart/form-data
bannerfile
string <binary>

The file to upload.

Responses

Delete instance banner

Authorizations:
OAuth2

Responses

Update instance avatar

Authorizations:
OAuth2
Request Body schema: multipart/form-data
avatarfile
string <binary>

The file to upload.

Responses

Delete instance avatar

Authorizations:
OAuth2

Responses

Update instance logo

Authorizations:
OAuth2
path Parameters
logoType
required
string
Enum: "favicon" "header-wide" "header-square" "opengraph"
Request Body schema: multipart/form-data
logofile
string <binary>

The file to upload.

Responses

Delete instance logo

Authorizations:
OAuth2
path Parameters
logoType
required
string
Enum: "favicon" "header-wide" "header-square" "opengraph"

Responses

Client Config

Configuration of the web client.

Update client language Deprecated

Set a cookie so that the next time the client refreshes the HTML of the web interface, PeerTube uses the selected language.

Request Body schema: application/json
required
language
required
string or null

Language code to set

Responses

Request samples

Content type
application/json
{
  • "language": "en-US"
}

Update client language

Set a cookie so that the next time the client refreshes the HTML of the web interface, PeerTube uses the selected language.

Request Body schema: application/json
required
language
required
string or null

Language code to set, or null to clear the preference

Responses

Request samples

Content type
application/json
{
  • "language": "en-US"
}

Homepage

Get and update the custom homepage

Get instance custom homepage

Responses

Response samples

Content type
application/json
{
  • "content": "string"
}

Set instance custom homepage

Authorizations:
OAuth2
Request Body schema: application/json
content
string

content of the homepage, that will be injected in the client

Responses

Request samples

Content type
application/json
{
  • "content": "string"
}

Instance Follows

Managing servers which the instance interacts with is crucial to the concept of federation in PeerTube and external video indexation. The PeerTube server then deals with inter-server ActivityPub operations and propagates information across its social graph by posting activities to actors' inbox endpoints.

List instances following the server

query Parameters
actorType
string
Enum: "Person" "Application" "Group" "Service" "Organization"
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

state
string
Enum: "pending" "accepted"

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Remove or reject a follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

Reject a pending follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

Accept a pending follower to your server

Authorizations:
OAuth2
path Parameters
handle
required
string <email>

The remote actor handle to remove from your followers

Responses

List instances followed by the server

query Parameters
actorType
string
Enum: "Person" "Application" "Group" "Service" "Organization"
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

state
string
Enum: "pending" "accepted"

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Follow a list of actors (PeerTube instance, channel or account)

Authorizations:
OAuth2
Request Body schema: application/json
handles
Array of strings unique
hosts
Array of strings <hostname> unique [ items <hostname > ]

Responses

Request samples

Content type
application/json
{
  • "hosts": [
    ],
  • "handles": [
    ]
}

Unfollow an actor (PeerTube instance, channel or account)

Authorizations:
OAuth2
path Parameters
hostOrHandle
required
string

The hostOrHandle to unfollow

Responses

Instance Redundancy

Redundancy is part of the inter-server solidarity that PeerTube fosters. Manage the list of instances you wish to help by seeding their videos according to the policy of video selection of your choice. Note that you have a similar functionality to mirror individual videos, see video mirroring.

Update a server redundancy policy

Authorizations:
OAuth2
path Parameters
host
required
string <hostname>

server domain to mirror

Request Body schema: application/json
redundancyAllowed
required
boolean

allow mirroring of the host's local videos

Responses

Request samples

Content type
application/json
{
  • "redundancyAllowed": true
}

Plugins

Managing plugins installed from a local path or from NPM, or search for new ones.

List plugins

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

pluginType
integer
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

uninstalled
boolean

Responses

Response samples

Content type
application/json
{}

List available plugins

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

currentPeerTubeEngine
string
pluginType
integer
search
string
sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{}

Install a plugin

Authorizations:
OAuth2
Request Body schema: application/json
One of
npmName
required
string

Responses

Request samples

Content type
application/json
{
  • "path": "string"
}

Update a plugin

Authorizations:
OAuth2
Request Body schema: application/json
One of
npmName
required
string

Responses

Request samples

Content type
application/json
{
  • "path": "string"
}

Uninstall a plugin

Authorizations:
OAuth2
Request Body schema: application/json
npmName
required
string

name of the plugin/theme in its package.json

Responses

Request samples

Content type
application/json
{
  • "npmName": "peertube-plugin-auth-ldap"
}

Get a plugin

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{}

Set a plugin's settings

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Request Body schema: application/json
object

Responses

Request samples

Content type
application/json
{
  • "settings": { }
}

Get a plugin's public settings

path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{ }

Get a plugin's registered settings

Authorizations:
OAuth2
path Parameters
npmName
required
string
Example: peertube-plugin-auth-ldap

name of the plugin/theme on npmjs.com or in its package.json

Responses

Response samples

Content type
application/json
{ }

Stats

Statistics

Get instance stats

Get instance public statistics. This endpoint is cached.

Responses

Response samples

Content type
application/json
{
  • "totalUsers": 0,
  • "totalDailyActiveUsers": 0,
  • "totalWeeklyActiveUsers": 0,
  • "totalMonthlyActiveUsers": 0,
  • "totalModerators": 0,
  • "totalAdmins": 0,
  • "totalLocalVideos": 0,
  • "totalLocalVideoViews": 0,
  • "totalLocalVideoDownloads": 0,
  • "totalLocalVideoComments": 0,
  • "totalLocalVideoFilesSize": 0,
  • "totalVideos": 0,
  • "totalVideoComments": 0,
  • "totalLocalVideoChannels": 0,
  • "totalLocalDailyActiveVideoChannels": 0,
  • "totalLocalWeeklyActiveVideoChannels": 0,
  • "totalLocalMonthlyActiveVideoChannels": 0,
  • "totalLocalPlaylists": 0,
  • "totalInstanceFollowers": 0,
  • "totalInstanceFollowing": 0,
  • "videosRedundancy": [
    ],
  • "totalActivityPubMessagesProcessed": 0,
  • "totalActivityPubMessagesSuccesses": 0,
  • "totalActivityPubMessagesErrors": 0,
  • "activityPubMessagesProcessedPerSecond": 0,
  • "totalActivityPubMessagesWaiting": 0,
  • "averageRegistrationRequestResponseTimeMs": 0,
  • "totalRegistrationRequestsProcessed": 0,
  • "totalRegistrationRequests": 0,
  • "averageAbuseResponseTimeMs": 0,
  • "totalAbusesProcessed": 0,
  • "totalAbuses": 0
}

Create playback metrics

These metrics are exposed by OpenTelemetry metrics exporter if enabled.

Request Body schema: application/json
downloadedBytesHTTP
required
number

How many bytes were downloaded with HTTP since the last metric creation

downloadedBytesP2P
required
number

How many bytes were downloaded with P2P since the last metric creation

errors
required
number

How many errors occurred since the last metric creation

p2pEnabled
required
boolean
playerMode
required
string
Enum: "p2p-media-loader" "web-video"
resolutionChanges
required
number

How many resolution changes occurred since the last metric creation

uploadedBytesP2P
required
number

How many bytes were uploaded with P2P since the last metric creation

required
id (integer) or UUIDv4 (string) or shortUUID (string)
bufferStalled
number

How many times buffer has been stalled since the last metric creation

fps
number

Current player video fps

p2pPeers
number

P2P peers connected (doesn't include WebSeed peers)

resolution
number

Current player video resolution

Responses

Request samples

Content type
application/json
{
  • "playerMode": "p2p-media-loader",
  • "resolution": 0,
  • "fps": 0,
  • "p2pEnabled": true,
  • "p2pPeers": 0,
  • "resolutionChanges": 0,
  • "bufferStalled": 0,
  • "errors": 0,
  • "downloadedBytesP2P": 0,
  • "downloadedBytesHTTP": 0,
  • "uploadedBytesP2P": 0,
  • "videoId": 42
}

Logs

Operations dealing with client, server and audit logs.

Send client log

Request Body schema: application/json
level
required
any
Enum: "error" "warn"
message
required
string
url
required
string

URL of the current user page

meta
string

Additional information regarding this log

stackTrace
string

Stack trace of the error if there is one

userAgent
string

User agent of the web browser that sends the message

Responses

Request samples

Content type
application/json
{
  • "message": "string",
  • "url": "string",
  • "level": "error",
  • "stackTrace": "string",
  • "userAgent": "string",
  • "meta": "string"
}

Get instance logs

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • "string"
]

Get instance audit logs

Authorizations:
OAuth2

Responses

Response samples

Content type
application/json
[
  • "string"
]

Job

Jobs are long-running tasks enqueued and processed by the instance itself. No additional worker registration is currently available.

Pause job queue

Authorizations:
OAuth2

Responses

Resume job queue

Authorizations:
OAuth2

Responses

List instance jobs

Authorizations:
OAuth2
path Parameters
state
required
string
Enum: "" "active" "completed" "failed" "waiting" "delayed"

The state of the job ('' for for no filter)

query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

jobType
string (JobType)
Enum: "activitypub-cleaner" "activitypub-follow" "activitypub-http-broadcast" "activitypub-http-broadcast-parallel" "activitypub-http-fetcher" "activitypub-http-unicast" "activitypub-refresher" "actor-keys" "after-video-channel-import" "build-automatic-tags" "create-user-export" "email" "federate-video" "generate-video-storyboard" "import-user-archive" "manage-video-torrent" "move-to-file-system" "move-to-object-storage" "notify" "transcoding-job-builder" "video-channel-import" "video-file-import" "video-import" "video-live-ending" "video-redundancy" "video-studio-edition" "video-transcoding" "video-transcription" "videos-stats"

job type

sort
string
Example: sort=-createdAt

Sort column

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Cancel a job

Abort a running job and its underlying ffmpeg/child process. Only active jobs that support cancellation can be cancelled.

Authorizations:
OAuth2
path Parameters
jobId
required
string

The id of the job to cancel

jobType
required
string (JobType)
Enum: "activitypub-cleaner" "activitypub-follow" "activitypub-http-broadcast" "activitypub-http-broadcast-parallel" "activitypub-http-fetcher" "activitypub-http-unicast" "activitypub-refresher" "actor-keys" "after-video-channel-import" "build-automatic-tags" "create-user-export" "email" "federate-video" "generate-video-storyboard" "import-user-archive" "manage-video-torrent" "move-to-file-system" "move-to-object-storage" "notify" "transcoding-job-builder" "video-channel-import" "video-file-import" "video-import" "video-live-ending" "video-redundancy" "video-studio-edition" "video-transcoding" "video-transcription" "videos-stats"

The type of the job to cancel

Responses

Runner Registration Token

Manage runner registration tokens.

Generate registration token

Generate a new runner registration token

Authorizations:
OAuth2

Responses

Remove registration token

Remove a registration token. Runners that used this token for their registration are automatically removed.

Authorizations:
OAuth2
path Parameters
registrationTokenId
required
integer

Responses

List registration tokens

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Value: "createdAt"

Sort registration tokens by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Runner Jobs

Manage runner jobs and runner-side job execution.

Request a new job

API used by PeerTube runners

Request Body schema: application/json
runnerToken
required
string
jobTypes
Array of strings

Filter jobs depending on their types

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobTypes": [
    ]
}

Response samples

Content type
application/json
{
  • "availableJobs": [
    ]
}

Accept job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

Response samples

Content type
application/json
{
  • "job": {
    }
}

Abort job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
reason
required
string

Why the runner aborts this job

runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "reason": "string"
}

Update job

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
runnerToken
required
string
object
progress
integer

Update job progression percentage (optional)

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "progress": 0,
  • "payload": {
    }
}

Post job error

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
message
required
string

Why the runner failed to process this job

runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "message": "string"
}

Post job success

API used by PeerTube runners

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
Request Body schema: application/json
jobToken
required
string
required
VOD web video transcoding (object) or VOD HLS transcoding (object) or VOD audio merge transcoding (object) or Live RTMP to HLS transcoding (object)
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string",
  • "payload": {
    }
}

Download the max-quality audio file for a job video

API used by PeerTube runners.

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
required
id (integer) or UUIDv4 (string) or shortUUID (string)

Video id or UUID

Request Body schema: application/json
required
jobToken
required
string
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string"
}

Download the max-quality video file for a job video

API used by PeerTube runners.

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
required
id (integer) or UUIDv4 (string) or shortUUID (string)

Video id or UUID

Request Body schema: application/json
required
jobToken
required
string
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string"
}

Download the max-quality thumbnail for a job video

API used by PeerTube runners.

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
required
id (integer) or UUIDv4 (string) or shortUUID (string)

Video id or UUID

Request Body schema: application/json
required
jobToken
required
string
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string"
}

Download the max-quality preview for a job video

API used by PeerTube runners.

path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
required
id (integer) or UUIDv4 (string) or shortUUID (string)

Video id or UUID

Request Body schema: application/json
required
jobToken
required
string
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string"
}

Download a video studio task file for a job video

API used by PeerTube runners.

path Parameters
filename
required
string

Name of the task file to download

jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d
required
id (integer) or UUIDv4 (string) or shortUUID (string)

Video id or UUID

Request Body schema: application/json
required
jobToken
required
string
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string",
  • "jobToken": "string"
}

Cancel a job

Authorizations:
OAuth2
path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d

Responses

Delete a job

The endpoint will first cancel the job if needed, and then remove it from the database. Children jobs will also be removed

Authorizations:
OAuth2
path Parameters
jobUUID
required
string <uuid> (UUIDv4) = 36 characters ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]...
Example: 9c9de5e8-0a1e-484a-b099-e80766180a6d

Responses

List jobs

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

search
string

Plain text search, applied to various parts of the model depending on endpoint

sort
string
Enum: "updatedAt" "createdAt" "priority" "state" "progress"

Sort runner jobs by criteria

start
integer >= 0

Offset used to paginate results

stateOneOf
Array of integers (RunnerJobState)
Items Enum: 1 2 3 4 5 6 7 8
typeOneOf
Array of strings (RunnerJobType)
Items Enum: "vod-web-video-transcoding" "vod-hls-transcoding" "vod-audio-merge-transcoding" "live-rtmp-hls-transcoding"

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}

Runners

Register, list and remove remote runners.

Register a new runner

API used by PeerTube runners

Request Body schema: application/json
name
required
string
registrationToken
required
string
description
string

Responses

Request samples

Content type
application/json
{
  • "registrationToken": "string",
  • "name": "string",
  • "description": "string"
}

Response samples

Content type
application/json
{
  • "id": 0,
  • "runnerToken": "string"
}

Unregister a runner

API used by PeerTube runners

Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

Delete a runner

Authorizations:
OAuth2
path Parameters
runnerId
required
integer
Request Body schema: application/json
runnerToken
required
string

Responses

Request samples

Content type
application/json
{
  • "runnerToken": "string"
}

List runners

Authorizations:
OAuth2
query Parameters
count
integer [ 1 .. 100 ]
Default: 15

Number of items to return

sort
string
Value: "createdAt"

Sort runners by criteria

start
integer >= 0

Offset used to paginate results

Responses

Response samples

Content type
application/json
{
  • "total": 1,
  • "data": [
    ]
}