{ "openapi": "3.0.3", "info": { "title": "PeerTube", "version": "8.0.0", "contact": { "name": "PeerTube Community", "url": "https://joinpeertube.org" }, "license": { "name": "AGPLv3.0", "url": "https://github.com/Chocobozzz/PeerTube/blob/master/LICENSE" }, "x-logo": { "url": "https://joinpeertube.org/img/brand.png", "altText": "PeerTube Project Homepage" }, "description": "The PeerTube API is built on HTTP(S) and is RESTful. You can use your favorite\nHTTP/REST library for your programming language to use PeerTube.\n\nSee the [REST API quick start](https://docs.joinpeertube.org/api/rest-getting-started) for a few\nexamples of using the PeerTube API.\n\n# Authentication\n\nWhen you sign up for an account on a PeerTube instance, you are given the possibility\nto generate sessions on it, and authenticate there using an access token. Only __one\naccess token can currently be used at a time__.\n\n## Roles\n\nAccounts are given permissions based on their role. There are three roles on\nPeerTube: Administrator, Moderator, and User. See the [roles guide](https://docs.joinpeertube.org/admin/managing-users#roles) for a detail of their permissions.\n\n# Errors\n\nThe API uses standard HTTP status codes to indicate the success or failure\nof the API call, completed by a [RFC7807-compliant](https://tools.ietf.org/html/rfc7807) response body.\n\n```\nHTTP 1.1 404 Not Found\nContent-Type: application/problem+json; charset=utf-8\n\n{\n \"detail\": \"Video not found\",\n \"docs\": \"https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo\",\n \"status\": 404,\n \"title\": \"Not Found\",\n \"type\": \"about:blank\"\n}\n```\n\nWe provide error `type` (following RFC7807) and `code` (internal PeerTube code) values for [a growing number of cases](https://github.com/Chocobozzz/PeerTube/blob/develop/packages/models/src/server/server-error-code.enum.ts),\nbut it is still optional. Types are used to disambiguate errors that bear the same status code\nand are non-obvious:\n\n```\nHTTP 1.1 403 Forbidden\nContent-Type: application/problem+json; charset=utf-8\n\n{\n \"detail\": \"Cannot get this video regarding follow constraints\",\n \"docs\": \"https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo\",\n \"status\": 403,\n \"title\": \"Forbidden\",\n \"type\": \"https://docs.joinpeertube.org/api-rest-reference.html#section/Errors/does_not_respect_follow_constraints\"\n}\n```\n\nHere a 403 error could otherwise mean that the video is private or blocklisted.\n\n### Validation errors\n\nEach parameter is evaluated on its own against a set of rules before the route validator\nproceeds with potential testing involving parameter combinations. Errors coming from validation\nerrors appear earlier and benefit from a more detailed error description:\n\n```\nHTTP 1.1 400 Bad Request\nContent-Type: application/problem+json; charset=utf-8\n\n{\n \"detail\": \"Incorrect request parameters: id\",\n \"docs\": \"https://docs.joinpeertube.org/api-rest-reference.html#operation/getVideo\",\n \"instance\": \"/api/v1/videos/9c9de5e8-0a1e-484a-b099-e80766180\",\n \"invalid-params\": {\n \"id\": {\n \"location\": \"params\",\n \"msg\": \"Invalid value\",\n \"param\": \"id\",\n \"value\": \"9c9de5e8-0a1e-484a-b099-e80766180\"\n }\n },\n \"status\": 400,\n \"title\": \"Bad Request\",\n \"type\": \"about:blank\"\n}\n```\n\nWhere `id` is the name of the field concerned by the error, within the route definition.\n`invalid-params..location` can be either 'params', 'body', 'header', 'query' or 'cookies', and\n`invalid-params..value` reports the value that didn't pass validation whose `invalid-params..msg`\nis about.\n\n### Deprecated error fields\n\nSome fields could be included with previous versions. They are still included but their use is deprecated:\n- `error`: superseded by `detail`\n\n# Rate limits\n\nWe are rate-limiting all endpoints of PeerTube's API. Custom values can be set by administrators:\n\n| Endpoint (prefix: `/api/v1`) | Calls | Time frame |\n|------------------------------|---------------|--------------|\n| `/*` | 50 | 10 seconds |\n| `POST /users/token` | 15 | 5 minutes |\n| `POST /users/register` | 2* | 5 minutes |\n| `POST /users/ask-send-verify-email` | 3 | 5 minutes |\n\nDepending on the endpoint, *failed requests are not taken into account. A service\nlimit is announced by a `429 Too Many Requests` status code.\n\nYou can get details about the current state of your rate limit by reading the\nfollowing headers:\n\n| Header | Description |\n|-------------------------|------------------------------------------------------------|\n| `X-RateLimit-Limit` | Number of max requests allowed in the current time period |\n| `X-RateLimit-Remaining` | Number of remaining requests in the current time period |\n| `X-RateLimit-Reset` | Timestamp of end of current time period as UNIX timestamp |\n| `Retry-After` | Seconds to delay after the first `429` is received |\n\n# CORS\n\nThis API features [Cross-Origin Resource Sharing (CORS)](https://fetch.spec.whatwg.org/),\nallowing cross-domain communication from the browser for some routes:\n\n| Endpoint |\n|------------------------- ---|\n| `/api/*` |\n| `/download/*` |\n| `/lazy-static/*` |\n| `/.well-known/webfinger` |\n\nIn addition, all routes serving ActivityPub are CORS-enabled for all origins.\n" }, "externalDocs": { "url": "https://docs.joinpeertube.org/api-rest-reference.html" }, "tags": [ { "name": "Register", "description": "As a visitor, you can use this API to open an account (if registrations are open on\nthat PeerTube instance). As an admin, you should use the dedicated [User creation\nAPI](#operation/addUser) instead.\n" }, { "name": "Session", "x-displayName": "Login/Logout", "description": "Sessions deal with access tokens over time. Only __one session token can currently be used at a time__.\n" }, { "name": "Accounts", "description": "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.\nWhen a comment is posted, it is done with your Account's Actor.\n" }, { "name": "Users", "description": "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.\n" }, { "name": "User Exports", "description": "To create an archive of user data.\n" }, { "name": "User Imports", "description": "To import an archive of user data.\n" }, { "name": "My User", "description": "Operations related to your own User, when logged-in.\n" }, { "name": "My Subscriptions", "description": "Operations related to your subscriptions to video channels, their new videos, and how to keep up to date with their latest publications!\n" }, { "name": "My History", "description": "Operations related to your watch history.\n" }, { "name": "My Notifications", "description": "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.\n" }, { "name": "Config", "description": "Each server exposes public information regarding supported videos and options.\n" }, { "name": "Job", "description": "Jobs are long-running tasks enqueued and processed by the instance itself. No additional worker registration is currently available.\n" }, { "name": "Instance Follows", "description": "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.\n", "externalDocs": { "url": "https://docs.joinpeertube.org/admin/following-instances#instances-follows" } }, { "name": "Instance Redundancy", "description": "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](#tag/Video-Mirroring).\n", "externalDocs": { "url": "https://docs.joinpeertube.org/admin/following-instances#instances-redundancy" } }, { "name": "Plugins", "description": "Managing plugins installed from a local path or from NPM, or search for new ones.\n", "externalDocs": { "url": "https://docs.joinpeertube.org/api/plugins" } }, { "name": "Abuses", "description": "Abuses deal with reports of local or remote videos/comments/accounts alike.\n" }, { "name": "Video", "description": "Operations dealing with listing, uploading, fetching or modifying videos.\n" }, { "name": "Video Upload", "description": "Operations dealing with adding video or audio. PeerTube supports two upload modes, and three import modes.\n\n### Upload\n\n- [_legacy_](#operation/uploadLegacy), where the video file is sent in a single request\n- [_resumable_](#operation/uploadResumableInit), where the video file is sent in chunks\n\nYou can upload videos more reliably by using the resumable variant. Its protocol lets\nyou resume an upload operation after a network interruption or other transmission failure,\nsaving time and bandwidth in the event of network failures.\n\nFavor using resumable uploads in any of the following cases:\n- You are transferring large files\n- The likelihood of a network interruption is high\n- Uploads are originating from a device with a low-bandwidth or unstable Internet connection,\n such as a mobile device\n\n### Import\n\n- _URL_-based: where the URL points to any service supported by [youtube-dl](https://ytdl-org.github.io/youtube-dl/)\n- _magnet_-based: where the URI resolves to a BitTorrent resource containing a single supported video file\n- _torrent_-based: where the metainfo file resolves to a BitTorrent resource containing a single supported video file\n\nThe import function is practical when the desired video/audio is available online. It makes PeerTube\ndownload it for you, saving you as much bandwidth and avoiding any instability or limitation your network might have.\n" }, { "name": "Video Imports", "description": "Operations dealing with listing, adding and removing video imports." }, { "name": "Channels Sync", "description": "Operations dealing with synchronizing PeerTube user's channel with channels of other platforms" }, { "name": "Video Captions", "description": "Operations dealing with listing, adding and removing closed captions of a video." }, { "name": "Video Chapters", "description": "Operations dealing with managing chapters of a video." }, { "name": "Video Channels", "description": "Operations dealing with the creation, modification and listing of videos within a channel." }, { "name": "Player Settings", "description": "Operations dealing with video player settings for videos and channels." }, { "name": "Video Comments", "description": "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.\n" }, { "name": "Video Blocks", "description": "Operations dealing with blocking videos (removing them from view and preventing interactions)." }, { "name": "Automatic Tags", "description": "Automatic tags set on objects (like comments or videos) by specific rules (external link, watched words, etc.)" }, { "name": "Watched Words", "description": "Manage list of watched words to detect patterns on objects (like comments of videos)" }, { "name": "Video Rates", "description": "Like/dislike a video." }, { "name": "Video Playlists", "description": "Operations dealing with playlists of videos. Playlists are bound to users and/or channels." }, { "name": "Video Files", "description": "Operations on video files" }, { "name": "Video Transcoding", "description": "Video transcoding related operations" }, { "name": "Video Stats", "description": "Video statistics" }, { "name": "Video Feeds", "description": "Server syndication feeds of videos" }, { "name": "Video Download", "description": "Download video files" }, { "name": "Search", "description": "The search helps to find _videos_ or _channels_ from within the instance and beyond.\nVideos from other instances federated by the instance (that is, instances\nfollowed by the instance) can be found via keywords and other criteria of\nthe advanced search.\n\nAdministrators can also enable the use of a remote search system, indexing\nvideos and channels not could be not federated by the instance.\n" }, { "name": "Homepage", "description": "Get and update the custom homepage" }, { "name": "Video Mirroring", "description": "PeerTube instances can mirror videos from one another, and help distribute some videos.\n\nFor importing videos as your own, refer to [video imports](#operation/importVideo).\n" }, { "name": "Stats", "description": "Statistics\n" }, { "name": "Runner Registration Token", "description": "Manage runner registration token\n" }, { "name": "Video Passwords", "description": "Operation on video passwords" }, { "name": "Client Config", "description": "Configuration of the web client" } ], "x-tagGroups": [ { "name": "Static endpoints", "tags": [ "Static Video Files" ] }, { "name": "Download", "tags": [ "Video Download" ] }, { "name": "Feeds", "tags": [ "Video Feeds" ] }, { "name": "Auth", "tags": [ "Register", "Session" ] }, { "name": "Accounts", "tags": [ "Accounts", "Users", "User Exports", "User Imports", "My User", "My Subscriptions", "My Notifications", "My History" ] }, { "name": "Videos", "tags": [ "Video", "Video Upload", "Video Imports", "Video Captions", "Video Chapters", "Video Channels", "Video Comments", "Video Rates", "Video Playlists", "Video Stats", "Video Ownership Change", "Video Mirroring", "Video Files", "Video Transcoding", "Live Videos", "Channels Sync", "Video Passwords" ] }, { "name": "Search", "tags": [ "Search" ] }, { "name": "Moderation", "tags": [ "Abuses", "Video Blocks", "Account Blocks", "Server Blocks", "Automatic Tags", "Watched Words" ] }, { "name": "Instance", "tags": [ "Config", "Client Config", "Homepage", "Instance Follows", "Instance Redundancy", "Plugins", "Stats", "Logs", "Job" ] }, { "name": "Remote Jobs", "tags": [ "Runner Registration Token", "Runner Jobs", "Runners" ] } ], "paths": { "/static/web-videos/{filename}": { "get": { "tags": [ "Static Video Files" ], "summary": "Get public Web Video file", "description": "**PeerTube >= 6.0**", "parameters": [ { "$ref": "#/components/parameters/staticFilename" } ], "responses": { "200": { "description": "successful operation" }, "404": { "description": "not found" } } } }, "/static/web-videos/private/{filename}": { "get": { "tags": [ "Static Video Files" ], "summary": "Get private Web Video file", "description": "**PeerTube >= 6.0**", "parameters": [ { "$ref": "#/components/parameters/staticFilename" }, { "$ref": "#/components/parameters/videoFileToken" } ], "security": [ { "OAuth2": [] } ], "responses": { "200": { "description": "successful operation" }, "403": { "description": "invalid auth" }, "404": { "description": "not found" } } } }, "/static/streaming-playlists/hls/{filename}": { "get": { "tags": [ "Static Video Files" ], "summary": "Get public HLS video file", "parameters": [ { "$ref": "#/components/parameters/staticFilename" } ], "security": [ { "OAuth2": [] } ], "responses": { "200": { "description": "successful operation" }, "403": { "description": "invalid auth" }, "404": { "description": "not found" } } } }, "/static/streaming-playlists/hls/private/{filename}": { "get": { "tags": [ "Static Video Files" ], "summary": "Get private HLS video file", "parameters": [ { "$ref": "#/components/parameters/staticFilename" }, { "$ref": "#/components/parameters/videoFileToken" }, { "$ref": "#/components/parameters/reinjectVideoFileToken" } ], "security": [ { "OAuth2": [] } ], "responses": { "200": { "description": "successful operation" }, "403": { "description": "invalid auth" }, "404": { "description": "not found" } } } }, "/download/videos/generate/{videoId}": { "get": { "tags": [ "Video Download" ], "summary": "Download video file", "description": "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.", "parameters": [ { "name": "videoId", "in": "path", "required": true, "description": "The video id", "schema": { "$ref": "#/components/schemas/Video/properties/id" } }, { "name": "videoFileIds", "in": "query", "required": true, "description": "streams of video files to mux in the output", "schema": { "type": "array", "items": { "type": "integer" } } }, { "$ref": "#/components/parameters/videoFileToken" } ], "responses": { "200": { "description": "successful operation" } } } }, "/feeds/video-comments.{format}": { "get": { "tags": [ "Video Feeds" ], "summary": "Comments on videos feeds", "operationId": "getSyndicatedComments", "parameters": [ { "name": "format", "in": "path", "required": true, "description": "format expected (we focus on making `rss` the most feature-rich ; it serves [Media RSS](https://www.rssboard.org/media-rss))", "schema": { "type": "string", "enum": [ "xml", "rss", "rss2", "atom", "atom1", "json", "json1" ] } }, { "name": "videoId", "in": "query", "description": "limit listing comments to a specific video", "schema": { "type": "string" } }, { "name": "accountId", "in": "query", "description": "limit listing comments to videos of a specific account", "schema": { "type": "string" } }, { "name": "accountName", "in": "query", "description": "limit listing comments to videos of a specific account", "schema": { "type": "string" } }, { "name": "videoChannelId", "in": "query", "description": "limit listing comments to videos of a specific video channel", "schema": { "type": "string" } }, { "name": "videoChannelName", "in": "query", "description": "limit listing comments to videos of a specific video channel", "schema": { "type": "string" } } ], "responses": { "200": { "description": "successful operation", "headers": { "Cache-Control": { "schema": { "type": "string", "default": "max-age=900" } } }, "content": { "application/xml": { "schema": { "$ref": "#/components/schemas/VideoCommentsForXML" }, "examples": { "nightly": { "value": "\n\n \n PeerTube Nightly\n https://peertube2.cpy.re\n 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.\n Fri, 20 Feb 2026 04:03:37 GMT\n https://validator.w3.org/feed/docs/rss2.html\n PeerTube - https://peertube2.cpy.re\n \n PeerTube Nightly\n https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png\n https://peertube2.cpy.re\n \n 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.\n \n \n <![CDATA[New kernel boosts Linux performance, Mint makes big changes, Discord Backlash - Linux Weekly News - Sco :progress: :flag_mm:]]>\n https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239\n https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239\n Thu, 19 Feb 2026 15:33:15 GMT\n @thelinuxexperiment I still put up XScreenSaver. I love my slide show. Reminds me of old memories, old movies and shows I love, and some cool art I've found.

I do hate that I have to activate it every boot. But I'll do it.

]]>
\n Sco :progress: :flag_mm:\n
\n \n <![CDATA[Europe : Comment les lobbies américains infiltrent le parlement - InternetDev-Anti-Communicant🍉]]>\n https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237\n https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237\n Wed, 18 Feb 2026 19:04:51 GMT\n @blast

Mauvaise question\nLa bonne question est :

- \"Pourquoi le parlement EU laisse-t-il les lobbies américains s'infiltrer ?\"

ou

- \"Pourquoi le parlement EU infiltre-t-il des lobbies américains ?\"

]]>
\n InternetDev-Anti-Communicant🍉\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236\n Wed, 18 Feb 2026 13:44:05 GMT\n Plasma 6.6 is a technical marvel and a big up yours to the Gnome devs busily removing functionality with every release. However to put it in transportation terms, I don't need a space shuttle to go buy milk. Most of the time my needs are quite well catered to by Lxqt on OpenSUSE

\n]]>
\n goss\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n Wed, 18 Feb 2026 13:40:20 GMT\n Getting back to Plasma 5.27

\n]]>
\n goss\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - Edoardo Regni]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229\n Tue, 17 Feb 2026 23:42:05 GMT\n For OCR in spectacle -> options -> configure spectacle -> general. There is a subtle tooltip. You have to install the tesseract package + tesseract language packages of your choice. Thanks for another nice video!

\n]]>
\n Edoardo Regni\n
\n \n <![CDATA[DAiKiRi ⧸⧸ Live in Guerrilla Studios, Dublin ⧸⧸⧸ Full Set - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228\n https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228\n Tue, 17 Feb 2026 23:00:17 GMT\n Au bout d'un moment on a arrêté de jouer torse nu. Fallait le temps que ça monte au servo...

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - everything-eventually-will-be-free]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225\n Tue, 17 Feb 2026 21:05:47 GMT\n So I'm guessing there is still now way to globally change the scroll bar size to something wider than a hairline!

\n]]>
\n everything-eventually-will-be-free\n
\n \n <![CDATA[Quarx pour l'Apple IIe / IIc / IIgs - NicolaIntini]]>\n https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224\n https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224\n Tue, 17 Feb 2026 20:17:44 GMT\n @clashoffredo \nAwesome

]]>
\n NicolaIntini\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - fschaupp]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223\n Tue, 17 Feb 2026 17:16:20 GMT\n Awewom! Plasma is going steady but solid! All the tiny bits make a tool feel like a glove :3

\n]]>
\n fschaupp\n
\n \n <![CDATA[OpnSense DEC677 Unboxing - philippe.lhardy]]>\n https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222\n https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222\n Tue, 17 Feb 2026 16:33:12 GMT\n Je vous suggère de continuer avec cette vidéo : https://tube.lacaveatonton.ovh/videos/watch/c98705ee-c074-4df3-883f-ba54b34ca7c7

\n]]>
\n philippe.lhardy\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - drm-free-gaming]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221\n Tue, 17 Feb 2026 16:09:15 GMT\n Plasma desktop is the only desktop I use these days. Everything just works out of the box and even though it's still buggy, from time to time, it is the most feature rich and customizable experience on any OS that I've ever used.
\nKudos to the plasma team. They are doing wonders

\n]]>
\n drm-free-gaming\n
\n \n <![CDATA[​​​ - třiapůl]]>\n https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220\n https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220\n Tue, 17 Feb 2026 15:41:03 GMT\n minecraft

\n]]>
\n třiapůl\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - cybard]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n Tue, 17 Feb 2026 13:52:36 GMT\n @thelinuxexperiment RAM usage DECREASED. Eat this, microslop

]]>
\n cybard\n
\n \n <![CDATA[Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n Tue, 17 Feb 2026 10:25:46 GMT\n @hortense 😄 o_O

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Hörtense]]>\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n Tue, 17 Feb 2026 10:06:02 GMT\n ptdr cette tête à la fin 😛

\n]]>
\n Hörtense\n
\n \n <![CDATA[DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n Tue, 17 Feb 2026 08:44:36 GMT\n @hortense Ouais, grave ! Bisou toi-même 😗

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Hörtense]]>\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n Tue, 17 Feb 2026 08:25:52 GMT\n rah la vache cte souvenir!!! Bisou toi ❤️

\n]]>
\n Hörtense\n
\n \n <![CDATA[Le (vrai) secret pour devenir milliardaire - Sans DeC]]>\n https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214\n https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214\n Mon, 16 Feb 2026 14:47:50 GMT\n @blast utiliser le Père Noël pour expliquer l’exploitation du travail, c’est brillant 😄

]]>
\n Sans DeC\n
\n \n <![CDATA[Les mauvais jours finiront - Raoul]]>\n https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213\n https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213\n Mon, 16 Feb 2026 00:05:03 GMT\n @blast les mauvais jours finiront... Ramadan Moubarak.

]]>
\n Raoul\n
\n \n <![CDATA[🦏 Où est passée l'extrême gauche ? (la vraie) - Emmanuel Florac]]>\n https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212\n https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212\n Sun, 15 Feb 2026 22:30:13 GMT\n Notons que Dati a des origines populaires, alors que Knafo est une bourgeoise pur sucre. Duhamel préfère la vraie bourgeoise, fut-elle fasciste, à la parvenue. Mépris de classe, comme d'hab'.

\n]]>
\n Emmanuel Florac\n
\n
\n
" } } }, "application/rss+xml": { "schema": { "$ref": "#/components/schemas/VideoCommentsForXML" }, "examples": { "nightly": { "value": "\n\n \n PeerTube Nightly\n https://peertube2.cpy.re\n 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.\n Fri, 20 Feb 2026 04:03:37 GMT\n https://validator.w3.org/feed/docs/rss2.html\n PeerTube - https://peertube2.cpy.re\n \n PeerTube Nightly\n https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png\n https://peertube2.cpy.re\n \n 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.\n \n \n <![CDATA[New kernel boosts Linux performance, Mint makes big changes, Discord Backlash - Linux Weekly News - Sco :progress: :flag_mm:]]>\n https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239\n https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239\n Thu, 19 Feb 2026 15:33:15 GMT\n @thelinuxexperiment I still put up XScreenSaver. I love my slide show. Reminds me of old memories, old movies and shows I love, and some cool art I've found.

I do hate that I have to activate it every boot. But I'll do it.

]]>
\n Sco :progress: :flag_mm:\n
\n \n <![CDATA[Europe : Comment les lobbies américains infiltrent le parlement - InternetDev-Anti-Communicant🍉]]>\n https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237\n https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237\n Wed, 18 Feb 2026 19:04:51 GMT\n @blast

Mauvaise question\nLa bonne question est :

- \"Pourquoi le parlement EU laisse-t-il les lobbies américains s'infiltrer ?\"

ou

- \"Pourquoi le parlement EU infiltre-t-il des lobbies américains ?\"

]]>
\n InternetDev-Anti-Communicant🍉\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236\n Wed, 18 Feb 2026 13:44:05 GMT\n Plasma 6.6 is a technical marvel and a big up yours to the Gnome devs busily removing functionality with every release. However to put it in transportation terms, I don't need a space shuttle to go buy milk. Most of the time my needs are quite well catered to by Lxqt on OpenSUSE

\n]]>
\n goss\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n Wed, 18 Feb 2026 13:40:20 GMT\n Getting back to Plasma 5.27

\n]]>
\n goss\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - Edoardo Regni]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229\n Tue, 17 Feb 2026 23:42:05 GMT\n For OCR in spectacle -> options -> configure spectacle -> general. There is a subtle tooltip. You have to install the tesseract package + tesseract language packages of your choice. Thanks for another nice video!

\n]]>
\n Edoardo Regni\n
\n \n <![CDATA[DAiKiRi ⧸⧸ Live in Guerrilla Studios, Dublin ⧸⧸⧸ Full Set - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228\n https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228\n Tue, 17 Feb 2026 23:00:17 GMT\n Au bout d'un moment on a arrêté de jouer torse nu. Fallait le temps que ça monte au servo...

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - everything-eventually-will-be-free]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225\n Tue, 17 Feb 2026 21:05:47 GMT\n So I'm guessing there is still now way to globally change the scroll bar size to something wider than a hairline!

\n]]>
\n everything-eventually-will-be-free\n
\n \n <![CDATA[Quarx pour l'Apple IIe / IIc / IIgs - NicolaIntini]]>\n https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224\n https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224\n Tue, 17 Feb 2026 20:17:44 GMT\n @clashoffredo \nAwesome

]]>
\n NicolaIntini\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - fschaupp]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223\n Tue, 17 Feb 2026 17:16:20 GMT\n Awewom! Plasma is going steady but solid! All the tiny bits make a tool feel like a glove :3

\n]]>
\n fschaupp\n
\n \n <![CDATA[OpnSense DEC677 Unboxing - philippe.lhardy]]>\n https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222\n https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222\n Tue, 17 Feb 2026 16:33:12 GMT\n Je vous suggère de continuer avec cette vidéo : https://tube.lacaveatonton.ovh/videos/watch/c98705ee-c074-4df3-883f-ba54b34ca7c7

\n]]>
\n philippe.lhardy\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - drm-free-gaming]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221\n Tue, 17 Feb 2026 16:09:15 GMT\n Plasma desktop is the only desktop I use these days. Everything just works out of the box and even though it's still buggy, from time to time, it is the most feature rich and customizable experience on any OS that I've ever used.
\nKudos to the plasma team. They are doing wonders

\n]]>
\n drm-free-gaming\n
\n \n <![CDATA[​​​ - třiapůl]]>\n https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220\n https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220\n Tue, 17 Feb 2026 15:41:03 GMT\n minecraft

\n]]>
\n třiapůl\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - cybard]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n Tue, 17 Feb 2026 13:52:36 GMT\n @thelinuxexperiment RAM usage DECREASED. Eat this, microslop

]]>
\n cybard\n
\n \n <![CDATA[Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n Tue, 17 Feb 2026 10:25:46 GMT\n @hortense 😄 o_O

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Hörtense]]>\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n Tue, 17 Feb 2026 10:06:02 GMT\n ptdr cette tête à la fin 😛

\n]]>
\n Hörtense\n
\n \n <![CDATA[DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n Tue, 17 Feb 2026 08:44:36 GMT\n @hortense Ouais, grave ! Bisou toi-même 😗

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Hörtense]]>\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n Tue, 17 Feb 2026 08:25:52 GMT\n rah la vache cte souvenir!!! Bisou toi ❤️

\n]]>
\n Hörtense\n
\n \n <![CDATA[Le (vrai) secret pour devenir milliardaire - Sans DeC]]>\n https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214\n https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214\n Mon, 16 Feb 2026 14:47:50 GMT\n @blast utiliser le Père Noël pour expliquer l’exploitation du travail, c’est brillant 😄

]]>
\n Sans DeC\n
\n \n <![CDATA[Les mauvais jours finiront - Raoul]]>\n https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213\n https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213\n Mon, 16 Feb 2026 00:05:03 GMT\n @blast les mauvais jours finiront... Ramadan Moubarak.

]]>
\n Raoul\n
\n \n <![CDATA[🦏 Où est passée l'extrême gauche ? (la vraie) - Emmanuel Florac]]>\n https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212\n https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212\n Sun, 15 Feb 2026 22:30:13 GMT\n Notons que Dati a des origines populaires, alors que Knafo est une bourgeoise pur sucre. Duhamel préfère la vraie bourgeoise, fut-elle fasciste, à la parvenue. Mépris de classe, comme d'hab'.

\n]]>
\n Emmanuel Florac\n
\n
\n
" } } }, "text/xml": { "schema": { "$ref": "#/components/schemas/VideoCommentsForXML" }, "examples": { "nightly": { "value": "\n\n \n PeerTube Nightly\n https://peertube2.cpy.re\n 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.\n Fri, 20 Feb 2026 04:03:37 GMT\n https://validator.w3.org/feed/docs/rss2.html\n PeerTube - https://peertube2.cpy.re\n \n PeerTube Nightly\n https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png\n https://peertube2.cpy.re\n \n 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.\n \n \n <![CDATA[New kernel boosts Linux performance, Mint makes big changes, Discord Backlash - Linux Weekly News - Sco :progress: :flag_mm:]]>\n https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239\n https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239\n Thu, 19 Feb 2026 15:33:15 GMT\n @thelinuxexperiment I still put up XScreenSaver. I love my slide show. Reminds me of old memories, old movies and shows I love, and some cool art I've found.

I do hate that I have to activate it every boot. But I'll do it.

]]>
\n Sco :progress: :flag_mm:\n
\n \n <![CDATA[Europe : Comment les lobbies américains infiltrent le parlement - InternetDev-Anti-Communicant🍉]]>\n https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237\n https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237\n Wed, 18 Feb 2026 19:04:51 GMT\n @blast

Mauvaise question\nLa bonne question est :

- \"Pourquoi le parlement EU laisse-t-il les lobbies américains s'infiltrer ?\"

ou

- \"Pourquoi le parlement EU infiltre-t-il des lobbies américains ?\"

]]>
\n InternetDev-Anti-Communicant🍉\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236\n Wed, 18 Feb 2026 13:44:05 GMT\n Plasma 6.6 is a technical marvel and a big up yours to the Gnome devs busily removing functionality with every release. However to put it in transportation terms, I don't need a space shuttle to go buy milk. Most of the time my needs are quite well catered to by Lxqt on OpenSUSE

\n]]>
\n goss\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n Wed, 18 Feb 2026 13:40:20 GMT\n Getting back to Plasma 5.27

\n]]>
\n goss\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - Edoardo Regni]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229\n Tue, 17 Feb 2026 23:42:05 GMT\n For OCR in spectacle -> options -> configure spectacle -> general. There is a subtle tooltip. You have to install the tesseract package + tesseract language packages of your choice. Thanks for another nice video!

\n]]>
\n Edoardo Regni\n
\n \n <![CDATA[DAiKiRi ⧸⧸ Live in Guerrilla Studios, Dublin ⧸⧸⧸ Full Set - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228\n https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228\n Tue, 17 Feb 2026 23:00:17 GMT\n Au bout d'un moment on a arrêté de jouer torse nu. Fallait le temps que ça monte au servo...

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - everything-eventually-will-be-free]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225\n Tue, 17 Feb 2026 21:05:47 GMT\n So I'm guessing there is still now way to globally change the scroll bar size to something wider than a hairline!

\n]]>
\n everything-eventually-will-be-free\n
\n \n <![CDATA[Quarx pour l'Apple IIe / IIc / IIgs - NicolaIntini]]>\n https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224\n https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224\n Tue, 17 Feb 2026 20:17:44 GMT\n @clashoffredo \nAwesome

]]>
\n NicolaIntini\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - fschaupp]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223\n Tue, 17 Feb 2026 17:16:20 GMT\n Awewom! Plasma is going steady but solid! All the tiny bits make a tool feel like a glove :3

\n]]>
\n fschaupp\n
\n \n <![CDATA[OpnSense DEC677 Unboxing - philippe.lhardy]]>\n https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222\n https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222\n Tue, 17 Feb 2026 16:33:12 GMT\n Je vous suggère de continuer avec cette vidéo : https://tube.lacaveatonton.ovh/videos/watch/c98705ee-c074-4df3-883f-ba54b34ca7c7

\n]]>
\n philippe.lhardy\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - drm-free-gaming]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221\n Tue, 17 Feb 2026 16:09:15 GMT\n Plasma desktop is the only desktop I use these days. Everything just works out of the box and even though it's still buggy, from time to time, it is the most feature rich and customizable experience on any OS that I've ever used.
\nKudos to the plasma team. They are doing wonders

\n]]>
\n drm-free-gaming\n
\n \n <![CDATA[​​​ - třiapůl]]>\n https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220\n https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220\n Tue, 17 Feb 2026 15:41:03 GMT\n minecraft

\n]]>
\n třiapůl\n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - cybard]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n Tue, 17 Feb 2026 13:52:36 GMT\n @thelinuxexperiment RAM usage DECREASED. Eat this, microslop

]]>
\n cybard\n
\n \n <![CDATA[Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n Tue, 17 Feb 2026 10:25:46 GMT\n @hortense 😄 o_O

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Hörtense]]>\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n Tue, 17 Feb 2026 10:06:02 GMT\n ptdr cette tête à la fin 😛

\n]]>
\n Hörtense\n
\n \n <![CDATA[DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n Tue, 17 Feb 2026 08:44:36 GMT\n @hortense Ouais, grave ! Bisou toi-même 😗

\n]]>
\n Bstn Chmpns\n
\n \n <![CDATA[DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Hörtense]]>\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n Tue, 17 Feb 2026 08:25:52 GMT\n rah la vache cte souvenir!!! Bisou toi ❤️

\n]]>
\n Hörtense\n
\n \n <![CDATA[Le (vrai) secret pour devenir milliardaire - Sans DeC]]>\n https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214\n https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214\n Mon, 16 Feb 2026 14:47:50 GMT\n @blast utiliser le Père Noël pour expliquer l’exploitation du travail, c’est brillant 😄

]]>
\n Sans DeC\n
\n \n <![CDATA[Les mauvais jours finiront - Raoul]]>\n https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213\n https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213\n Mon, 16 Feb 2026 00:05:03 GMT\n @blast les mauvais jours finiront... Ramadan Moubarak.

]]>
\n Raoul\n
\n \n <![CDATA[🦏 Où est passée l'extrême gauche ? (la vraie) - Emmanuel Florac]]>\n https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212\n https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212\n Sun, 15 Feb 2026 22:30:13 GMT\n Notons que Dati a des origines populaires, alors que Knafo est une bourgeoise pur sucre. Duhamel préfère la vraie bourgeoise, fut-elle fasciste, à la parvenue. Mépris de classe, comme d'hab'.

\n]]>
\n Emmanuel Florac\n
\n
\n
" } } }, "application/atom+xml": { "schema": { "$ref": "#/components/schemas/VideoCommentsForXML" }, "examples": { "nightly": { "value": "\n\n https://peertube2.cpy.re\n PeerTube Nightly\n 2026-02-20T04:03:38.052Z\n PeerTube - https://peertube2.cpy.re\n \n \n 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.\n https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png\n https://peertube2.cpy.re/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png\n 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.\n \n <![CDATA[New kernel boosts Linux performance, Mint makes big changes, Discord Backlash - Linux Weekly News - Sco :progress: :flag_mm:]]>\n https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239\n \n 2026-02-19T15:33:15.000Z\n @thelinuxexperiment I still put up XScreenSaver. I love my slide show. Reminds me of old memories, old movies and shows I love, and some cool art I've found.

I do hate that I have to activate it every boot. But I'll do it.

]]>
\n \n Sco :progress: :flag_mm:\n https://socel.net/users/Scofisticated\n \n
\n \n <![CDATA[Europe : Comment les lobbies américains infiltrent le parlement - InternetDev-Anti-Communicant🍉]]>\n https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237\n \n 2026-02-18T19:04:51.000Z\n @blast

Mauvaise question\nLa bonne question est :

- \"Pourquoi le parlement EU laisse-t-il les lobbies américains s'infiltrer ?\"

ou

- \"Pourquoi le parlement EU infiltre-t-il des lobbies américains ?\"

]]>
\n \n InternetDev-Anti-Communicant🍉\n https://mastodon.social/users/InternetDev\n \n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236\n \n 2026-02-18T13:44:05.292Z\n Plasma 6.6 is a technical marvel and a big up yours to the Gnome devs busily removing functionality with every release. However to put it in transportation terms, I don't need a space shuttle to go buy milk. Most of the time my needs are quite well catered to by Lxqt on OpenSUSE

\n]]>
\n \n goss\n https://peertube.wtf/accounts/goss\n \n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n \n 2026-02-18T13:40:20.362Z\n Getting back to Plasma 5.27

\n]]>
\n \n goss\n https://peertube.wtf/accounts/goss\n \n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - Edoardo Regni]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229\n \n 2026-02-17T23:42:05.148Z\n For OCR in spectacle -> options -> configure spectacle -> general. There is a subtle tooltip. You have to install the tesseract package + tesseract language packages of your choice. Thanks for another nice video!

\n]]>
\n \n Edoardo Regni\n https://tilvids.com/accounts/eregni\n \n
\n \n <![CDATA[DAiKiRi ⧸⧸ Live in Guerrilla Studios, Dublin ⧸⧸⧸ Full Set - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228\n \n 2026-02-17T23:00:17.983Z\n Au bout d'un moment on a arrêté de jouer torse nu. Fallait le temps que ça monte au servo...

\n]]>
\n \n Bstn Chmpns\n https://www.yiny.org/accounts/bstn_chmpns\n \n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - everything-eventually-will-be-free]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225\n \n 2026-02-17T21:05:47.254Z\n So I'm guessing there is still now way to globally change the scroll bar size to something wider than a hairline!

\n]]>
\n \n everything-eventually-will-be-free\n https://spectra.video/accounts/eewbf\n \n
\n \n <![CDATA[Quarx pour l'Apple IIe / IIc / IIgs - NicolaIntini]]>\n https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224\n \n 2026-02-17T20:17:44.000Z\n @clashoffredo \nAwesome

]]>
\n \n NicolaIntini\n https://mastodon.social/users/nicolaintini\n \n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - fschaupp]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223\n \n 2026-02-17T17:16:20.067Z\n Awewom! Plasma is going steady but solid! All the tiny bits make a tool feel like a glove :3

\n]]>
\n \n fschaupp\n https://peertube.fschaupp.me/accounts/fschaupp\n \n
\n \n <![CDATA[OpnSense DEC677 Unboxing - philippe.lhardy]]>\n https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222\n \n 2026-02-17T16:33:12.475Z\n Je vous suggère de continuer avec cette vidéo : https://tube.lacaveatonton.ovh/videos/watch/c98705ee-c074-4df3-883f-ba54b34ca7c7

\n]]>
\n \n philippe.lhardy\n https://pire.artisanlogiciel.net/accounts/philippe.lhardy\n \n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - drm-free-gaming]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221\n \n 2026-02-17T16:09:15.785Z\n Plasma desktop is the only desktop I use these days. Everything just works out of the box and even though it's still buggy, from time to time, it is the most feature rich and customizable experience on any OS that I've ever used.
\nKudos to the plasma team. They are doing wonders

\n]]>
\n \n drm-free-gaming\n https://video.hardlimit.com/accounts/drmfreegaming\n \n
\n \n <![CDATA[​​​ - třiapůl]]>\n https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220\n \n 2026-02-17T15:41:03.362Z\n minecraft

\n]]>
\n \n třiapůl\n https://vhsky.cz/accounts/triapul\n \n
\n \n <![CDATA[KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - cybard]]>\n https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234\n \n 2026-02-17T13:52:36.000Z\n @thelinuxexperiment RAM usage DECREASED. Eat this, microslop

]]>
\n \n cybard\n https://corteximplant.com/users/hagbard\n \n
\n \n <![CDATA[Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n \n 2026-02-17T10:25:46.376Z\n @hortense 😄 o_O

\n]]>
\n \n Bstn Chmpns\n https://www.yiny.org/accounts/bstn_chmpns\n \n
\n \n <![CDATA[Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Hörtense]]>\n https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217\n \n 2026-02-17T10:06:02.073Z\n ptdr cette tête à la fin 😛

\n]]>
\n \n Hörtense\n https://www.yiny.org/accounts/hortense\n \n
\n \n <![CDATA[DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Bstn Chmpns]]>\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n \n 2026-02-17T08:44:36.884Z\n @hortense Ouais, grave ! Bisou toi-même 😗

\n]]>
\n \n Bstn Chmpns\n https://www.yiny.org/accounts/bstn_chmpns\n \n
\n \n <![CDATA[DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Hörtense]]>\n https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215\n \n 2026-02-17T08:25:52.965Z\n rah la vache cte souvenir!!! Bisou toi ❤️

\n]]>
\n \n Hörtense\n https://www.yiny.org/accounts/hortense\n \n
\n \n <![CDATA[Le (vrai) secret pour devenir milliardaire - Sans DeC]]>\n https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214\n \n 2026-02-16T14:47:50.000Z\n @blast utiliser le Père Noël pour expliquer l’exploitation du travail, c’est brillant 😄

]]>
\n \n Sans DeC\n https://framapiaf.org/users/Sans_DeC\n \n
\n \n <![CDATA[Les mauvais jours finiront - Raoul]]>\n https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213\n \n 2026-02-16T00:05:03.000Z\n @blast les mauvais jours finiront... Ramadan Moubarak.

]]>
\n \n Raoul\n https://mastodon.social/ap/users/116077354808981819\n \n
\n \n <![CDATA[🦏 Où est passée l'extrême gauche ? (la vraie) - Emmanuel Florac]]>\n https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212\n \n 2026-02-15T22:30:13.082Z\n Notons que Dati a des origines populaires, alors que Knafo est une bourgeoise pur sucre. Duhamel préfère la vraie bourgeoise, fut-elle fasciste, à la parvenue. Mépris de classe, comme d'hab'.

\n]]>
\n \n Emmanuel Florac\n https://video.ploud.fr/accounts/emmanuel_florac\n \n
\n
" } } }, "application/json": { "schema": { "type": "object" }, "examples": { "nightly": { "value": { "version": "https://jsonfeed.org/version/1", "title": "PeerTube Nightly", "home_page_url": "https://peertube2.cpy.re", "feed_url": "https://peertube2.cpy.re/feeds/video-comments.json?scope=local", "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.", "icon": "https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "items": [ { "id": "https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239", "content_html": "

@thelinuxexperiment I still put up XScreenSaver. I love my slide show. Reminds me of old memories, old movies and shows I love, and some cool art I've found.

I do hate that I have to activate it every boot. But I'll do it.

", "url": "https://peertube2.cpy.re/w/wYgCD5jLa3RFY319WMFx2X;threadId=183239", "title": "New kernel boosts Linux performance, Mint makes big changes, Discord Backlash - Linux Weekly News - Sco :progress: :flag_mm:", "date_modified": "2026-02-19T15:33:15.000Z", "author": { "name": "Sco :progress: :flag_mm:", "url": "https://socel.net/users/Scofisticated" } }, { "id": "https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237", "content_html": "

@blast

Mauvaise question\nLa bonne question est :

- \"Pourquoi le parlement EU laisse-t-il les lobbies américains s'infiltrer ?\"

ou

- \"Pourquoi le parlement EU infiltre-t-il des lobbies américains ?\"

", "url": "https://peertube2.cpy.re/w/dU27zCxUCCX2kK1n422yPT;threadId=183237", "title": "Europe : Comment les lobbies américains infiltrent le parlement - InternetDev-Anti-Communicant🍉", "date_modified": "2026-02-18T19:04:51.000Z", "author": { "name": "InternetDev-Anti-Communicant🍉", "url": "https://mastodon.social/users/InternetDev" } }, { "id": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236", "content_html": "

Plasma 6.6 is a technical marvel and a big up yours to the Gnome devs busily removing functionality with every release. However to put it in transportation terms, I don't need a space shuttle to go buy milk. Most of the time my needs are quite well catered to by Lxqt on OpenSUSE

\n", "url": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183236", "title": "KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss", "date_modified": "2026-02-18T13:44:05.292Z", "author": { "name": "goss", "url": "https://peertube.wtf/accounts/goss" } }, { "id": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234", "content_html": "

Getting back to Plasma 5.27

\n", "url": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234", "title": "KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - goss", "date_modified": "2026-02-18T13:40:20.362Z", "author": { "name": "goss", "url": "https://peertube.wtf/accounts/goss" } }, { "id": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229", "content_html": "

For OCR in spectacle -> options -> configure spectacle -> general. There is a subtle tooltip. You have to install the tesseract package + tesseract language packages of your choice. Thanks for another nice video!

\n", "url": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183229", "title": "KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - Edoardo Regni", "date_modified": "2026-02-17T23:42:05.148Z", "author": { "name": "Edoardo Regni", "url": "https://tilvids.com/accounts/eregni" } }, { "id": "https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228", "content_html": "

Au bout d'un moment on a arrêté de jouer torse nu. Fallait le temps que ça monte au servo...

\n", "url": "https://peertube2.cpy.re/w/7aRyahwpg6gJUTizmkHp52;threadId=183228", "title": "DAiKiRi ⧸⧸ Live in Guerrilla Studios, Dublin ⧸⧸⧸ Full Set - Bstn Chmpns", "date_modified": "2026-02-17T23:00:17.983Z", "author": { "name": "Bstn Chmpns", "url": "https://www.yiny.org/accounts/bstn_chmpns" } }, { "id": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225", "content_html": "

So I'm guessing there is still now way to globally change the scroll bar size to something wider than a hairline!

\n", "url": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183225", "title": "KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - everything-eventually-will-be-free", "date_modified": "2026-02-17T21:05:47.254Z", "author": { "name": "everything-eventually-will-be-free", "url": "https://spectra.video/accounts/eewbf" } }, { "id": "https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224", "content_html": "

@clashoffredo \nAwesome

", "url": "https://peertube2.cpy.re/w/11pN9Bo1MPx5yo45aMhiNx;threadId=183224", "title": "Quarx pour l'Apple IIe / IIc / IIgs - NicolaIntini", "date_modified": "2026-02-17T20:17:44.000Z", "author": { "name": "NicolaIntini", "url": "https://mastodon.social/users/nicolaintini" } }, { "id": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223", "content_html": "

Awewom! Plasma is going steady but solid! All the tiny bits make a tool feel like a glove :3

\n", "url": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183223", "title": "KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - fschaupp", "date_modified": "2026-02-17T17:16:20.067Z", "author": { "name": "fschaupp", "url": "https://peertube.fschaupp.me/accounts/fschaupp" } }, { "id": "https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222", "content_html": "

Je vous suggère de continuer avec cette vidéo : https://tube.lacaveatonton.ovh/videos/watch/c98705ee-c074-4df3-883f-ba54b34ca7c7

\n", "url": "https://peertube2.cpy.re/w/5GKq82WDEmTg2xYLv9wN5M;threadId=183222", "title": "OpnSense DEC677 Unboxing - philippe.lhardy", "date_modified": "2026-02-17T16:33:12.475Z", "author": { "name": "philippe.lhardy", "url": "https://pire.artisanlogiciel.net/accounts/philippe.lhardy" } }, { "id": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221", "content_html": "

Plasma desktop is the only desktop I use these days. Everything just works out of the box and even though it's still buggy, from time to time, it is the most feature rich and customizable experience on any OS that I've ever used.
\nKudos to the plasma team. They are doing wonders

\n", "url": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183221", "title": "KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - drm-free-gaming", "date_modified": "2026-02-17T16:09:15.785Z", "author": { "name": "drm-free-gaming", "url": "https://video.hardlimit.com/accounts/drmfreegaming" } }, { "id": "https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220", "content_html": "

minecraft

\n", "url": "https://peertube2.cpy.re/w/gR6qfMQdCX3N9BmPPiSKwF;threadId=183220", "title": "​​​ - třiapůl", "date_modified": "2026-02-17T15:41:03.362Z", "author": { "name": "třiapůl", "url": "https://vhsky.cz/accounts/triapul" } }, { "id": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234", "content_html": "

@thelinuxexperiment RAM usage DECREASED. Eat this, microslop

", "url": "https://peertube2.cpy.re/w/hDojzgaWe7JNzikqBcTJUx;threadId=183234", "title": "KDE Plasma 6.6 : still the best Linux desktop environment, in my opinion - cybard", "date_modified": "2026-02-17T13:52:36.000Z", "author": { "name": "cybard", "url": "https://corteximplant.com/users/hagbard" } }, { "id": "https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217", "content_html": "

@hortense 😄 o_O

\n", "url": "https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217", "title": "Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Bstn Chmpns", "date_modified": "2026-02-17T10:25:46.376Z", "author": { "name": "Bstn Chmpns", "url": "https://www.yiny.org/accounts/bstn_chmpns" } }, { "id": "https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217", "content_html": "

ptdr cette tête à la fin 😛

\n", "url": "https://peertube2.cpy.re/w/2khumUZDqNrqLXPa2jdcrA;threadId=183217", "title": "Daikiri - 14/07/2017 @ Tunnel Fluvial, Besançon - Hörtense", "date_modified": "2026-02-17T10:06:02.073Z", "author": { "name": "Hörtense", "url": "https://www.yiny.org/accounts/hortense" } }, { "id": "https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215", "content_html": "

@hortense Ouais, grave ! Bisou toi-même 😗

\n", "url": "https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215", "title": "DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Bstn Chmpns", "date_modified": "2026-02-17T08:44:36.884Z", "author": { "name": "Bstn Chmpns", "url": "https://www.yiny.org/accounts/bstn_chmpns" } }, { "id": "https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215", "content_html": "

rah la vache cte souvenir!!! Bisou toi ❤️

\n", "url": "https://peertube2.cpy.re/w/gF31HwT2pqvUVDmG3yTYji;threadId=183215", "title": "DALIDA @ Festival du Pathos #4 (Campénéac, France) Full Live ! [Multi-Cam] 2015 - Hörtense", "date_modified": "2026-02-17T08:25:52.965Z", "author": { "name": "Hörtense", "url": "https://www.yiny.org/accounts/hortense" } }, { "id": "https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214", "content_html": "

@blast utiliser le Père Noël pour expliquer l’exploitation du travail, c’est brillant 😄

", "url": "https://peertube2.cpy.re/w/moxkizuvDHwPhh6rvXsyjW;threadId=183214", "title": "Le (vrai) secret pour devenir milliardaire - Sans DeC", "date_modified": "2026-02-16T14:47:50.000Z", "author": { "name": "Sans DeC", "url": "https://framapiaf.org/users/Sans_DeC" } }, { "id": "https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213", "content_html": "

@blast les mauvais jours finiront... Ramadan Moubarak.

", "url": "https://peertube2.cpy.re/w/7U7Lxnd7wQKUB1rASVCGT7;threadId=183213", "title": "Les mauvais jours finiront - Raoul", "date_modified": "2026-02-16T00:05:03.000Z", "author": { "name": "Raoul", "url": "https://mastodon.social/ap/users/116077354808981819" } }, { "id": "https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212", "content_html": "

Notons que Dati a des origines populaires, alors que Knafo est une bourgeoise pur sucre. Duhamel préfère la vraie bourgeoise, fut-elle fasciste, à la parvenue. Mépris de classe, comme d'hab'.

\n", "url": "https://peertube2.cpy.re/w/8WBE2xCvDRsV5QMR1y69XM;threadId=183212", "title": "🦏 Où est passée l'extrême gauche ? (la vraie) - Emmanuel Florac", "date_modified": "2026-02-15T22:30:13.082Z", "author": { "name": "Emmanuel Florac", "url": "https://video.ploud.fr/accounts/emmanuel_florac" } } ] } } } } } }, "400": { "x-summary": "field inconsistencies", "description": "Arises when:\n - videoId filter is mixed with a channel filter\n" }, "404": { "description": "video, video channel or account not found" }, "406": { "description": "accept header unsupported" } } } }, "/feeds/videos.{format}": { "get": { "tags": [ "Video Feeds" ], "summary": "Common videos feeds", "operationId": "getSyndicatedVideos", "parameters": [ { "name": "format", "in": "path", "required": true, "description": "format expected (we focus on making `rss` the most feature-rich ; it serves [Media RSS](https://www.rssboard.org/media-rss))", "schema": { "type": "string", "enum": [ "xml", "rss", "rss2", "atom", "atom1", "json", "json1" ] } }, { "name": "accountId", "in": "query", "description": "limit listing to a specific account", "schema": { "type": "string" } }, { "name": "accountName", "in": "query", "description": "limit listing to a specific account", "schema": { "type": "string" } }, { "name": "videoChannelId", "in": "query", "description": "limit listing to a specific video channel", "schema": { "type": "string" } }, { "name": "videoChannelName", "in": "query", "description": "limit listing to a specific video channel", "schema": { "type": "string" } }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/nsfw" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/include" }, { "$ref": "#/components/parameters/privacyOneOf" }, { "$ref": "#/components/parameters/hasHLSFiles" }, { "$ref": "#/components/parameters/hasWebVideoFiles" } ], "responses": { "200": { "description": "successful operation", "headers": { "Cache-Control": { "schema": { "type": "string", "default": "max-age=900" } } }, "content": { "application/xml": { "schema": { "$ref": "#/components/schemas/VideosForXML" }, "examples": { "nightly": { "value": "\n\n \n PeerTube Nightly\n https://peertube2.cpy.re\n 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.\n Fri, 20 Feb 2026 04:03:38 GMT\n https://validator.w3.org/feed/docs/rss2.html\n PeerTube - https://peertube2.cpy.re\n \n PeerTube Nightly\n https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png\n https://peertube2.cpy.re\n \n 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.\n \n \n <![CDATA[Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument]]>\n https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f\n https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f\n Thu, 19 Feb 2026 20:51:28 GMT\n \n Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère de l'Économie a prouvé que c'était bien vrai ... Et on la nomme à la tête de la Cour des comptes ? Pour 28 ans ? On est sûr de ça ?

\n

Réduire la qualité de la vidéo.

\n

Pour changer le système :
\nRéclamer le RIC constituant : https://petitions.assemblee-nationale.fr/initiatives/i-2491 https://www.mouvement-constituant-populaire.fr/
\nChanger de banque: https://www.lanef.com/ https://change-de-banque.org/particulier/
\nPasser à l'action militante: https://extinctionrebellion.fr/ https://ripostealimentaire.fr/
\nChanger de travail : https://jobs.makesense.org/fr

\n

Sources
\nC à vous https://www.youtube.com/watch?v=UNA9q0vyVxU
\nMontchalin https://videos.assemblee-nationale.fr/video.18056732_6967e894c577b.questions-au-gouvernement---mercredi-14-janvier-2026-14-janvier-2026?timecode=96660
\nJournal l'Humanité https://www.youtube.com/watch?v=OPEskfqeWc8
\nMusique https://www.youtube.com/watch?v=UJdogwBtZvw

\n

Réponses au quiz de fin :

\n

/!\\ Description à ne pas lire avant d'avoir vu la vidéo entièrement
\n/!\\

\n

/!\\

\n

/!\\
\n/!\\

\n

Combien de foyers millionnaires ont déclaré un revenu fiscal à 0 ?
\n13335.

\n

Combien d'impôts paient les 378 les plus riches de France ?
\n2%.

\n

Quel impôt a remplacé l'ISF qu'a supprimé Macron ?
\nImpôt sur la fortune immobilière.

\n

#montchalin #politique #impôt #économie #extrait #ethiqueettac

\n]]>
\n ethique_et_tac\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument\n Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère d...\n
\n \n <![CDATA[LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)]]>\n https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm\n https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm\n Thu, 19 Feb 2026 20:48:30 GMT\n a_gauche\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)\n \n \n <![CDATA[Lyon : Une ville sous la pression de l'extrême droite radicale]]>\n https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S\n https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S\n Thu, 19 Feb 2026 19:00:34 GMT\n \n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes à Lyon. Cette vidéo ne revient pas directement sur les faits, par ailleurs largement commentés dans la presse et le monde politique, mais tente d’en interroger le contexte. Pour Blast, Elian Delacôte, journaliste à Rue89Lyon, nous éclaire sur l'ancrage de l'extrême droite radicale à Lyon, qui s'est illustrée dans de nombreuses agressions ces dernières décennies.

\n

Journalistes : Clara Menais
\nMontage : Émilie Fortun
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#lyon
\n#antifa
\n#fascisme

\n]]>
\n blast, le souffle de l’info\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Lyon : Une ville sous la pression de l'extrême droite radicale\n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes...\n
\n \n <![CDATA[Challenge de février 2026 avec Warren Chanti]]>\n https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB\n https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB\n Thu, 19 Feb 2026 18:28:32 GMT\n \n 🥁 Le défi

\n

Créer une petite pièce musicale :
\nune compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉)

\n

✅ Les règles du jeu

\n

Votre création doit contenir :

\n

1️⃣ Au moins 3 accords différents
\n2️⃣ Au moins 3 Taks / Slaps
\n3️⃣ Au moins 3 Kicks / Booms
\n4️⃣ Une montée de 3 notes consécutives dans la gamme,
\net une descente de 3 notes consécutives

\n

📅 Comment participer

\n

👉 Vous avez jusqu’au 28 février pour poster votre vidéo en commentaire sous ce post.

\n

L’objectif ?
\n✨ Stimuler votre créativité
\n✨ Vous inspirer les uns les autres
\n✨ Et surtout passer de bons moments ensemble en continuant de progresser

\n

🔥 À vos handpans ! 🔥

\n]]>
\n Couleurs de HandPan\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Challenge de février 2026 avec Warren Chanti\n 🥁 Le défi Créer une petite pièce musicale : une compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉) ✅ Les règles du jeu Votre création doit conte...\n
\n \n <![CDATA[Un fasciste dans la 3e guerre mondiale]]>\n https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB\n https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB\n Thu, 19 Feb 2026 17:18:07 GMT\n \n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/?utm_medium=YouTubeBlast&utm_source=YouTubeCampagne&utm_campaign=presale_219764

\n
    \n
  1. La Révolution des Œillets fait exploser le décor : Aginter Presse est exposée comme une partie de ses archives alors que Guillou replonge dans l’ombre. Mais si on le croit en fuite et loin, il est en réalité encore au coeur du dispositif contre-révolutionnaire européen.
  2. \n
\n

Ce cinquième épisode d’Agent Occident – Portrait d’un faf suit Guillou dans la phase terminale de la guerre froide clandestine. Du Portugal post-salazariste à l’Espagne de la transition, de l’Angola à l’Amérique latine, il réapparaît partout où la lutte anticommuniste se privatise, se criminalise et se radicalise. Terrorisme, mercenariat, coups d’État ratés, escadrons de la mort : les réseaux qu’il a fréquentés mutent et prolifèrent.
\nÀ mesure que la CIA est muselée par les scandales, d’autres structures émergent : clubs transnationaux, diplomatie parallèle, trafics, banques offshore. En Europe, la stratégie de la tension pourrit en Italie en Allemagne et en Belgique pendant qu’ailleurs, la même logique nourrit les dictatures sud-américaines, l’opération Condor et, finalement, la guerre clandestine afghane.
\nCet épisode raconte aussi la fin d’un cycle : celui d’une contre-révolution occidentale devenue opaque, corrompue et incontrôlable. Et pose une question centrale : contre le communisme, oui — mais pour quoi, exactement ?

\n

Agent Occident – Épisode 5 : 1974–1989

\n

Écrit, monté et raconté par Antoine SANCHEZ
\nProduit par Dancing Dog Productions
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Musique :

\n

PALAYAM (Antoine Sanchez)
\npalayam.bandcamp.com

\n

EROS & THANATOS - Catherine WATINE (album INTRICATION QUANTIQUES © 2020) www.watineprod.com

\n

Bourbonese Qualk
\nbourbonesequalk.bandcamp.com

\n

Y Create - Untitled - From the 3 - Cassette release The Black Box (1984)
\nhesselveldman.bandcamp.com

\n

Nostalgie Eternelle - Devotion
\nnostalgieeternelle.jimdoweb.com

\n

BRUME (Christian Renou) - A Céline Part 1 & 2 - Neue Muster Volume 10 (1993)
\nelsieandjack.com/brume

\n

RON BERRY - Tomb of the Tortured Spirits - The Reaper (1988)
\nron-berry.co.uk

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#fascisme
\n#histoire
\n#propagande

\n]]>
\n blast, le souffle de l’info\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Un fasciste dans la 3e guerre mondiale\n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/...\n
\n \n <![CDATA[Raymonde et les blancs becs - Fonctionnaire]]>\n https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX\n https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX\n Thu, 19 Feb 2026 17:00:32 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Raymonde et les blancs becs - Fonctionnaire\n \n \n <![CDATA[Eskicit - L'homme révolté]]>\n https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH\n https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH\n Thu, 19 Feb 2026 16:57:26 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Eskicit - L'homme révolté\n \n \n <![CDATA[Spicy Box - Tenez votre police en laisse]]>\n https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9\n https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9\n Thu, 19 Feb 2026 16:54:18 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Spicy Box - Tenez votre police en laisse\n \n \n <![CDATA[La Compagnie Jolie Môme - Sans la Nommer]]>\n https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz\n https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz\n Thu, 19 Feb 2026 16:52:47 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n La Compagnie Jolie Môme - Sans la Nommer\n \n \n <![CDATA[Skalpel (La k.bine) - Révoltés]]>\n https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8\n https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8\n Thu, 19 Feb 2026 16:51:31 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Skalpel (La k.bine) - Révoltés\n \n \n <![CDATA[Serge UTGE-ROYO - Sur la Commune]]>\n https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n\n https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n\n Thu, 19 Feb 2026 16:46:10 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Serge UTGE-ROYO - Sur la Commune\n \n \n <![CDATA[Les Zetlascars et la trompida - Allons Enfants De La Latrine]]>\n https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX\n https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX\n Thu, 19 Feb 2026 16:45:18 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Les Zetlascars et la trompida - Allons Enfants De La Latrine\n \n \n <![CDATA[Calavera - La relève]]>\n https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf\n https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf\n Thu, 19 Feb 2026 16:35:35 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Calavera - La relève\n \n \n <![CDATA[Brigada Flores Magon - Black Bloc Revenge]]>\n https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3\n https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3\n Thu, 19 Feb 2026 16:33:28 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Brigada Flores Magon - Black Bloc Revenge\n \n \n <![CDATA[Cartouche - Télé de merde]]>\n https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx\n https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx\n Thu, 19 Feb 2026 16:30:49 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Cartouche - Télé de merde\n \n \n <![CDATA[Puta Guerilla - J'emmerde]]>\n https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP\n https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP\n Thu, 19 Feb 2026 16:27:50 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Puta Guerilla - J'emmerde\n \n \n <![CDATA[Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)]]>\n https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb\n https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb\n Thu, 19 Feb 2026 16:24:02 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)\n \n \n <![CDATA[H.F Thiefaine - La ballade dAbdallah Geronimo Cohen]]>\n https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv\n https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv\n Thu, 19 Feb 2026 16:19:51 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n H.F Thiefaine - La ballade dAbdallah Geronimo Cohen\n \n \n <![CDATA[hypodrome course cagnes sur mer]]>\n https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM\n https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM\n Thu, 19 Feb 2026 14:58:20 GMT\n Main plhardy channel\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n hypodrome course cagnes sur mer\n \n \n <![CDATA[Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc]]>\n https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1\n https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1\n Thu, 19 Feb 2026 12:49:24 GMT\n \n Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari
\nfait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de ce nouveau fascisme tech.

\n

👇 Abonne-toi pour ne rater aucune analyse sur les enjeux du présent technologique.

\n

🎙 Invité·e·s
\nNorman Ajari est philosophe et universitaire spécialisé dans les études décoloniales et la pensée noire. Il est l'auteur du \"Manifeste afro-décolonial: Le rêve oublié de la politique radicale noire\" (Éditions du Seuil, 2024) et de \"Noirceurs: Race, genre, classe et pessimisme dans la pensée africaine-américaine au XXIe siècle\" (Éditions Divergences, 2022). Son dernier essai, Technofascisme, Le nouveau visage de la suprématie blanche, paraît aux Éditions Météores le 20 février 2026.

\n

📌 Ce que tu vas apprendre

\n
    \n
  • \n

    Le concept de technofascisme : toutes les grandes entreprises fonctionnent comme des dictatures or l'État doit fonctionner comme une entreprise donc l'État doit fonctionner comme une dictature. Le syllogisme est au cœur du projet de la Silicon Valley autoritaire

    \n
  • \n
  • \n

    Palantir et l'impérialisme réticulaire : pourquoi Alex Karp, PDG de Palantir, doit être pris au mot quand il dit que son entreprise est là pour \"tuer des ennemis\", de Gaza à l'Afrique, une mise à jour de l'impérialisme occidental par la technologie

    \n
  • \n
  • \n

    Peter Thiel, prince du technofascisme : sa philosophie de l'histoire, son apologie du capitalisme de monopole et son projet de substituer la forme entreprise à la forme État

    \n
  • \n
  • \n

    L'archéo-futurisme et la Nouvelle Droite française : le lien idéologique entre Guillaume Faye et les milliardaires techno-autoritaires d'aujourd'hui, une généalogie intellectuelle française du technofascisme

    \n
  • \n
  • \n

    Nick Land et ses cautions progressistes : comment ce philosophe pro-fasciste a pu longtemps se dissimuler derrière des compagnons de route féministes et afro-futuristes

    \n
  • \n
  • \n

    Technofascisme vs technoféodalisme : pourquoi les thèses de Varoufakis et Cédric Durand sont insuffisantes et en quoi la notion léniniste d'impérialisme éclaire mieux les dynamiques actuelles

    \n
  • \n
  • \n

    Les racines européennes du technofascisme : le technofascisme n'est pas une rupture avec les Lumières mais leur radicalisation — l'Europe ne peut pas se poser en rempart face à un phénomène qu'elle a elle-même engendré

    \n
  • \n
  • \n

    Sylvia Wynter et la tradition radicale noire : une alternative aux \"lumières blanches\" comme aux \"lumières obscures\" — penser l'humanité non comme un donné mais comme une praxis collective

    \n
  • \n
  • \n

    Que faire ? La voie léniniste : socialiser Palantir pour pouvoir le détruire, attaquer les entreprises de l'intérieur, redonner aux travailleurs le pouvoir dans les structures qui sont aujourd'hui les vrais lieux du gouvernement

    \n
  • \n
\n

📚 Pour aller plus loin
\nTechnofascisme. Le nouveau visage de la suprématie blanche — Norman Ajari — Éditions Météores, 2026

\n

✍🏻 Crédits
\nEntretien : Nastasia Hadjadji
\nMontage : Gerald Holubowicz

\n

👉 Si cette vidéo t'aide à voir l'envers de la tech, pense à t'abonner, liker et partager : ça soutient notre travail et rend ces enjeux plus visibles.

\n

💌 Inscris-toi à la newsletter sur https://synthmedia.fr/newsletter/
\n✊🏼 Et si tu le peux, soutiens Synth sur https://synthmedia.fr/soutenir/

\n

Notre site : https://synthmedia.fr
\nBluesky : https://bsky.app/profile/synthmedia.fr
\nInstagram : https://www.instagram.com/synth.med.ia/
\nMastodon : https://mastodon.social/@synthmedia

\n]]>
\n Synth Media\n News & Politics\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc\n Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari fait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de c...\n
\n
\n
" } } }, "application/rss+xml": { "schema": { "$ref": "#/components/schemas/VideosForXML" }, "examples": { "nightly": { "value": "\n\n \n PeerTube Nightly\n https://peertube2.cpy.re\n 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.\n Fri, 20 Feb 2026 04:03:38 GMT\n https://validator.w3.org/feed/docs/rss2.html\n PeerTube - https://peertube2.cpy.re\n \n PeerTube Nightly\n https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png\n https://peertube2.cpy.re\n \n 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.\n \n \n <![CDATA[Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument]]>\n https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f\n https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f\n Thu, 19 Feb 2026 20:51:28 GMT\n \n Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère de l'Économie a prouvé que c'était bien vrai ... Et on la nomme à la tête de la Cour des comptes ? Pour 28 ans ? On est sûr de ça ?

\n

Réduire la qualité de la vidéo.

\n

Pour changer le système :
\nRéclamer le RIC constituant : https://petitions.assemblee-nationale.fr/initiatives/i-2491 https://www.mouvement-constituant-populaire.fr/
\nChanger de banque: https://www.lanef.com/ https://change-de-banque.org/particulier/
\nPasser à l'action militante: https://extinctionrebellion.fr/ https://ripostealimentaire.fr/
\nChanger de travail : https://jobs.makesense.org/fr

\n

Sources
\nC à vous https://www.youtube.com/watch?v=UNA9q0vyVxU
\nMontchalin https://videos.assemblee-nationale.fr/video.18056732_6967e894c577b.questions-au-gouvernement---mercredi-14-janvier-2026-14-janvier-2026?timecode=96660
\nJournal l'Humanité https://www.youtube.com/watch?v=OPEskfqeWc8
\nMusique https://www.youtube.com/watch?v=UJdogwBtZvw

\n

Réponses au quiz de fin :

\n

/!\\ Description à ne pas lire avant d'avoir vu la vidéo entièrement
\n/!\\

\n

/!\\

\n

/!\\
\n/!\\

\n

Combien de foyers millionnaires ont déclaré un revenu fiscal à 0 ?
\n13335.

\n

Combien d'impôts paient les 378 les plus riches de France ?
\n2%.

\n

Quel impôt a remplacé l'ISF qu'a supprimé Macron ?
\nImpôt sur la fortune immobilière.

\n

#montchalin #politique #impôt #économie #extrait #ethiqueettac

\n]]>
\n ethique_et_tac\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument\n Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère d...\n
\n \n <![CDATA[LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)]]>\n https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm\n https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm\n Thu, 19 Feb 2026 20:48:30 GMT\n a_gauche\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)\n \n \n <![CDATA[Lyon : Une ville sous la pression de l'extrême droite radicale]]>\n https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S\n https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S\n Thu, 19 Feb 2026 19:00:34 GMT\n \n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes à Lyon. Cette vidéo ne revient pas directement sur les faits, par ailleurs largement commentés dans la presse et le monde politique, mais tente d’en interroger le contexte. Pour Blast, Elian Delacôte, journaliste à Rue89Lyon, nous éclaire sur l'ancrage de l'extrême droite radicale à Lyon, qui s'est illustrée dans de nombreuses agressions ces dernières décennies.

\n

Journalistes : Clara Menais
\nMontage : Émilie Fortun
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#lyon
\n#antifa
\n#fascisme

\n]]>
\n blast, le souffle de l’info\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Lyon : Une ville sous la pression de l'extrême droite radicale\n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes...\n
\n \n <![CDATA[Challenge de février 2026 avec Warren Chanti]]>\n https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB\n https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB\n Thu, 19 Feb 2026 18:28:32 GMT\n \n 🥁 Le défi

\n

Créer une petite pièce musicale :
\nune compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉)

\n

✅ Les règles du jeu

\n

Votre création doit contenir :

\n

1️⃣ Au moins 3 accords différents
\n2️⃣ Au moins 3 Taks / Slaps
\n3️⃣ Au moins 3 Kicks / Booms
\n4️⃣ Une montée de 3 notes consécutives dans la gamme,
\net une descente de 3 notes consécutives

\n

📅 Comment participer

\n

👉 Vous avez jusqu’au 28 février pour poster votre vidéo en commentaire sous ce post.

\n

L’objectif ?
\n✨ Stimuler votre créativité
\n✨ Vous inspirer les uns les autres
\n✨ Et surtout passer de bons moments ensemble en continuant de progresser

\n

🔥 À vos handpans ! 🔥

\n]]>
\n Couleurs de HandPan\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Challenge de février 2026 avec Warren Chanti\n 🥁 Le défi Créer une petite pièce musicale : une compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉) ✅ Les règles du jeu Votre création doit conte...\n
\n \n <![CDATA[Un fasciste dans la 3e guerre mondiale]]>\n https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB\n https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB\n Thu, 19 Feb 2026 17:18:07 GMT\n \n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/?utm_medium=YouTubeBlast&utm_source=YouTubeCampagne&utm_campaign=presale_219764

\n
    \n
  1. La Révolution des Œillets fait exploser le décor : Aginter Presse est exposée comme une partie de ses archives alors que Guillou replonge dans l’ombre. Mais si on le croit en fuite et loin, il est en réalité encore au coeur du dispositif contre-révolutionnaire européen.
  2. \n
\n

Ce cinquième épisode d’Agent Occident – Portrait d’un faf suit Guillou dans la phase terminale de la guerre froide clandestine. Du Portugal post-salazariste à l’Espagne de la transition, de l’Angola à l’Amérique latine, il réapparaît partout où la lutte anticommuniste se privatise, se criminalise et se radicalise. Terrorisme, mercenariat, coups d’État ratés, escadrons de la mort : les réseaux qu’il a fréquentés mutent et prolifèrent.
\nÀ mesure que la CIA est muselée par les scandales, d’autres structures émergent : clubs transnationaux, diplomatie parallèle, trafics, banques offshore. En Europe, la stratégie de la tension pourrit en Italie en Allemagne et en Belgique pendant qu’ailleurs, la même logique nourrit les dictatures sud-américaines, l’opération Condor et, finalement, la guerre clandestine afghane.
\nCet épisode raconte aussi la fin d’un cycle : celui d’une contre-révolution occidentale devenue opaque, corrompue et incontrôlable. Et pose une question centrale : contre le communisme, oui — mais pour quoi, exactement ?

\n

Agent Occident – Épisode 5 : 1974–1989

\n

Écrit, monté et raconté par Antoine SANCHEZ
\nProduit par Dancing Dog Productions
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Musique :

\n

PALAYAM (Antoine Sanchez)
\npalayam.bandcamp.com

\n

EROS & THANATOS - Catherine WATINE (album INTRICATION QUANTIQUES © 2020) www.watineprod.com

\n

Bourbonese Qualk
\nbourbonesequalk.bandcamp.com

\n

Y Create - Untitled - From the 3 - Cassette release The Black Box (1984)
\nhesselveldman.bandcamp.com

\n

Nostalgie Eternelle - Devotion
\nnostalgieeternelle.jimdoweb.com

\n

BRUME (Christian Renou) - A Céline Part 1 & 2 - Neue Muster Volume 10 (1993)
\nelsieandjack.com/brume

\n

RON BERRY - Tomb of the Tortured Spirits - The Reaper (1988)
\nron-berry.co.uk

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#fascisme
\n#histoire
\n#propagande

\n]]>
\n blast, le souffle de l’info\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Un fasciste dans la 3e guerre mondiale\n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/...\n
\n \n <![CDATA[Raymonde et les blancs becs - Fonctionnaire]]>\n https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX\n https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX\n Thu, 19 Feb 2026 17:00:32 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Raymonde et les blancs becs - Fonctionnaire\n \n \n <![CDATA[Eskicit - L'homme révolté]]>\n https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH\n https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH\n Thu, 19 Feb 2026 16:57:26 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Eskicit - L'homme révolté\n \n \n <![CDATA[Spicy Box - Tenez votre police en laisse]]>\n https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9\n https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9\n Thu, 19 Feb 2026 16:54:18 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Spicy Box - Tenez votre police en laisse\n \n \n <![CDATA[La Compagnie Jolie Môme - Sans la Nommer]]>\n https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz\n https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz\n Thu, 19 Feb 2026 16:52:47 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n La Compagnie Jolie Môme - Sans la Nommer\n \n \n <![CDATA[Skalpel (La k.bine) - Révoltés]]>\n https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8\n https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8\n Thu, 19 Feb 2026 16:51:31 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Skalpel (La k.bine) - Révoltés\n \n \n <![CDATA[Serge UTGE-ROYO - Sur la Commune]]>\n https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n\n https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n\n Thu, 19 Feb 2026 16:46:10 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Serge UTGE-ROYO - Sur la Commune\n \n \n <![CDATA[Les Zetlascars et la trompida - Allons Enfants De La Latrine]]>\n https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX\n https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX\n Thu, 19 Feb 2026 16:45:18 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Les Zetlascars et la trompida - Allons Enfants De La Latrine\n \n \n <![CDATA[Calavera - La relève]]>\n https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf\n https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf\n Thu, 19 Feb 2026 16:35:35 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Calavera - La relève\n \n \n <![CDATA[Brigada Flores Magon - Black Bloc Revenge]]>\n https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3\n https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3\n Thu, 19 Feb 2026 16:33:28 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Brigada Flores Magon - Black Bloc Revenge\n \n \n <![CDATA[Cartouche - Télé de merde]]>\n https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx\n https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx\n Thu, 19 Feb 2026 16:30:49 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Cartouche - Télé de merde\n \n \n <![CDATA[Puta Guerilla - J'emmerde]]>\n https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP\n https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP\n Thu, 19 Feb 2026 16:27:50 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Puta Guerilla - J'emmerde\n \n \n <![CDATA[Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)]]>\n https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb\n https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb\n Thu, 19 Feb 2026 16:24:02 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)\n \n \n <![CDATA[H.F Thiefaine - La ballade dAbdallah Geronimo Cohen]]>\n https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv\n https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv\n Thu, 19 Feb 2026 16:19:51 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n H.F Thiefaine - La ballade dAbdallah Geronimo Cohen\n \n \n <![CDATA[hypodrome course cagnes sur mer]]>\n https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM\n https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM\n Thu, 19 Feb 2026 14:58:20 GMT\n Main plhardy channel\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n hypodrome course cagnes sur mer\n \n \n <![CDATA[Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc]]>\n https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1\n https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1\n Thu, 19 Feb 2026 12:49:24 GMT\n \n Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari
\nfait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de ce nouveau fascisme tech.

\n

👇 Abonne-toi pour ne rater aucune analyse sur les enjeux du présent technologique.

\n

🎙 Invité·e·s
\nNorman Ajari est philosophe et universitaire spécialisé dans les études décoloniales et la pensée noire. Il est l'auteur du \"Manifeste afro-décolonial: Le rêve oublié de la politique radicale noire\" (Éditions du Seuil, 2024) et de \"Noirceurs: Race, genre, classe et pessimisme dans la pensée africaine-américaine au XXIe siècle\" (Éditions Divergences, 2022). Son dernier essai, Technofascisme, Le nouveau visage de la suprématie blanche, paraît aux Éditions Météores le 20 février 2026.

\n

📌 Ce que tu vas apprendre

\n
    \n
  • \n

    Le concept de technofascisme : toutes les grandes entreprises fonctionnent comme des dictatures or l'État doit fonctionner comme une entreprise donc l'État doit fonctionner comme une dictature. Le syllogisme est au cœur du projet de la Silicon Valley autoritaire

    \n
  • \n
  • \n

    Palantir et l'impérialisme réticulaire : pourquoi Alex Karp, PDG de Palantir, doit être pris au mot quand il dit que son entreprise est là pour \"tuer des ennemis\", de Gaza à l'Afrique, une mise à jour de l'impérialisme occidental par la technologie

    \n
  • \n
  • \n

    Peter Thiel, prince du technofascisme : sa philosophie de l'histoire, son apologie du capitalisme de monopole et son projet de substituer la forme entreprise à la forme État

    \n
  • \n
  • \n

    L'archéo-futurisme et la Nouvelle Droite française : le lien idéologique entre Guillaume Faye et les milliardaires techno-autoritaires d'aujourd'hui, une généalogie intellectuelle française du technofascisme

    \n
  • \n
  • \n

    Nick Land et ses cautions progressistes : comment ce philosophe pro-fasciste a pu longtemps se dissimuler derrière des compagnons de route féministes et afro-futuristes

    \n
  • \n
  • \n

    Technofascisme vs technoféodalisme : pourquoi les thèses de Varoufakis et Cédric Durand sont insuffisantes et en quoi la notion léniniste d'impérialisme éclaire mieux les dynamiques actuelles

    \n
  • \n
  • \n

    Les racines européennes du technofascisme : le technofascisme n'est pas une rupture avec les Lumières mais leur radicalisation — l'Europe ne peut pas se poser en rempart face à un phénomène qu'elle a elle-même engendré

    \n
  • \n
  • \n

    Sylvia Wynter et la tradition radicale noire : une alternative aux \"lumières blanches\" comme aux \"lumières obscures\" — penser l'humanité non comme un donné mais comme une praxis collective

    \n
  • \n
  • \n

    Que faire ? La voie léniniste : socialiser Palantir pour pouvoir le détruire, attaquer les entreprises de l'intérieur, redonner aux travailleurs le pouvoir dans les structures qui sont aujourd'hui les vrais lieux du gouvernement

    \n
  • \n
\n

📚 Pour aller plus loin
\nTechnofascisme. Le nouveau visage de la suprématie blanche — Norman Ajari — Éditions Météores, 2026

\n

✍🏻 Crédits
\nEntretien : Nastasia Hadjadji
\nMontage : Gerald Holubowicz

\n

👉 Si cette vidéo t'aide à voir l'envers de la tech, pense à t'abonner, liker et partager : ça soutient notre travail et rend ces enjeux plus visibles.

\n

💌 Inscris-toi à la newsletter sur https://synthmedia.fr/newsletter/
\n✊🏼 Et si tu le peux, soutiens Synth sur https://synthmedia.fr/soutenir/

\n

Notre site : https://synthmedia.fr
\nBluesky : https://bsky.app/profile/synthmedia.fr
\nInstagram : https://www.instagram.com/synth.med.ia/
\nMastodon : https://mastodon.social/@synthmedia

\n]]>
\n Synth Media\n News & Politics\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc\n Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari fait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de c...\n
\n
\n
" } } }, "text/xml": { "schema": { "$ref": "#/components/schemas/VideosForXML" }, "examples": { "nightly": { "value": "\n\n \n PeerTube Nightly\n https://peertube2.cpy.re\n 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.\n Fri, 20 Feb 2026 04:03:38 GMT\n https://validator.w3.org/feed/docs/rss2.html\n PeerTube - https://peertube2.cpy.re\n \n PeerTube Nightly\n https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png\n https://peertube2.cpy.re\n \n 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.\n \n \n <![CDATA[Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument]]>\n https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f\n https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f\n Thu, 19 Feb 2026 20:51:28 GMT\n \n Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère de l'Économie a prouvé que c'était bien vrai ... Et on la nomme à la tête de la Cour des comptes ? Pour 28 ans ? On est sûr de ça ?

\n

Réduire la qualité de la vidéo.

\n

Pour changer le système :
\nRéclamer le RIC constituant : https://petitions.assemblee-nationale.fr/initiatives/i-2491 https://www.mouvement-constituant-populaire.fr/
\nChanger de banque: https://www.lanef.com/ https://change-de-banque.org/particulier/
\nPasser à l'action militante: https://extinctionrebellion.fr/ https://ripostealimentaire.fr/
\nChanger de travail : https://jobs.makesense.org/fr

\n

Sources
\nC à vous https://www.youtube.com/watch?v=UNA9q0vyVxU
\nMontchalin https://videos.assemblee-nationale.fr/video.18056732_6967e894c577b.questions-au-gouvernement---mercredi-14-janvier-2026-14-janvier-2026?timecode=96660
\nJournal l'Humanité https://www.youtube.com/watch?v=OPEskfqeWc8
\nMusique https://www.youtube.com/watch?v=UJdogwBtZvw

\n

Réponses au quiz de fin :

\n

/!\\ Description à ne pas lire avant d'avoir vu la vidéo entièrement
\n/!\\

\n

/!\\

\n

/!\\
\n/!\\

\n

Combien de foyers millionnaires ont déclaré un revenu fiscal à 0 ?
\n13335.

\n

Combien d'impôts paient les 378 les plus riches de France ?
\n2%.

\n

Quel impôt a remplacé l'ISF qu'a supprimé Macron ?
\nImpôt sur la fortune immobilière.

\n

#montchalin #politique #impôt #économie #extrait #ethiqueettac

\n]]>
\n ethique_et_tac\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument\n Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère d...\n
\n \n <![CDATA[LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)]]>\n https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm\n https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm\n Thu, 19 Feb 2026 20:48:30 GMT\n a_gauche\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)\n \n \n <![CDATA[Lyon : Une ville sous la pression de l'extrême droite radicale]]>\n https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S\n https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S\n Thu, 19 Feb 2026 19:00:34 GMT\n \n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes à Lyon. Cette vidéo ne revient pas directement sur les faits, par ailleurs largement commentés dans la presse et le monde politique, mais tente d’en interroger le contexte. Pour Blast, Elian Delacôte, journaliste à Rue89Lyon, nous éclaire sur l'ancrage de l'extrême droite radicale à Lyon, qui s'est illustrée dans de nombreuses agressions ces dernières décennies.

\n

Journalistes : Clara Menais
\nMontage : Émilie Fortun
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#lyon
\n#antifa
\n#fascisme

\n]]>
\n blast, le souffle de l’info\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Lyon : Une ville sous la pression de l'extrême droite radicale\n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes...\n
\n \n <![CDATA[Challenge de février 2026 avec Warren Chanti]]>\n https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB\n https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB\n Thu, 19 Feb 2026 18:28:32 GMT\n \n 🥁 Le défi

\n

Créer une petite pièce musicale :
\nune compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉)

\n

✅ Les règles du jeu

\n

Votre création doit contenir :

\n

1️⃣ Au moins 3 accords différents
\n2️⃣ Au moins 3 Taks / Slaps
\n3️⃣ Au moins 3 Kicks / Booms
\n4️⃣ Une montée de 3 notes consécutives dans la gamme,
\net une descente de 3 notes consécutives

\n

📅 Comment participer

\n

👉 Vous avez jusqu’au 28 février pour poster votre vidéo en commentaire sous ce post.

\n

L’objectif ?
\n✨ Stimuler votre créativité
\n✨ Vous inspirer les uns les autres
\n✨ Et surtout passer de bons moments ensemble en continuant de progresser

\n

🔥 À vos handpans ! 🔥

\n]]>
\n Couleurs de HandPan\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Challenge de février 2026 avec Warren Chanti\n 🥁 Le défi Créer une petite pièce musicale : une compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉) ✅ Les règles du jeu Votre création doit conte...\n
\n \n <![CDATA[Un fasciste dans la 3e guerre mondiale]]>\n https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB\n https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB\n Thu, 19 Feb 2026 17:18:07 GMT\n \n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/?utm_medium=YouTubeBlast&utm_source=YouTubeCampagne&utm_campaign=presale_219764

\n
    \n
  1. La Révolution des Œillets fait exploser le décor : Aginter Presse est exposée comme une partie de ses archives alors que Guillou replonge dans l’ombre. Mais si on le croit en fuite et loin, il est en réalité encore au coeur du dispositif contre-révolutionnaire européen.
  2. \n
\n

Ce cinquième épisode d’Agent Occident – Portrait d’un faf suit Guillou dans la phase terminale de la guerre froide clandestine. Du Portugal post-salazariste à l’Espagne de la transition, de l’Angola à l’Amérique latine, il réapparaît partout où la lutte anticommuniste se privatise, se criminalise et se radicalise. Terrorisme, mercenariat, coups d’État ratés, escadrons de la mort : les réseaux qu’il a fréquentés mutent et prolifèrent.
\nÀ mesure que la CIA est muselée par les scandales, d’autres structures émergent : clubs transnationaux, diplomatie parallèle, trafics, banques offshore. En Europe, la stratégie de la tension pourrit en Italie en Allemagne et en Belgique pendant qu’ailleurs, la même logique nourrit les dictatures sud-américaines, l’opération Condor et, finalement, la guerre clandestine afghane.
\nCet épisode raconte aussi la fin d’un cycle : celui d’une contre-révolution occidentale devenue opaque, corrompue et incontrôlable. Et pose une question centrale : contre le communisme, oui — mais pour quoi, exactement ?

\n

Agent Occident – Épisode 5 : 1974–1989

\n

Écrit, monté et raconté par Antoine SANCHEZ
\nProduit par Dancing Dog Productions
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Musique :

\n

PALAYAM (Antoine Sanchez)
\npalayam.bandcamp.com

\n

EROS & THANATOS - Catherine WATINE (album INTRICATION QUANTIQUES © 2020) www.watineprod.com

\n

Bourbonese Qualk
\nbourbonesequalk.bandcamp.com

\n

Y Create - Untitled - From the 3 - Cassette release The Black Box (1984)
\nhesselveldman.bandcamp.com

\n

Nostalgie Eternelle - Devotion
\nnostalgieeternelle.jimdoweb.com

\n

BRUME (Christian Renou) - A Céline Part 1 & 2 - Neue Muster Volume 10 (1993)
\nelsieandjack.com/brume

\n

RON BERRY - Tomb of the Tortured Spirits - The Reaper (1988)
\nron-berry.co.uk

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#fascisme
\n#histoire
\n#propagande

\n]]>
\n blast, le souffle de l’info\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Un fasciste dans la 3e guerre mondiale\n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/...\n
\n \n <![CDATA[Raymonde et les blancs becs - Fonctionnaire]]>\n https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX\n https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX\n Thu, 19 Feb 2026 17:00:32 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Raymonde et les blancs becs - Fonctionnaire\n \n \n <![CDATA[Eskicit - L'homme révolté]]>\n https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH\n https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH\n Thu, 19 Feb 2026 16:57:26 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Eskicit - L'homme révolté\n \n \n <![CDATA[Spicy Box - Tenez votre police en laisse]]>\n https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9\n https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9\n Thu, 19 Feb 2026 16:54:18 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Spicy Box - Tenez votre police en laisse\n \n \n <![CDATA[La Compagnie Jolie Môme - Sans la Nommer]]>\n https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz\n https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz\n Thu, 19 Feb 2026 16:52:47 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n La Compagnie Jolie Môme - Sans la Nommer\n \n \n <![CDATA[Skalpel (La k.bine) - Révoltés]]>\n https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8\n https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8\n Thu, 19 Feb 2026 16:51:31 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Skalpel (La k.bine) - Révoltés\n \n \n <![CDATA[Serge UTGE-ROYO - Sur la Commune]]>\n https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n\n https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n\n Thu, 19 Feb 2026 16:46:10 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Serge UTGE-ROYO - Sur la Commune\n \n \n <![CDATA[Les Zetlascars et la trompida - Allons Enfants De La Latrine]]>\n https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX\n https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX\n Thu, 19 Feb 2026 16:45:18 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Les Zetlascars et la trompida - Allons Enfants De La Latrine\n \n \n <![CDATA[Calavera - La relève]]>\n https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf\n https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf\n Thu, 19 Feb 2026 16:35:35 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Calavera - La relève\n \n \n <![CDATA[Brigada Flores Magon - Black Bloc Revenge]]>\n https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3\n https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3\n Thu, 19 Feb 2026 16:33:28 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Brigada Flores Magon - Black Bloc Revenge\n \n \n <![CDATA[Cartouche - Télé de merde]]>\n https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx\n https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx\n Thu, 19 Feb 2026 16:30:49 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Cartouche - Télé de merde\n \n \n <![CDATA[Puta Guerilla - J'emmerde]]>\n https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP\n https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP\n Thu, 19 Feb 2026 16:27:50 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Puta Guerilla - J'emmerde\n \n \n <![CDATA[Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)]]>\n https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb\n https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb\n Thu, 19 Feb 2026 16:24:02 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)\n \n \n <![CDATA[H.F Thiefaine - La ballade dAbdallah Geronimo Cohen]]>\n https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv\n https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv\n Thu, 19 Feb 2026 16:19:51 GMT\n Best of nAnAr\n Music\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n H.F Thiefaine - La ballade dAbdallah Geronimo Cohen\n \n \n <![CDATA[hypodrome course cagnes sur mer]]>\n https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM\n https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM\n Thu, 19 Feb 2026 14:58:20 GMT\n Main plhardy channel\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n hypodrome course cagnes sur mer\n \n \n <![CDATA[Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc]]>\n https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1\n https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1\n Thu, 19 Feb 2026 12:49:24 GMT\n \n Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari
\nfait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de ce nouveau fascisme tech.

\n

👇 Abonne-toi pour ne rater aucune analyse sur les enjeux du présent technologique.

\n

🎙 Invité·e·s
\nNorman Ajari est philosophe et universitaire spécialisé dans les études décoloniales et la pensée noire. Il est l'auteur du \"Manifeste afro-décolonial: Le rêve oublié de la politique radicale noire\" (Éditions du Seuil, 2024) et de \"Noirceurs: Race, genre, classe et pessimisme dans la pensée africaine-américaine au XXIe siècle\" (Éditions Divergences, 2022). Son dernier essai, Technofascisme, Le nouveau visage de la suprématie blanche, paraît aux Éditions Météores le 20 février 2026.

\n

📌 Ce que tu vas apprendre

\n
    \n
  • \n

    Le concept de technofascisme : toutes les grandes entreprises fonctionnent comme des dictatures or l'État doit fonctionner comme une entreprise donc l'État doit fonctionner comme une dictature. Le syllogisme est au cœur du projet de la Silicon Valley autoritaire

    \n
  • \n
  • \n

    Palantir et l'impérialisme réticulaire : pourquoi Alex Karp, PDG de Palantir, doit être pris au mot quand il dit que son entreprise est là pour \"tuer des ennemis\", de Gaza à l'Afrique, une mise à jour de l'impérialisme occidental par la technologie

    \n
  • \n
  • \n

    Peter Thiel, prince du technofascisme : sa philosophie de l'histoire, son apologie du capitalisme de monopole et son projet de substituer la forme entreprise à la forme État

    \n
  • \n
  • \n

    L'archéo-futurisme et la Nouvelle Droite française : le lien idéologique entre Guillaume Faye et les milliardaires techno-autoritaires d'aujourd'hui, une généalogie intellectuelle française du technofascisme

    \n
  • \n
  • \n

    Nick Land et ses cautions progressistes : comment ce philosophe pro-fasciste a pu longtemps se dissimuler derrière des compagnons de route féministes et afro-futuristes

    \n
  • \n
  • \n

    Technofascisme vs technoféodalisme : pourquoi les thèses de Varoufakis et Cédric Durand sont insuffisantes et en quoi la notion léniniste d'impérialisme éclaire mieux les dynamiques actuelles

    \n
  • \n
  • \n

    Les racines européennes du technofascisme : le technofascisme n'est pas une rupture avec les Lumières mais leur radicalisation — l'Europe ne peut pas se poser en rempart face à un phénomène qu'elle a elle-même engendré

    \n
  • \n
  • \n

    Sylvia Wynter et la tradition radicale noire : une alternative aux \"lumières blanches\" comme aux \"lumières obscures\" — penser l'humanité non comme un donné mais comme une praxis collective

    \n
  • \n
  • \n

    Que faire ? La voie léniniste : socialiser Palantir pour pouvoir le détruire, attaquer les entreprises de l'intérieur, redonner aux travailleurs le pouvoir dans les structures qui sont aujourd'hui les vrais lieux du gouvernement

    \n
  • \n
\n

📚 Pour aller plus loin
\nTechnofascisme. Le nouveau visage de la suprématie blanche — Norman Ajari — Éditions Météores, 2026

\n

✍🏻 Crédits
\nEntretien : Nastasia Hadjadji
\nMontage : Gerald Holubowicz

\n

👉 Si cette vidéo t'aide à voir l'envers de la tech, pense à t'abonner, liker et partager : ça soutient notre travail et rend ces enjeux plus visibles.

\n

💌 Inscris-toi à la newsletter sur https://synthmedia.fr/newsletter/
\n✊🏼 Et si tu le peux, soutiens Synth sur https://synthmedia.fr/soutenir/

\n

Notre site : https://synthmedia.fr
\nBluesky : https://bsky.app/profile/synthmedia.fr
\nInstagram : https://www.instagram.com/synth.med.ia/
\nMastodon : https://mastodon.social/@synthmedia

\n]]>
\n Synth Media\n News & Politics\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n nonadult\n Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc\n Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari fait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de c...\n
\n
\n
" } } }, "application/atom+xml": { "schema": { "$ref": "#/components/schemas/VideosForXML" }, "examples": { "nightly": { "value": "\n\n https://peertube2.cpy.re\n PeerTube Nightly\n 2026-02-20T04:03:38.133Z\n PeerTube - https://peertube2.cpy.re\n \n PeerTube Nightly\n \n \n \n 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.\n https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png\n https://peertube2.cpy.re/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png\n 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.\n \n <![CDATA[Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument]]>\n https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f\n \n 2026-02-19T20:51:28.296Z\n \n Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère de l'Économie a prouvé que c'était bien vrai ... Et on la nomme à la tête de la Cour des comptes ? Pour 28 ans ? On est sûr de ça ?

\n

Réduire la qualité de la vidéo.

\n

Pour changer le système :
\nRéclamer le RIC constituant : https://petitions.assemblee-nationale.fr/initiatives/i-2491 https://www.mouvement-constituant-populaire.fr/
\nChanger de banque: https://www.lanef.com/ https://change-de-banque.org/particulier/
\nPasser à l'action militante: https://extinctionrebellion.fr/ https://ripostealimentaire.fr/
\nChanger de travail : https://jobs.makesense.org/fr

\n

Sources
\nC à vous https://www.youtube.com/watch?v=UNA9q0vyVxU
\nMontchalin https://videos.assemblee-nationale.fr/video.18056732_6967e894c577b.questions-au-gouvernement---mercredi-14-janvier-2026-14-janvier-2026?timecode=96660
\nJournal l'Humanité https://www.youtube.com/watch?v=OPEskfqeWc8
\nMusique https://www.youtube.com/watch?v=UJdogwBtZvw

\n

Réponses au quiz de fin :

\n

/!\\ Description à ne pas lire avant d'avoir vu la vidéo entièrement
\n/!\\

\n

/!\\

\n

/!\\
\n/!\\

\n

Combien de foyers millionnaires ont déclaré un revenu fiscal à 0 ?
\n13335.

\n

Combien d'impôts paient les 378 les plus riches de France ?
\n2%.

\n

Quel impôt a remplacé l'ISF qu'a supprimé Macron ?
\nImpôt sur la fortune immobilière.

\n

#montchalin #politique #impôt #économie #extrait #ethiqueettac

\n]]>
\n \n ethique_et_tac\n https://peertube2.cpy.re/c/ethique_et_tac@indymotion.fr/videos\n \n
\n \n <![CDATA[LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)]]>\n https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm\n \n 2026-02-19T20:48:30.054Z\n \n a_gauche\n https://peertube2.cpy.re/c/a_gauche@indymotion.fr/videos\n \n \n \n <![CDATA[Lyon : Une ville sous la pression de l'extrême droite radicale]]>\n https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S\n \n 2026-02-19T19:00:34.371Z\n \n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes à Lyon. Cette vidéo ne revient pas directement sur les faits, par ailleurs largement commentés dans la presse et le monde politique, mais tente d’en interroger le contexte. Pour Blast, Elian Delacôte, journaliste à Rue89Lyon, nous éclaire sur l'ancrage de l'extrême droite radicale à Lyon, qui s'est illustrée dans de nombreuses agressions ces dernières décennies.

\n

Journalistes : Clara Menais
\nMontage : Émilie Fortun
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#lyon
\n#antifa
\n#fascisme

\n]]>
\n \n blast, le souffle de l’info\n https://peertube2.cpy.re/c/blast_info@video.blast-info.fr/videos\n \n
\n \n <![CDATA[Challenge de février 2026 avec Warren Chanti]]>\n https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB\n \n 2026-02-19T18:28:32.309Z\n \n 🥁 Le défi

\n

Créer une petite pièce musicale :
\nune compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉)

\n

✅ Les règles du jeu

\n

Votre création doit contenir :

\n

1️⃣ Au moins 3 accords différents
\n2️⃣ Au moins 3 Taks / Slaps
\n3️⃣ Au moins 3 Kicks / Booms
\n4️⃣ Une montée de 3 notes consécutives dans la gamme,
\net une descente de 3 notes consécutives

\n

📅 Comment participer

\n

👉 Vous avez jusqu’au 28 février pour poster votre vidéo en commentaire sous ce post.

\n

L’objectif ?
\n✨ Stimuler votre créativité
\n✨ Vous inspirer les uns les autres
\n✨ Et surtout passer de bons moments ensemble en continuant de progresser

\n

🔥 À vos handpans ! 🔥

\n]]>
\n \n Couleurs de HandPan\n https://peertube2.cpy.re/c/couleurs_de_handpan@indymotion.fr/videos\n \n \n
\n \n <![CDATA[Un fasciste dans la 3e guerre mondiale]]>\n https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB\n \n 2026-02-19T17:18:07.419Z\n \n Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/?utm_medium=YouTubeBlast&utm_source=YouTubeCampagne&utm_campaign=presale_219764

\n
    \n
  1. La Révolution des Œillets fait exploser le décor : Aginter Presse est exposée comme une partie de ses archives alors que Guillou replonge dans l’ombre. Mais si on le croit en fuite et loin, il est en réalité encore au coeur du dispositif contre-révolutionnaire européen.
  2. \n
\n

Ce cinquième épisode d’Agent Occident – Portrait d’un faf suit Guillou dans la phase terminale de la guerre froide clandestine. Du Portugal post-salazariste à l’Espagne de la transition, de l’Angola à l’Amérique latine, il réapparaît partout où la lutte anticommuniste se privatise, se criminalise et se radicalise. Terrorisme, mercenariat, coups d’État ratés, escadrons de la mort : les réseaux qu’il a fréquentés mutent et prolifèrent.
\nÀ mesure que la CIA est muselée par les scandales, d’autres structures émergent : clubs transnationaux, diplomatie parallèle, trafics, banques offshore. En Europe, la stratégie de la tension pourrit en Italie en Allemagne et en Belgique pendant qu’ailleurs, la même logique nourrit les dictatures sud-américaines, l’opération Condor et, finalement, la guerre clandestine afghane.
\nCet épisode raconte aussi la fin d’un cycle : celui d’une contre-révolution occidentale devenue opaque, corrompue et incontrôlable. Et pose une question centrale : contre le communisme, oui — mais pour quoi, exactement ?

\n

Agent Occident – Épisode 5 : 1974–1989

\n

Écrit, monté et raconté par Antoine SANCHEZ
\nProduit par Dancing Dog Productions
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Musique :

\n

PALAYAM (Antoine Sanchez)
\npalayam.bandcamp.com

\n

EROS & THANATOS - Catherine WATINE (album INTRICATION QUANTIQUES © 2020) www.watineprod.com

\n

Bourbonese Qualk
\nbourbonesequalk.bandcamp.com

\n

Y Create - Untitled - From the 3 - Cassette release The Black Box (1984)
\nhesselveldman.bandcamp.com

\n

Nostalgie Eternelle - Devotion
\nnostalgieeternelle.jimdoweb.com

\n

BRUME (Christian Renou) - A Céline Part 1 & 2 - Neue Muster Volume 10 (1993)
\nelsieandjack.com/brume

\n

RON BERRY - Tomb of the Tortured Spirits - The Reaper (1988)
\nron-berry.co.uk

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#fascisme
\n#histoire
\n#propagande

\n]]>
\n \n blast, le souffle de l’info\n https://peertube2.cpy.re/c/blast_info@video.blast-info.fr/videos\n \n
\n \n <![CDATA[Raymonde et les blancs becs - Fonctionnaire]]>\n https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX\n \n 2026-02-19T17:00:32.966Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Eskicit - L'homme révolté]]>\n https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH\n \n 2026-02-19T16:57:26.939Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Spicy Box - Tenez votre police en laisse]]>\n https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9\n \n 2026-02-19T16:54:18.850Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[La Compagnie Jolie Môme - Sans la Nommer]]>\n https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz\n \n 2026-02-19T16:52:47.613Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Skalpel (La k.bine) - Révoltés]]>\n https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8\n \n 2026-02-19T16:51:31.871Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Serge UTGE-ROYO - Sur la Commune]]>\n https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n\n \n 2026-02-19T16:46:10.105Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Les Zetlascars et la trompida - Allons Enfants De La Latrine]]>\n https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX\n \n 2026-02-19T16:45:18.749Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Calavera - La relève]]>\n https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf\n \n 2026-02-19T16:35:35.730Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Brigada Flores Magon - Black Bloc Revenge]]>\n https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3\n \n 2026-02-19T16:33:28.427Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Cartouche - Télé de merde]]>\n https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx\n \n 2026-02-19T16:30:49.762Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Puta Guerilla - J'emmerde]]>\n https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP\n \n 2026-02-19T16:27:50.717Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)]]>\n https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb\n \n 2026-02-19T16:24:02.207Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[H.F Thiefaine - La ballade dAbdallah Geronimo Cohen]]>\n https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv\n \n 2026-02-19T16:19:51.009Z\n \n Best of nAnAr\n https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos\n \n \n \n \n <![CDATA[hypodrome course cagnes sur mer]]>\n https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM\n \n 2026-02-19T14:58:20.775Z\n \n Main plhardy channel\n https://peertube2.cpy.re/c/plhardy_channel@pire.artisanlogiciel.net/videos\n \n \n \n <![CDATA[Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc]]>\n https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1\n \n 2026-02-19T12:49:24.155Z\n \n Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari
\nfait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de ce nouveau fascisme tech.

\n

👇 Abonne-toi pour ne rater aucune analyse sur les enjeux du présent technologique.

\n

🎙 Invité·e·s
\nNorman Ajari est philosophe et universitaire spécialisé dans les études décoloniales et la pensée noire. Il est l'auteur du \"Manifeste afro-décolonial: Le rêve oublié de la politique radicale noire\" (Éditions du Seuil, 2024) et de \"Noirceurs: Race, genre, classe et pessimisme dans la pensée africaine-américaine au XXIe siècle\" (Éditions Divergences, 2022). Son dernier essai, Technofascisme, Le nouveau visage de la suprématie blanche, paraît aux Éditions Météores le 20 février 2026.

\n

📌 Ce que tu vas apprendre

\n
    \n
  • \n

    Le concept de technofascisme : toutes les grandes entreprises fonctionnent comme des dictatures or l'État doit fonctionner comme une entreprise donc l'État doit fonctionner comme une dictature. Le syllogisme est au cœur du projet de la Silicon Valley autoritaire

    \n
  • \n
  • \n

    Palantir et l'impérialisme réticulaire : pourquoi Alex Karp, PDG de Palantir, doit être pris au mot quand il dit que son entreprise est là pour \"tuer des ennemis\", de Gaza à l'Afrique, une mise à jour de l'impérialisme occidental par la technologie

    \n
  • \n
  • \n

    Peter Thiel, prince du technofascisme : sa philosophie de l'histoire, son apologie du capitalisme de monopole et son projet de substituer la forme entreprise à la forme État

    \n
  • \n
  • \n

    L'archéo-futurisme et la Nouvelle Droite française : le lien idéologique entre Guillaume Faye et les milliardaires techno-autoritaires d'aujourd'hui, une généalogie intellectuelle française du technofascisme

    \n
  • \n
  • \n

    Nick Land et ses cautions progressistes : comment ce philosophe pro-fasciste a pu longtemps se dissimuler derrière des compagnons de route féministes et afro-futuristes

    \n
  • \n
  • \n

    Technofascisme vs technoféodalisme : pourquoi les thèses de Varoufakis et Cédric Durand sont insuffisantes et en quoi la notion léniniste d'impérialisme éclaire mieux les dynamiques actuelles

    \n
  • \n
  • \n

    Les racines européennes du technofascisme : le technofascisme n'est pas une rupture avec les Lumières mais leur radicalisation — l'Europe ne peut pas se poser en rempart face à un phénomène qu'elle a elle-même engendré

    \n
  • \n
  • \n

    Sylvia Wynter et la tradition radicale noire : une alternative aux \"lumières blanches\" comme aux \"lumières obscures\" — penser l'humanité non comme un donné mais comme une praxis collective

    \n
  • \n
  • \n

    Que faire ? La voie léniniste : socialiser Palantir pour pouvoir le détruire, attaquer les entreprises de l'intérieur, redonner aux travailleurs le pouvoir dans les structures qui sont aujourd'hui les vrais lieux du gouvernement

    \n
  • \n
\n

📚 Pour aller plus loin
\nTechnofascisme. Le nouveau visage de la suprématie blanche — Norman Ajari — Éditions Météores, 2026

\n

✍🏻 Crédits
\nEntretien : Nastasia Hadjadji
\nMontage : Gerald Holubowicz

\n

👉 Si cette vidéo t'aide à voir l'envers de la tech, pense à t'abonner, liker et partager : ça soutient notre travail et rend ces enjeux plus visibles.

\n

💌 Inscris-toi à la newsletter sur https://synthmedia.fr/newsletter/
\n✊🏼 Et si tu le peux, soutiens Synth sur https://synthmedia.fr/soutenir/

\n

Notre site : https://synthmedia.fr
\nBluesky : https://bsky.app/profile/synthmedia.fr
\nInstagram : https://www.instagram.com/synth.med.ia/
\nMastodon : https://mastodon.social/@synthmedia

\n]]>
\n \n Synth Media\n https://peertube2.cpy.re/c/synth_media@indymotion.fr/videos\n \n \n
\n
" } } }, "application/json": { "schema": { "type": "object" }, "examples": { "nightly": { "value": { "version": "https://jsonfeed.org/version/1", "title": "PeerTube Nightly", "home_page_url": "https://peertube2.cpy.re", "feed_url": "https://peertube2.cpy.re/feeds/videos.json?scope=local", "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.", "icon": "https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "author": { "name": "PeerTube Nightly" }, "items": [ { "id": "https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f", "content_html": "

Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère de l'Économie a prouvé que c'était bien vrai ... Et on la nomme à la tête de la Cour des comptes ? Pour 28 ans ? On est sûr de ça ?

\n

Réduire la qualité de la vidéo.

\n

Pour changer le système :
\nRéclamer le RIC constituant : https://petitions.assemblee-nationale.fr/initiatives/i-2491 https://www.mouvement-constituant-populaire.fr/
\nChanger de banque: https://www.lanef.com/ https://change-de-banque.org/particulier/
\nPasser à l'action militante: https://extinctionrebellion.fr/ https://ripostealimentaire.fr/
\nChanger de travail : https://jobs.makesense.org/fr

\n

Sources
\nC à vous https://www.youtube.com/watch?v=UNA9q0vyVxU
\nMontchalin https://videos.assemblee-nationale.fr/video.18056732_6967e894c577b.questions-au-gouvernement---mercredi-14-janvier-2026-14-janvier-2026?timecode=96660
\nJournal l'Humanité https://www.youtube.com/watch?v=OPEskfqeWc8
\nMusique https://www.youtube.com/watch?v=UJdogwBtZvw

\n

Réponses au quiz de fin :

\n

/!\\ Description à ne pas lire avant d'avoir vu la vidéo entièrement
\n/!\\

\n

/!\\

\n

/!\\
\n/!\\

\n

Combien de foyers millionnaires ont déclaré un revenu fiscal à 0 ?
\n13335.

\n

Combien d'impôts paient les 378 les plus riches de France ?
\n2%.

\n

Quel impôt a remplacé l'ISF qu'a supprimé Macron ?
\nImpôt sur la fortune immobilière.

\n

#montchalin #politique #impôt #économie #extrait #ethiqueettac

\n", "url": "https://peertube2.cpy.re/w/oSog5Ry8Lc6MBZpN1G6g2f", "title": "Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument", "summary": "Il y a 1 mois, l'ex-Ministre de l'économie défraye la chronique après avoir annoncé que des milliers de riches Français ne payaient aucun impôt sur le revenu. Amélie de Montchalin s'empressait de démentir, malheureusement pour elle, le ministère d...", "attachments": [ { "title": "Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument", "url": "https://peertube2.cpy.re/lazy-static/torrents/b339d1f6-d048-43af-8c22-337239141308-1080-hls.torrent", "size_in_bytes": 54734195, "mime_type": "application/x-bittorrent" }, { "title": "Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument", "url": "https://peertube2.cpy.re/lazy-static/torrents/022c21d4-afef-45fa-9526-d3b8f05f2170-720-hls.torrent", "size_in_bytes": 37718797, "mime_type": "application/x-bittorrent" }, { "title": "Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument", "url": "https://peertube2.cpy.re/lazy-static/torrents/f3a83677-a883-41fb-b502-f99846ef1417-480-hls.torrent", "size_in_bytes": 24065110, "mime_type": "application/x-bittorrent" }, { "title": "Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument", "url": "https://peertube2.cpy.re/lazy-static/torrents/668471d1-7ec2-47a7-85cf-0ea0b78889bd-240-hls.torrent", "size_in_bytes": 12090920, "mime_type": "application/x-bittorrent" }, { "title": "Le ministère de l'Économie créé le nouveau scandale fiscal, à connaître absolument", "url": "https://peertube2.cpy.re/lazy-static/torrents/26fc679d-7745-47bc-8f5f-fb69f7210fd0-0-hls.torrent", "size_in_bytes": 5471558, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T20:51:28.296Z", "author": { "name": "ethique_et_tac", "url": "https://peertube2.cpy.re/c/ethique_et_tac@indymotion.fr/videos" } }, { "id": "https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm", "content_html": "", "url": "https://peertube2.cpy.re/w/i774tR1NzkYeAAu3fJVBfm", "title": "LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)", "attachments": [ { "title": "LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)", "url": "https://peertube2.cpy.re/lazy-static/torrents/c88fdc63-1476-4fc7-b166-2341a2a51088-720-hls.torrent", "size_in_bytes": 12049325, "mime_type": "application/x-bittorrent" }, { "title": "LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)", "url": "https://peertube2.cpy.re/lazy-static/torrents/57b72022-092e-42da-bc0f-5320bc1e2a7a-480-hls.torrent", "size_in_bytes": 8659551, "mime_type": "application/x-bittorrent" }, { "title": "LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)", "url": "https://peertube2.cpy.re/lazy-static/torrents/a3f251ee-30c2-41ad-8738-2e09e5d0f122-240-hls.torrent", "size_in_bytes": 4817152, "mime_type": "application/x-bittorrent" }, { "title": "LO SOLIDE (la classe politique voit l’occasion rêvée de faire la peau à Mélenchon)", "url": "https://peertube2.cpy.re/lazy-static/torrents/5d90eaa4-835e-44b4-900f-17dd9e4e0853-0-hls.torrent", "size_in_bytes": 2122003, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T20:48:30.054Z", "author": { "name": "a_gauche", "url": "https://peertube2.cpy.re/c/a_gauche@indymotion.fr/videos" } }, { "id": "https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S", "content_html": "

Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes à Lyon. Cette vidéo ne revient pas directement sur les faits, par ailleurs largement commentés dans la presse et le monde politique, mais tente d’en interroger le contexte. Pour Blast, Elian Delacôte, journaliste à Rue89Lyon, nous éclaire sur l'ancrage de l'extrême droite radicale à Lyon, qui s'est illustrée dans de nombreuses agressions ces dernières décennies.

\n

Journalistes : Clara Menais
\nMontage : Émilie Fortun
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#lyon
\n#antifa
\n#fascisme

\n", "url": "https://peertube2.cpy.re/w/xu9LsvRpcnbutzgWNdGd9S", "title": "Lyon : Une ville sous la pression de l'extrême droite radicale", "summary": "Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir Le 14 février 2026, Quentin Deranque, 23 ans, militant identitaire, meurt des suites d’un affrontement avec des antifascistes...", "attachments": [ { "title": "Lyon : Une ville sous la pression de l'extrême droite radicale", "url": "https://peertube2.cpy.re/lazy-static/torrents/5dd0936d-a396-4ac3-9d02-3f85d5d990ed-1080-hls.torrent", "size_in_bytes": 220028805, "mime_type": "application/x-bittorrent" }, { "title": "Lyon : Une ville sous la pression de l'extrême droite radicale", "url": "https://peertube2.cpy.re/lazy-static/torrents/8e2f6285-e5c2-49e4-b32f-9dee584668af-720-hls.torrent", "size_in_bytes": 117733056, "mime_type": "application/x-bittorrent" }, { "title": "Lyon : Une ville sous la pression de l'extrême droite radicale", "url": "https://peertube2.cpy.re/lazy-static/torrents/73916253-d831-4747-a681-40ff0e9d317b-480-hls.torrent", "size_in_bytes": 70900841, "mime_type": "application/x-bittorrent" }, { "title": "Lyon : Une ville sous la pression de l'extrême droite radicale", "url": "https://peertube2.cpy.re/lazy-static/torrents/8dbec962-6e99-4d3c-9e4e-2580723996a7-240-hls.torrent", "size_in_bytes": 36971604, "mime_type": "application/x-bittorrent" }, { "title": "Lyon : Une ville sous la pression de l'extrême droite radicale", "url": "https://peertube2.cpy.re/lazy-static/torrents/e3d19242-bbdb-4941-a17e-ee0f695dab68-0-hls.torrent", "size_in_bytes": 19780927, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T19:00:34.371Z", "author": { "name": "blast, le souffle de l’info", "url": "https://peertube2.cpy.re/c/blast_info@video.blast-info.fr/videos" } }, { "id": "https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB", "content_html": "

🥁 Le défi

\n

Créer une petite pièce musicale :
\nune compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉)

\n

✅ Les règles du jeu

\n

Votre création doit contenir :

\n

1️⃣ Au moins 3 accords différents
\n2️⃣ Au moins 3 Taks / Slaps
\n3️⃣ Au moins 3 Kicks / Booms
\n4️⃣ Une montée de 3 notes consécutives dans la gamme,
\net une descente de 3 notes consécutives

\n

📅 Comment participer

\n

👉 Vous avez jusqu’au 28 février pour poster votre vidéo en commentaire sous ce post.

\n

L’objectif ?
\n✨ Stimuler votre créativité
\n✨ Vous inspirer les uns les autres
\n✨ Et surtout passer de bons moments ensemble en continuant de progresser

\n

🔥 À vos handpans ! 🔥

\n", "url": "https://peertube2.cpy.re/w/raVxwvXt4N4GR7718xxqhB", "title": "Challenge de février 2026 avec Warren Chanti", "summary": "🥁 Le défi Créer une petite pièce musicale : une compo, un groove, un pattern… bref, quelque chose de personnel qui intègre à la fois du rythmique et du mélodique (long d’1min et quelques 😉) ✅ Les règles du jeu Votre création doit conte...", "attachments": [ { "title": "Challenge de février 2026 avec Warren Chanti", "url": "https://peertube2.cpy.re/lazy-static/torrents/cea3cc6b-5c4b-4073-b323-a4bebb68b184-1920-hls.torrent", "size_in_bytes": 37604489, "mime_type": "application/x-bittorrent" }, { "title": "Challenge de février 2026 avec Warren Chanti", "url": "https://peertube2.cpy.re/lazy-static/torrents/489ab5bb-834a-464d-a3b6-80c6470aef25-1280-hls.torrent", "size_in_bytes": 16555893, "mime_type": "application/x-bittorrent" }, { "title": "Challenge de février 2026 avec Warren Chanti", "url": "https://peertube2.cpy.re/lazy-static/torrents/d522d919-25c9-43d3-8692-0da12ab0f2e7-854-hls.torrent", "size_in_bytes": 9109879, "mime_type": "application/x-bittorrent" }, { "title": "Challenge de février 2026 avec Warren Chanti", "url": "https://peertube2.cpy.re/lazy-static/torrents/c93aab12-a228-4f1f-8378-c3b4f21756a9-426-hls.torrent", "size_in_bytes": 4253291, "mime_type": "application/x-bittorrent" }, { "title": "Challenge de février 2026 avec Warren Chanti", "url": "https://peertube2.cpy.re/lazy-static/torrents/8ca03b65-2670-4032-a28c-6853c1d65249-0-hls.torrent", "size_in_bytes": 1632205, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T18:28:32.309Z", "author": { "name": "Couleurs de HandPan", "url": "https://peertube2.cpy.re/c/couleurs_de_handpan@indymotion.fr/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB", "content_html": "

Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir

\n

Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/?utm_medium=YouTubeBlast&utm_source=YouTubeCampagne&utm_campaign=presale_219764

\n
    \n
  1. La Révolution des Œillets fait exploser le décor : Aginter Presse est exposée comme une partie de ses archives alors que Guillou replonge dans l’ombre. Mais si on le croit en fuite et loin, il est en réalité encore au coeur du dispositif contre-révolutionnaire européen.
  2. \n
\n

Ce cinquième épisode d’Agent Occident – Portrait d’un faf suit Guillou dans la phase terminale de la guerre froide clandestine. Du Portugal post-salazariste à l’Espagne de la transition, de l’Angola à l’Amérique latine, il réapparaît partout où la lutte anticommuniste se privatise, se criminalise et se radicalise. Terrorisme, mercenariat, coups d’État ratés, escadrons de la mort : les réseaux qu’il a fréquentés mutent et prolifèrent.
\nÀ mesure que la CIA est muselée par les scandales, d’autres structures émergent : clubs transnationaux, diplomatie parallèle, trafics, banques offshore. En Europe, la stratégie de la tension pourrit en Italie en Allemagne et en Belgique pendant qu’ailleurs, la même logique nourrit les dictatures sud-américaines, l’opération Condor et, finalement, la guerre clandestine afghane.
\nCet épisode raconte aussi la fin d’un cycle : celui d’une contre-révolution occidentale devenue opaque, corrompue et incontrôlable. Et pose une question centrale : contre le communisme, oui — mais pour quoi, exactement ?

\n

Agent Occident – Épisode 5 : 1974–1989

\n

Écrit, monté et raconté par Antoine SANCHEZ
\nProduit par Dancing Dog Productions
\nSon : Baptiste Veilhan, Théo Duchesne
\nGraphisme : Morgane Sabouret, Margaux Simon
\nProduction : Hicham Tragha
\nDirecteur du développement des collaborations extérieures : Mathias Enthoven
\nCo-directrice de la rédaction : Soumaya Benaïssa
\nDirecteur de la publication : Denis Robert

\n

Musique :

\n

PALAYAM (Antoine Sanchez)
\npalayam.bandcamp.com

\n

EROS & THANATOS - Catherine WATINE (album INTRICATION QUANTIQUES © 2020) www.watineprod.com

\n

Bourbonese Qualk
\nbourbonesequalk.bandcamp.com

\n

Y Create - Untitled - From the 3 - Cassette release The Black Box (1984)
\nhesselveldman.bandcamp.com

\n

Nostalgie Eternelle - Devotion
\nnostalgieeternelle.jimdoweb.com

\n

BRUME (Christian Renou) - A Céline Part 1 & 2 - Neue Muster Volume 10 (1993)
\nelsieandjack.com/brume

\n

RON BERRY - Tomb of the Tortured Spirits - The Reaper (1988)
\nron-berry.co.uk

\n

Le site : https://www.blast-info.fr/
\nFacebook : https://www.facebook.com/blastofficiel
\nTwitter : https://twitter.com/blast_france
\nInstagram : https://www.instagram.com/blastofficiel/
\nMastodon : https://mamot.fr/web/@blast_info
\nPeertube : https://video.blast-info.fr/
\nTwitch : https://www.twitch.tv/blastinfo
\nBluesky : https://bsky.app/profile/blast-info.fr

\n

#fascisme
\n#histoire
\n#propagande

\n", "url": "https://peertube2.cpy.re/w/hVJyyVKRgd7aTtcPj5DtKB", "title": "Un fasciste dans la 3e guerre mondiale", "summary": "Soutenez Blast, média indépendant en accès libre grâce au soutien de ses abonnés : https://www.blast-info.fr/soutenir Soutenez notre campagne de pré commande sur Blitz : Inscrivez-vous sur notre page Ulule : https://fr.ulule.com/editionsblitz/...", "attachments": [ { "title": "Un fasciste dans la 3e guerre mondiale", "url": "https://peertube2.cpy.re/lazy-static/torrents/3c58b8b4-a44b-4aff-8743-7e12a6c6dd0e-1080-hls.torrent", "size_in_bytes": 1221352693, "mime_type": "application/x-bittorrent" }, { "title": "Un fasciste dans la 3e guerre mondiale", "url": "https://peertube2.cpy.re/lazy-static/torrents/5e2b362e-4643-4086-8b6d-fe260e17f0eb-720-hls.torrent", "size_in_bytes": 578077461, "mime_type": "application/x-bittorrent" }, { "title": "Un fasciste dans la 3e guerre mondiale", "url": "https://peertube2.cpy.re/lazy-static/torrents/06bd6219-cffa-4d7c-81b5-66c222c097dd-480-hls.torrent", "size_in_bytes": 325081461, "mime_type": "application/x-bittorrent" }, { "title": "Un fasciste dans la 3e guerre mondiale", "url": "https://peertube2.cpy.re/lazy-static/torrents/e250b4af-4b39-4853-964f-d17cf706fcec-240-hls.torrent", "size_in_bytes": 147166221, "mime_type": "application/x-bittorrent" }, { "title": "Un fasciste dans la 3e guerre mondiale", "url": "https://peertube2.cpy.re/lazy-static/torrents/40f168ba-3e4b-4704-9d4b-2e74be88095c-0-hls.torrent", "size_in_bytes": 60062075, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T17:18:07.419Z", "author": { "name": "blast, le souffle de l’info", "url": "https://peertube2.cpy.re/c/blast_info@video.blast-info.fr/videos" } }, { "id": "https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX", "content_html": "", "url": "https://peertube2.cpy.re/w/kkCMxJu1EzTdWDCw9VLDcX", "title": "Raymonde et les blancs becs - Fonctionnaire", "attachments": [ { "title": "Raymonde et les blancs becs - Fonctionnaire", "url": "https://peertube2.cpy.re/lazy-static/torrents/18dec2d4-1bf4-4eab-8870-4c9be5bf4c45-240-hls.torrent", "size_in_bytes": 3568817, "mime_type": "application/x-bittorrent" }, { "title": "Raymonde et les blancs becs - Fonctionnaire", "url": "https://peertube2.cpy.re/lazy-static/torrents/ba3dfba5-8dee-4274-83a3-681c158bca04-0-hls.torrent", "size_in_bytes": 2550314, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T17:00:32.966Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH", "content_html": "", "url": "https://peertube2.cpy.re/w/d3B99CdQkYdXQYd6ZqkcSH", "title": "Eskicit - L'homme révolté", "attachments": [ { "title": "Eskicit - L'homme révolté", "url": "https://peertube2.cpy.re/lazy-static/torrents/03fc36b3-24d5-4c04-9ccb-d687082008db-1080-hls.torrent", "size_in_bytes": 18855225, "mime_type": "application/x-bittorrent" }, { "title": "Eskicit - L'homme révolté", "url": "https://peertube2.cpy.re/lazy-static/torrents/b38292cb-61dc-4770-8b88-784eb324f681-720-hls.torrent", "size_in_bytes": 18580304, "mime_type": "application/x-bittorrent" }, { "title": "Eskicit - L'homme révolté", "url": "https://peertube2.cpy.re/lazy-static/torrents/0374259f-f162-40bb-87e3-2165dbc456e6-480-hls.torrent", "size_in_bytes": 12297925, "mime_type": "application/x-bittorrent" }, { "title": "Eskicit - L'homme révolté", "url": "https://peertube2.cpy.re/lazy-static/torrents/d2c97d0e-edfc-497f-a684-d164c31ee6be-240-hls.torrent", "size_in_bytes": 6236723, "mime_type": "application/x-bittorrent" }, { "title": "Eskicit - L'homme révolté", "url": "https://peertube2.cpy.re/lazy-static/torrents/8352555a-64d7-4df0-b214-3611469ac07f-0-hls.torrent", "size_in_bytes": 3276502, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:57:26.939Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9", "content_html": "", "url": "https://peertube2.cpy.re/w/uACDNrVPZCP6voSmk9JBs9", "title": "Spicy Box - Tenez votre police en laisse", "attachments": [ { "title": "Spicy Box - Tenez votre police en laisse", "url": "https://peertube2.cpy.re/lazy-static/torrents/8a1c76be-4505-4727-807d-d6a7171fa90f-480-hls.torrent", "size_in_bytes": 12584045, "mime_type": "application/x-bittorrent" }, { "title": "Spicy Box - Tenez votre police en laisse", "url": "https://peertube2.cpy.re/lazy-static/torrents/0cdce224-a9ee-43ce-97f1-e5474db5d7cc-240-hls.torrent", "size_in_bytes": 8690844, "mime_type": "application/x-bittorrent" }, { "title": "Spicy Box - Tenez votre police en laisse", "url": "https://peertube2.cpy.re/lazy-static/torrents/fb5b67e6-69de-486d-a42c-045476aad8d4-0-hls.torrent", "size_in_bytes": 5861363, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:54:18.850Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz", "content_html": "", "url": "https://peertube2.cpy.re/w/cnKjBYH9V7XvagMuRNEaLz", "title": "La Compagnie Jolie Môme - Sans la Nommer", "attachments": [ { "title": "La Compagnie Jolie Môme - Sans la Nommer", "url": "https://peertube2.cpy.re/lazy-static/torrents/a3e3a886-1f83-46bc-97a4-c329ba070e3e-480-hls.torrent", "size_in_bytes": 12817044, "mime_type": "application/x-bittorrent" }, { "title": "La Compagnie Jolie Môme - Sans la Nommer", "url": "https://peertube2.cpy.re/lazy-static/torrents/99b77705-fcfd-434c-b9fb-6d633aec3171-240-hls.torrent", "size_in_bytes": 9772463, "mime_type": "application/x-bittorrent" }, { "title": "La Compagnie Jolie Môme - Sans la Nommer", "url": "https://peertube2.cpy.re/lazy-static/torrents/fbb8e637-93de-43b5-87a9-a5b90dba6d16-0-hls.torrent", "size_in_bytes": 6100081, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:52:47.613Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8", "content_html": "", "url": "https://peertube2.cpy.re/w/j5BZaqpsnKwhYTNuhYRMJ8", "title": "Skalpel (La k.bine) - Révoltés", "attachments": [ { "title": "Skalpel (La k.bine) - Révoltés", "url": "https://peertube2.cpy.re/lazy-static/torrents/9ff64507-2bfe-4ddc-8b1e-5f128971baa4-240-hls.torrent", "size_in_bytes": 8180309, "mime_type": "application/x-bittorrent" }, { "title": "Skalpel (La k.bine) - Révoltés", "url": "https://peertube2.cpy.re/lazy-static/torrents/ea6b7091-d467-4554-b633-641b4b61df97-0-hls.torrent", "size_in_bytes": 3836240, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:51:31.871Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n", "content_html": "", "url": "https://peertube2.cpy.re/w/phHBJC8KGpDLtGnHtjcf1n", "title": "Serge UTGE-ROYO - Sur la Commune", "attachments": [ { "title": "Serge UTGE-ROYO - Sur la Commune", "url": "https://peertube2.cpy.re/lazy-static/torrents/25fb18ae-1071-42ad-8caf-82d53e57bae6-240-hls.torrent", "size_in_bytes": 7632486, "mime_type": "application/x-bittorrent" }, { "title": "Serge UTGE-ROYO - Sur la Commune", "url": "https://peertube2.cpy.re/lazy-static/torrents/7099e3b8-23e6-414f-a0fc-11ec35e6da06-0-hls.torrent", "size_in_bytes": 5592255, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:46:10.105Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX", "content_html": "", "url": "https://peertube2.cpy.re/w/xjYsqL59F7unWY7Qcy2pNX", "title": "Les Zetlascars et la trompida - Allons Enfants De La Latrine", "attachments": [ { "title": "Les Zetlascars et la trompida - Allons Enfants De La Latrine", "url": "https://peertube2.cpy.re/lazy-static/torrents/3f7ed2fd-ce84-4fc7-ac9f-a146a63a3118-1080-hls.torrent", "size_in_bytes": 31625478, "mime_type": "application/x-bittorrent" }, { "title": "Les Zetlascars et la trompida - Allons Enfants De La Latrine", "url": "https://peertube2.cpy.re/lazy-static/torrents/ce3f83f5-1413-451c-bc55-917e836470ef-720-hls.torrent", "size_in_bytes": 27128594, "mime_type": "application/x-bittorrent" }, { "title": "Les Zetlascars et la trompida - Allons Enfants De La Latrine", "url": "https://peertube2.cpy.re/lazy-static/torrents/9419bd88-507b-475d-95ad-7c885e339417-480-hls.torrent", "size_in_bytes": 14533789, "mime_type": "application/x-bittorrent" }, { "title": "Les Zetlascars et la trompida - Allons Enfants De La Latrine", "url": "https://peertube2.cpy.re/lazy-static/torrents/fb51b2ae-09a1-4d9e-a992-98cc91113a51-240-hls.torrent", "size_in_bytes": 7056397, "mime_type": "application/x-bittorrent" }, { "title": "Les Zetlascars et la trompida - Allons Enfants De La Latrine", "url": "https://peertube2.cpy.re/lazy-static/torrents/874915b4-8263-44df-bf9d-1b66a5ae91f5-0-hls.torrent", "size_in_bytes": 4055667, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:45:18.749Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf", "content_html": "", "url": "https://peertube2.cpy.re/w/rRdFfio8c3VjS9FRfk4rxf", "title": "Calavera - La relève", "attachments": [ { "title": "Calavera - La relève", "url": "https://peertube2.cpy.re/lazy-static/torrents/63de025f-0947-4551-9e7a-4dec5d18a1f2-240-hls.torrent", "size_in_bytes": 5087698, "mime_type": "application/x-bittorrent" }, { "title": "Calavera - La relève", "url": "https://peertube2.cpy.re/lazy-static/torrents/c3484bad-c6b2-406f-a76e-60536f759c02-0-hls.torrent", "size_in_bytes": 3304217, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:35:35.730Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3", "content_html": "", "url": "https://peertube2.cpy.re/w/edNH5bcnhr72mhDqK4SLX3", "title": "Brigada Flores Magon - Black Bloc Revenge", "attachments": [ { "title": "Brigada Flores Magon - Black Bloc Revenge", "url": "https://peertube2.cpy.re/lazy-static/torrents/3bf94e92-6def-4b91-80be-5a2e06025094-480-hls.torrent", "size_in_bytes": 6069348, "mime_type": "application/x-bittorrent" }, { "title": "Brigada Flores Magon - Black Bloc Revenge", "url": "https://peertube2.cpy.re/lazy-static/torrents/a26ea5c6-0727-49b6-8a74-21113188af18-240-hls.torrent", "size_in_bytes": 4158428, "mime_type": "application/x-bittorrent" }, { "title": "Brigada Flores Magon - Black Bloc Revenge", "url": "https://peertube2.cpy.re/lazy-static/torrents/5c8fd35d-8c21-41d0-86c7-f747b897c953-0-hls.torrent", "size_in_bytes": 2737360, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:33:28.427Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx", "content_html": "", "url": "https://peertube2.cpy.re/w/sJApZ9xL6vgVjkF8NhWfgx", "title": "Cartouche - Télé de merde", "attachments": [ { "title": "Cartouche - Télé de merde", "url": "https://peertube2.cpy.re/lazy-static/torrents/15b4ec30-bf9f-437f-9a34-e954287f5ef5-1080-hls.torrent", "size_in_bytes": 5206770, "mime_type": "application/x-bittorrent" }, { "title": "Cartouche - Télé de merde", "url": "https://peertube2.cpy.re/lazy-static/torrents/322f0edb-7687-417f-b8bd-e9fbc6254793-720-hls.torrent", "size_in_bytes": 4130550, "mime_type": "application/x-bittorrent" }, { "title": "Cartouche - Télé de merde", "url": "https://peertube2.cpy.re/lazy-static/torrents/fda9c416-da86-48f0-b3c4-66f67291d3bd-480-hls.torrent", "size_in_bytes": 3256385, "mime_type": "application/x-bittorrent" }, { "title": "Cartouche - Télé de merde", "url": "https://peertube2.cpy.re/lazy-static/torrents/060d9c46-64b8-4c4a-a3de-261d6d3a328d-240-hls.torrent", "size_in_bytes": 2430119, "mime_type": "application/x-bittorrent" }, { "title": "Cartouche - Télé de merde", "url": "https://peertube2.cpy.re/lazy-static/torrents/ae890d5a-dd28-45b0-aedd-50ea163b7bce-0-hls.torrent", "size_in_bytes": 1846262, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:30:49.762Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP", "content_html": "", "url": "https://peertube2.cpy.re/w/uhZBvQCmNBMV8iRrZswGbP", "title": "Puta Guerilla - J'emmerde", "attachments": [ { "title": "Puta Guerilla - J'emmerde", "url": "https://peertube2.cpy.re/lazy-static/torrents/c8906df3-8bb2-4eca-829c-762847643045-1080-hls.torrent", "size_in_bytes": 18189995, "mime_type": "application/x-bittorrent" }, { "title": "Puta Guerilla - J'emmerde", "url": "https://peertube2.cpy.re/lazy-static/torrents/4f356ffb-cf2e-4f85-a814-2f2ca2990d2a-720-hls.torrent", "size_in_bytes": 17585197, "mime_type": "application/x-bittorrent" }, { "title": "Puta Guerilla - J'emmerde", "url": "https://peertube2.cpy.re/lazy-static/torrents/0788d5b8-5539-4ab6-8d3e-a4e15a808ebf-480-hls.torrent", "size_in_bytes": 12481111, "mime_type": "application/x-bittorrent" }, { "title": "Puta Guerilla - J'emmerde", "url": "https://peertube2.cpy.re/lazy-static/torrents/05417a41-eab9-4498-bfbd-76694dd31629-240-hls.torrent", "size_in_bytes": 7344195, "mime_type": "application/x-bittorrent" }, { "title": "Puta Guerilla - J'emmerde", "url": "https://peertube2.cpy.re/lazy-static/torrents/c49fbd91-23d6-4f71-9284-222e0a4145ed-0-hls.torrent", "size_in_bytes": 4325537, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:27:50.717Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb", "content_html": "", "url": "https://peertube2.cpy.re/w/eDyD5a54WrAajmrmzq8xgb", "title": "Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)", "attachments": [ { "title": "Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)", "url": "https://peertube2.cpy.re/lazy-static/torrents/29d45afb-1ea4-499e-920e-da98a7ce147e-1080-hls.torrent", "size_in_bytes": 11577182, "mime_type": "application/x-bittorrent" }, { "title": "Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)", "url": "https://peertube2.cpy.re/lazy-static/torrents/6fbecf46-5605-4b17-9c5d-fe39fa9530b9-720-hls.torrent", "size_in_bytes": 10857068, "mime_type": "application/x-bittorrent" }, { "title": "Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)", "url": "https://peertube2.cpy.re/lazy-static/torrents/03c120db-edc8-42c2-85f7-8a34b1d425ec-480-hls.torrent", "size_in_bytes": 9514332, "mime_type": "application/x-bittorrent" }, { "title": "Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)", "url": "https://peertube2.cpy.re/lazy-static/torrents/6560b603-b088-4e46-ace6-014c77d97e11-240-hls.torrent", "size_in_bytes": 5809376, "mime_type": "application/x-bittorrent" }, { "title": "Skalpel - On Va Le Faire - Utopie Concrète 3 (feat. E.One)", "url": "https://peertube2.cpy.re/lazy-static/torrents/79d63208-0bb3-415e-ac24-508283c357ab-0-hls.torrent", "size_in_bytes": 3682681, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:24:02.207Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv", "content_html": "", "url": "https://peertube2.cpy.re/w/bCruPz4wuYAwXeDEwHADRv", "title": "H.F Thiefaine - La ballade dAbdallah Geronimo Cohen", "attachments": [ { "title": "H.F Thiefaine - La ballade dAbdallah Geronimo Cohen", "url": "https://peertube2.cpy.re/lazy-static/torrents/b520973b-4944-4652-b792-3b7a73a07f39-240-hls.torrent", "size_in_bytes": 12902713, "mime_type": "application/x-bittorrent" }, { "title": "H.F Thiefaine - La ballade dAbdallah Geronimo Cohen", "url": "https://peertube2.cpy.re/lazy-static/torrents/e2eb8ead-b8b8-4cc3-9fc1-b359a052eb52-0-hls.torrent", "size_in_bytes": 4075347, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T16:19:51.009Z", "author": { "name": "Best of nAnAr", "url": "https://peertube2.cpy.re/c/best_of_nanar@www.yiny.org/videos" }, "tags": [ "Music" ] }, { "id": "https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM", "content_html": "", "url": "https://peertube2.cpy.re/w/tAygL62vgtP6aQSdUhKfqM", "title": "hypodrome course cagnes sur mer", "attachments": [ { "title": "hypodrome course cagnes sur mer", "url": "https://peertube2.cpy.re/lazy-static/torrents/5eb1da21-9cb4-434b-854a-d14ef243a5c0-360-hls.torrent", "size_in_bytes": 2834452, "mime_type": "application/x-bittorrent" }, { "title": "hypodrome course cagnes sur mer", "url": "https://peertube2.cpy.re/lazy-static/torrents/4c87fbf5-8f5f-4675-8d32-63cfacb80d65-144-hls.torrent", "size_in_bytes": 590121, "mime_type": "application/x-bittorrent" }, { "title": "hypodrome course cagnes sur mer", "url": "https://peertube2.cpy.re/lazy-static/torrents/26f01a4c-720b-4d97-8fee-c9ae0dd52381-0-hls.torrent", "size_in_bytes": 660399, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T14:58:20.775Z", "author": { "name": "Main plhardy channel", "url": "https://peertube2.cpy.re/c/plhardy_channel@pire.artisanlogiciel.net/videos" } }, { "id": "https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1", "content_html": "

Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari
\nfait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de ce nouveau fascisme tech.

\n

👇 Abonne-toi pour ne rater aucune analyse sur les enjeux du présent technologique.

\n

🎙 Invité·e·s
\nNorman Ajari est philosophe et universitaire spécialisé dans les études décoloniales et la pensée noire. Il est l'auteur du \"Manifeste afro-décolonial: Le rêve oublié de la politique radicale noire\" (Éditions du Seuil, 2024) et de \"Noirceurs: Race, genre, classe et pessimisme dans la pensée africaine-américaine au XXIe siècle\" (Éditions Divergences, 2022). Son dernier essai, Technofascisme, Le nouveau visage de la suprématie blanche, paraît aux Éditions Météores le 20 février 2026.

\n

📌 Ce que tu vas apprendre

\n
    \n
  • \n

    Le concept de technofascisme : toutes les grandes entreprises fonctionnent comme des dictatures or l'État doit fonctionner comme une entreprise donc l'État doit fonctionner comme une dictature. Le syllogisme est au cœur du projet de la Silicon Valley autoritaire

    \n
  • \n
  • \n

    Palantir et l'impérialisme réticulaire : pourquoi Alex Karp, PDG de Palantir, doit être pris au mot quand il dit que son entreprise est là pour \"tuer des ennemis\", de Gaza à l'Afrique, une mise à jour de l'impérialisme occidental par la technologie

    \n
  • \n
  • \n

    Peter Thiel, prince du technofascisme : sa philosophie de l'histoire, son apologie du capitalisme de monopole et son projet de substituer la forme entreprise à la forme État

    \n
  • \n
  • \n

    L'archéo-futurisme et la Nouvelle Droite française : le lien idéologique entre Guillaume Faye et les milliardaires techno-autoritaires d'aujourd'hui, une généalogie intellectuelle française du technofascisme

    \n
  • \n
  • \n

    Nick Land et ses cautions progressistes : comment ce philosophe pro-fasciste a pu longtemps se dissimuler derrière des compagnons de route féministes et afro-futuristes

    \n
  • \n
  • \n

    Technofascisme vs technoféodalisme : pourquoi les thèses de Varoufakis et Cédric Durand sont insuffisantes et en quoi la notion léniniste d'impérialisme éclaire mieux les dynamiques actuelles

    \n
  • \n
  • \n

    Les racines européennes du technofascisme : le technofascisme n'est pas une rupture avec les Lumières mais leur radicalisation — l'Europe ne peut pas se poser en rempart face à un phénomène qu'elle a elle-même engendré

    \n
  • \n
  • \n

    Sylvia Wynter et la tradition radicale noire : une alternative aux \"lumières blanches\" comme aux \"lumières obscures\" — penser l'humanité non comme un donné mais comme une praxis collective

    \n
  • \n
  • \n

    Que faire ? La voie léniniste : socialiser Palantir pour pouvoir le détruire, attaquer les entreprises de l'intérieur, redonner aux travailleurs le pouvoir dans les structures qui sont aujourd'hui les vrais lieux du gouvernement

    \n
  • \n
\n

📚 Pour aller plus loin
\nTechnofascisme. Le nouveau visage de la suprématie blanche — Norman Ajari — Éditions Météores, 2026

\n

✍🏻 Crédits
\nEntretien : Nastasia Hadjadji
\nMontage : Gerald Holubowicz

\n

👉 Si cette vidéo t'aide à voir l'envers de la tech, pense à t'abonner, liker et partager : ça soutient notre travail et rend ces enjeux plus visibles.

\n

💌 Inscris-toi à la newsletter sur https://synthmedia.fr/newsletter/
\n✊🏼 Et si tu le peux, soutiens Synth sur https://synthmedia.fr/soutenir/

\n

Notre site : https://synthmedia.fr
\nBluesky : https://bsky.app/profile/synthmedia.fr
\nInstagram : https://www.instagram.com/synth.med.ia/
\nMastodon : https://mastodon.social/@synthmedia

\n", "url": "https://peertube2.cpy.re/w/qFpQJojkcPbe29sCtKyXj1", "title": "Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc", "summary": "Philosophe, spécialiste des Black Studies et de la pensée decoloniale, Norman Ajari fait paraître aux éditions Météores « Technofascisme. Le nouveau rêve de la suprématie blanche ». Dans cet entretien il éclaire la généalogie intellectuelle de c...", "attachments": [ { "title": "Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc", "url": "https://peertube2.cpy.re/lazy-static/torrents/2bc103be-9d28-4d1b-b7dd-c96e698b202c-1080-hls.torrent", "size_in_bytes": 1685491934, "mime_type": "application/x-bittorrent" }, { "title": "Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc", "url": "https://peertube2.cpy.re/lazy-static/torrents/aeea7262-c756-48d4-a0a6-0de86a3da107-720-hls.torrent", "size_in_bytes": 837024548, "mime_type": "application/x-bittorrent" }, { "title": "Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc", "url": "https://peertube2.cpy.re/lazy-static/torrents/57f4cbc8-5cd2-4797-994f-beb3268d276c-480-hls.torrent", "size_in_bytes": 432190738, "mime_type": "application/x-bittorrent" }, { "title": "Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc", "url": "https://peertube2.cpy.re/lazy-static/torrents/dfab2706-336e-4474-ba4d-91be77b26f15-240-hls.torrent", "size_in_bytes": 164610601, "mime_type": "application/x-bittorrent" }, { "title": "Le TECHNOFASCISME, nouveau rêve de l’OCCIDENT blanc", "url": "https://peertube2.cpy.re/lazy-static/torrents/baa0264e-b494-4481-9837-51a45ae685e3-0-hls.torrent", "size_in_bytes": 66406089, "mime_type": "application/x-bittorrent" } ], "date_modified": "2026-02-19T12:49:24.155Z", "author": { "name": "Synth Media", "url": "https://peertube2.cpy.re/c/synth_media@indymotion.fr/videos" }, "tags": [ "News & Politics" ] } ] } } } } } }, "404": { "description": "video channel or account not found" }, "406": { "description": "accept header unsupported" } } } }, "/feeds/subscriptions.{format}": { "get": { "tags": [ "Video Feeds" ], "summary": "Videos of subscriptions feeds", "operationId": "getSyndicatedSubscriptionVideos", "parameters": [ { "name": "format", "in": "path", "required": true, "description": "format expected (we focus on making `rss` the most feature-rich ; it serves [Media RSS](https://www.rssboard.org/media-rss))", "schema": { "type": "string", "enum": [ "xml", "rss", "rss2", "atom", "atom1", "json", "json1" ] } }, { "name": "accountId", "in": "query", "description": "limit listing to a specific account", "schema": { "type": "string" }, "required": true }, { "name": "token", "in": "query", "description": "private token allowing access", "schema": { "type": "string" }, "required": true }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/nsfw" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/include" }, { "$ref": "#/components/parameters/privacyOneOf" }, { "$ref": "#/components/parameters/hasHLSFiles" }, { "$ref": "#/components/parameters/hasWebVideoFiles" } ], "responses": { "200": { "description": "successful operation", "headers": { "Cache-Control": { "schema": { "type": "string", "default": "max-age=900" } } }, "content": { "application/xml": { "schema": { "$ref": "#/components/schemas/VideosForXML" } }, "application/rss+xml": { "schema": { "$ref": "#/components/schemas/VideosForXML" } }, "text/xml": { "schema": { "$ref": "#/components/schemas/VideosForXML" } }, "application/atom+xml": { "schema": { "$ref": "#/components/schemas/VideosForXML" } }, "application/json": { "schema": { "type": "object" } } } }, "406": { "description": "accept header unsupported" } } } }, "/feeds/podcast/videos.xml": { "get": { "tags": [ "Video Feeds" ], "summary": "Videos podcast feed", "operationId": "getVideosPodcastFeed", "parameters": [ { "name": "videoChannelId", "in": "query", "description": "Limit listing to a specific video channel", "required": true, "schema": { "type": "string" } } ], "responses": { "200": { "description": "successful operation", "headers": { "Cache-Control": { "schema": { "type": "string", "default": "max-age=900" } } } }, "404": { "description": "video channel not found" } } } }, "/api/v1/accounts/{name}": { "get": { "tags": [ "Accounts" ], "summary": "Get an account", "operationId": "getAccount", "parameters": [ { "$ref": "#/components/parameters/name" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Account" } } } }, "404": { "description": "account not found" } } } }, "/api/v1/accounts/{name}/videos": { "get": { "tags": [ "Accounts", "Video" ], "summary": "List videos of an account", "operationId": "getAccountVideos", "parameters": [ { "$ref": "#/components/parameters/name" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/skipCount" }, { "$ref": "#/components/parameters/videosSort" }, { "$ref": "#/components/parameters/nsfw" }, { "$ref": "#/components/parameters/nsfwFlagsIncluded" }, { "$ref": "#/components/parameters/nsfwFlagsExcluded" }, { "$ref": "#/components/parameters/isLive" }, { "$ref": "#/components/parameters/includeScheduledLive" }, { "$ref": "#/components/parameters/categoryOneOf" }, { "$ref": "#/components/parameters/licenceOneOf" }, { "$ref": "#/components/parameters/languageOneOf" }, { "$ref": "#/components/parameters/tagsOneOf" }, { "$ref": "#/components/parameters/tagsAllOf" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/include" }, { "$ref": "#/components/parameters/hasHLSFiles" }, { "$ref": "#/components/parameters/hasWebVideoFiles" }, { "$ref": "#/components/parameters/host" }, { "$ref": "#/components/parameters/autoTagOneOfVideo" }, { "$ref": "#/components/parameters/privacyOneOf" }, { "$ref": "#/components/parameters/excludeAlreadyWatched" }, { "$ref": "#/components/parameters/search" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoListResponse" } } } } }, "x-codeSamples": [ { "lang": "JavaScript", "source": "fetch('https://peertube2.cpy.re/api/v1/accounts/{name}/videos')\n.then(function(response) {\n return response.json()\n}).then(function(data) {\n console.log(data)\n})\n" }, { "lang": "Shell", "source": "## DEPENDENCIES: jq\ncurl -s https://peertube2.cpy.re/api/v1/accounts/{name}/videos | jq\n" }, { "lang": "Ruby", "source": "require 'net/http'\nrequire 'json'\n\nuri = URI.parse(\"https://peertube2.cpy.re/api/v1/accounts/{name}/videos\")\n\nhttp = Net::HTTP.new(uri.host, uri.port)\nhttp.use_ssl = true\n\nresponse = http.get(uri.request_uri)\n\nputs JSON.parse(response.read_body)\n" }, { "lang": "Python", "source": "import requests\n\nr = requests.get(\"https://peertube2.cpy.re/api/v1//accounts/{name}/videos\")\njson = r.json()\n\nprint(json)\n" } ] } }, "/api/v1/accounts/{name}/followers": { "get": { "tags": [ "Accounts" ], "summary": "List followers of an account", "security": [ { "OAuth2": [] } ], "operationId": "getAccountFollowers", "parameters": [ { "$ref": "#/components/parameters/name" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/followersSort" }, { "$ref": "#/components/parameters/search" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Follow" } } } } } } } } } }, "/api/v1/accounts": { "get": { "tags": [ "Accounts" ], "summary": "List accounts", "operationId": "getAccounts", "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Account" } } } } } } } } } }, "/api/v1/config": { "get": { "tags": [ "Config" ], "summary": "Get instance public configuration", "operationId": "getConfig", "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ServerConfig" }, "examples": { "nightly": { "value": { "client": { "newFeaturesInfo": true, "header": { "hideInstanceName": false }, "videos": { "miniature": { "preferAuthorDisplayName": true }, "resumableUpload": { "maxChunkSize": 0 } }, "browseVideos": { "defaultSort": "-publishedAt", "defaultScope": "federated" }, "menu": { "login": { "redirectOnSingleExternalAuth": false } }, "openInApp": { "android": { "intent": { "enabled": true, "host": "joinpeertube.org", "scheme": "peertube", "fallbackUrl": "https://play.google.com/store/apps/details?id=org.framasoft.peertube" } }, "ios": { "enabled": true, "host": "joinpeertube.org", "scheme": "peertube", "fallbackUrl": "https://apps.apple.com/fr/app/peertube/id6737834858" } } }, "defaults": { "publish": { "downloadEnabled": true, "commentsPolicy": 1, "privacy": 4, "licence": null }, "p2p": { "webapp": { "enabled": true }, "embed": { "enabled": true } }, "player": { "theme": "lucide", "autoPlay": true } }, "webadmin": { "configuration": { "edition": { "allowed": true } } }, "instance": { "name": "PeerTube Nightly", "shortDescription": "PeerTube instance updated nightly", "isNSFW": false, "defaultNSFWPolicy": "do_not_list", "defaultClientRoute": "/home", "serverCountry": "", "support": { "text": "" }, "social": { "blueskyLink": "", "mastodonLink": "", "xLink": "", "externalLink": "" }, "customizations": { "javascript": "", "css": "" }, "defaultLanguage": "en", "avatars": [ { "height": 48, "width": 48, "path": "/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png", "createdAt": "2024-05-15T09:12:38.749Z", "updatedAt": "2024-05-15T09:12:38.749Z" }, { "height": 120, "width": 120, "path": "/lazy-static/avatars/1163da44-0367-4df9-bf10-a1b0dc0e3fb9.png", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/1163da44-0367-4df9-bf10-a1b0dc0e3fb9.png", "createdAt": "2024-05-15T09:12:38.719Z", "updatedAt": "2024-05-15T09:12:38.719Z" }, { "height": 600, "width": 600, "path": "/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "createdAt": "2024-05-15T09:12:38.709Z", "updatedAt": "2024-05-15T09:12:38.709Z" }, { "height": 1500, "width": 1500, "path": "/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.png", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.png", "createdAt": "2024-05-15T09:12:38.684Z", "updatedAt": "2024-05-15T09:12:38.684Z" } ], "banners": [ { "height": 100, "width": 600, "path": "/lazy-static/banners/d853452c-f020-4c6f-a4ea-9fc582d68ff2.jpg", "fileUrl": "https://peertube2.cpy.re/lazy-static/banners/d853452c-f020-4c6f-a4ea-9fc582d68ff2.jpg", "createdAt": "2024-04-16T14:09:02.665Z", "updatedAt": "2024-04-16T14:09:02.665Z" }, { "height": 317, "width": 1920, "path": "/lazy-static/banners/772ff0ae-6cb5-4d1c-b89b-ace85eece196.jpg", "fileUrl": "https://peertube2.cpy.re/lazy-static/banners/772ff0ae-6cb5-4d1c-b89b-ace85eece196.jpg", "createdAt": "2024-04-16T14:09:02.615Z", "updatedAt": "2024-04-16T14:09:02.615Z" } ], "logo": [ { "height": 48, "width": 48, "type": "favicon", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png", "isFallback": true }, { "height": 120, "width": 120, "type": "favicon", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/1163da44-0367-4df9-bf10-a1b0dc0e3fb9.png", "isFallback": true }, { "height": 600, "width": 600, "type": "favicon", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "isFallback": true }, { "height": 1500, "width": 1500, "type": "favicon", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.png", "isFallback": true }, { "height": 48, "width": 48, "type": "header-square", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png", "isFallback": true }, { "height": 120, "width": 120, "type": "header-square", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/1163da44-0367-4df9-bf10-a1b0dc0e3fb9.png", "isFallback": true }, { "height": 600, "width": 600, "type": "header-square", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "isFallback": true }, { "height": 1500, "width": 1500, "type": "header-square", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.png", "isFallback": true }, { "height": 48, "width": 48, "type": "header-wide", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png", "isFallback": true }, { "height": 120, "width": 120, "type": "header-wide", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/1163da44-0367-4df9-bf10-a1b0dc0e3fb9.png", "isFallback": true }, { "height": 600, "width": 600, "type": "header-wide", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "isFallback": true }, { "height": 1500, "width": 1500, "type": "header-wide", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.png", "isFallback": true }, { "height": 48, "width": 48, "type": "opengraph", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png", "isFallback": true }, { "height": 120, "width": 120, "type": "opengraph", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/1163da44-0367-4df9-bf10-a1b0dc0e3fb9.png", "isFallback": true }, { "height": 600, "width": 600, "type": "opengraph", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "isFallback": true }, { "height": 1500, "width": 1500, "type": "opengraph", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.png", "isFallback": true } ] }, "search": { "remoteUri": { "users": true, "anonymous": false }, "searchIndex": { "enabled": true, "url": "https://sepiasearch.org", "disableLocalSearch": false, "isDefaultSearch": true } }, "plugin": { "registered": [ { "npmName": "peertube-plugin-auto-mute", "name": "auto-mute", "version": "0.0.8", "description": "Auto mute plugin for PeerTube", "clientScripts": {} }, { "npmName": "peertube-plugin-matomo", "name": "matomo", "version": "1.0.2", "description": "Matomo plugin that tracks page views on a PeerTube instance.", "clientScripts": { "dist/common-client-plugin.js": { "script": "dist/common-client-plugin.js", "scopes": [ "common" ] }, "dist/embed-client-plugin.js": { "script": "dist/embed-client-plugin.js", "scopes": [ "embed" ] } } }, { "npmName": "peertube-plugin-auth-ldap", "name": "auth-ldap", "version": "0.0.14", "description": "Add LDAP support to login form in PeerTube.", "clientScripts": {} }, { "npmName": "peertube-plugin-akismet", "name": "akismet", "version": "0.1.2", "description": "Reject local comments, remote comments and registrations based on Akismet service", "clientScripts": { "dist/common-client-plugin.js": { "script": "dist/common-client-plugin.js", "scopes": [ "common" ] } } }, { "npmName": "peertube-plugin-transcoding-custom-quality", "name": "transcoding-custom-quality", "version": "0.2.0", "description": "Set a custom quality for transcoding", "clientScripts": {} }, { "npmName": "peertube-plugin-video-annotation", "name": "video-annotation", "version": "0.2.0", "description": "PeerTube plugin video annotation", "clientScripts": { "dist/embed-client-plugin.js": { "script": "dist/embed-client-plugin.js", "scopes": [ "embed" ] }, "dist/video-edit-client-plugin.js": { "script": "dist/video-edit-client-plugin.js", "scopes": [ "video-edit" ] }, "dist/video-watch-client-plugin.js": { "script": "dist/video-watch-client-plugin.js", "scopes": [ "video-watch" ] } } }, { "npmName": "peertube-plugin-livechat", "name": "livechat", "version": "14.0.2", "description": "PeerTube plugin livechat: create chat rooms for your Peertube lives! Comes with many features: federation, moderation tools, chat bot, chat persistence, OBS integration, ...", "clientScripts": { "dist/client/common-client-plugin.js": { "script": "dist/client/common-client-plugin.js", "scopes": [ "common" ] }, "dist/client/admin-plugin-client-plugin.js": { "script": "dist/client/admin-plugin-client-plugin.js", "scopes": [ "admin-plugin" ] } } } ], "registeredExternalAuths": [], "registeredIdAndPassAuths": [ { "npmName": "peertube-plugin-auth-ldap", "name": "auth-ldap", "version": "0.0.14", "authName": "ldap", "weight": 100 } ] }, "theme": { "registered": [ { "npmName": "peertube-theme-dark", "name": "dark", "version": "3.0.2", "description": "PeerTube dark theme", "css": [ "assets/style.css" ], "clientScripts": {} }, { "npmName": "peertube-theme-framasoft", "name": "framasoft", "version": "1.0.0", "description": "PeerTube Framasoft theme", "css": [ "assets/style.css" ], "clientScripts": {} } ], "builtIn": [ { "name": "peertube-core-dark-brown" }, { "name": "peertube-core-light-beige" } ], "default": "default", "customization": { "primaryColor": null, "onPrimaryColor": null, "foregroundColor": null, "backgroundColor": null, "backgroundSecondaryColor": null, "menuForegroundColor": null, "menuBackgroundColor": null, "menuBorderRadius": null, "headerForegroundColor": null, "headerBackgroundColor": null, "inputBorderRadius": null } }, "email": { "enabled": true }, "contactForm": { "enabled": true }, "serverVersion": "8.0.2-nightly-2026-02-19", "serverCommit": "", "transcoding": { "remoteRunners": { "enabled": true }, "hls": { "enabled": true }, "web_videos": { "enabled": false }, "enabledResolutions": [ 0, 240, 480 ], "profile": "custom-quality", "availableProfiles": [ "default", "custom-quality" ] }, "live": { "enabled": true, "allowReplay": true, "latencySetting": { "enabled": true }, "maxDuration": -1, "maxInstanceLives": 20, "maxUserLives": 4, "transcoding": { "enabled": true, "remoteRunners": { "enabled": true }, "enabledResolutions": [ 360 ], "profile": "default", "availableProfiles": [ "default", "custom-quality" ] }, "rtmp": { "port": 1935 } }, "videoStudio": { "enabled": true, "remoteRunners": { "enabled": false } }, "videoFile": { "update": { "enabled": true } }, "videoTranscription": { "enabled": true, "remoteRunners": { "enabled": true } }, "import": { "videos": { "http": { "enabled": true }, "torrent": { "enabled": true } }, "videoChannelSynchronization": { "enabled": true }, "users": { "enabled": true } }, "export": { "users": { "enabled": true, "exportExpiration": 172800000, "maxUserVideoQuota": 10737418240 } }, "autoBlacklist": { "videos": { "ofUsers": { "enabled": true } } }, "avatar": { "file": { "size": { "max": 8388608 }, "extensions": [ ".png", ".jpeg", ".jpg", ".gif", ".webp" ] } }, "banner": { "file": { "size": { "max": 8388608 }, "extensions": [ ".png", ".jpeg", ".jpg", ".gif", ".webp" ] } }, "logo": { "file": { "size": { "max": 8388608 }, "extensions": [ ".svg", ".png", ".jpeg", ".jpg", ".gif", ".webp" ] } }, "video": { "image": { "extensions": [ ".png", ".jpg", ".jpeg", ".webp" ], "size": { "max": 8388608 } }, "file": { "extensions": [ ".webm", ".ogv", ".ogg", ".mp4", ".mkv", ".mov", ".qt", ".mqv", ".m4v", ".flv", ".f4v", ".wmv", ".avi", ".3gp", ".3gpp", ".3g2", ".3gpp2", ".nut", ".mts", "ts", ".m2ts", ".mpv", ".m2v", ".m1v", ".mpg", ".mpe", ".mpeg", ".vob", ".mxf", ".mp3", ".wma", ".wav", ".flac", ".aac", ".m4a", ".ac3" ] } }, "videoCaption": { "file": { "size": { "max": 20971520 }, "extensions": [ ".vtt", ".srt" ] } }, "user": { "videoQuota": 524288000, "videoQuotaDaily": 104857600 }, "videoChannels": { "maxPerUser": 20 }, "trending": { "videos": { "intervalDays": 7, "algorithms": { "enabled": [ "best", "hot", "most-viewed", "most-liked" ], "default": "most-viewed" } } }, "tracker": { "enabled": true }, "followings": { "instance": { "autoFollowIndex": { "indexUrl": "https://instances.joinpeertube.org" } } }, "federation": { "enabled": true }, "broadcastMessage": { "enabled": false, "message": "We are currently experiencing technical problems on this instance. We are trying to fix it as soon as possible. Thank you for your understanding.", "level": "error", "dismissable": false }, "homepage": { "enabled": true }, "openTelemetry": { "metrics": { "enabled": true, "playbackStatsInterval": 15000 } }, "views": { "videos": { "remote": { "maxAge": 2592000000 }, "local": { "maxAge": -1 }, "watchingInterval": { "anonymous": 5000, "users": 5000 } } }, "storyboards": { "enabled": true, "remoteRunners": { "enabled": false } }, "webrtc": { "stunServers": [ "stun:stunserver2024.stunprotocol.org", "stun:stun.framasoft.org" ] }, "nsfwFlagsSettings": { "enabled": true }, "fieldsConstraints": { "users": { "password": { "minLength": 8, "maxLength": 50 } } }, "signup": { "allowed": false, "allowedForCurrentIP": true, "minimumAge": 16, "requiresApproval": false, "requiresEmailVerification": true } } } } } } } } } }, "/api/v1/config/about": { "get": { "summary": "Get instance \"About\" information", "operationId": "getAbout", "tags": [ "Config" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ServerConfigAbout" }, "examples": { "nightly": { "value": { "instance": { "name": "PeerTube Nightly", "shortDescription": "PeerTube instance updated nightly", "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.", "terms": "No terms for now. Being a closed test instance, no real terms of use beyond fair use are to be expected.", "codeOfConduct": "", "hardwareInformation": "", "creationReason": "", "moderationInformation": "", "administrator": "", "maintenanceLifetime": "", "businessModel": "", "languages": [ "fr" ], "categories": [ 16 ], "banners": [ { "height": 100, "width": 600, "path": "/lazy-static/banners/d853452c-f020-4c6f-a4ea-9fc582d68ff2.jpg", "fileUrl": "https://peertube2.cpy.re/lazy-static/banners/d853452c-f020-4c6f-a4ea-9fc582d68ff2.jpg", "createdAt": "2024-04-16T14:09:02.665Z", "updatedAt": "2024-04-16T14:09:02.665Z" }, { "height": 317, "width": 1920, "path": "/lazy-static/banners/772ff0ae-6cb5-4d1c-b89b-ace85eece196.jpg", "fileUrl": "https://peertube2.cpy.re/lazy-static/banners/772ff0ae-6cb5-4d1c-b89b-ace85eece196.jpg", "createdAt": "2024-04-16T14:09:02.615Z", "updatedAt": "2024-04-16T14:09:02.615Z" } ], "avatars": [ { "height": 48, "width": 48, "path": "/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/abace30f-69ad-4ff2-a954-dea06c5db6eb.png", "createdAt": "2024-05-15T09:12:38.749Z", "updatedAt": "2024-05-15T09:12:38.749Z" }, { "height": 120, "width": 120, "path": "/lazy-static/avatars/1163da44-0367-4df9-bf10-a1b0dc0e3fb9.png", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/1163da44-0367-4df9-bf10-a1b0dc0e3fb9.png", "createdAt": "2024-05-15T09:12:38.719Z", "updatedAt": "2024-05-15T09:12:38.719Z" }, { "height": 600, "width": 600, "path": "/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/177f70c4-ddef-4bb6-bc96-b00d5e2a0e05.png", "createdAt": "2024-05-15T09:12:38.709Z", "updatedAt": "2024-05-15T09:12:38.709Z" }, { "height": 1500, "width": 1500, "path": "/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.png", "fileUrl": "https://peertube2.cpy.re/lazy-static/avatars/82936e50-9560-42e7-9e4b-d96309f5c9c9.png", "createdAt": "2024-05-15T09:12:38.684Z", "updatedAt": "2024-05-15T09:12:38.684Z" } ] } } } } } } } } } }, "/api/v1/config/custom": { "get": { "summary": "Get instance runtime configuration", "operationId": "getCustomConfig", "tags": [ "Config" ], "security": [ { "OAuth2": [ "admin" ] } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ServerConfigCustom" } } } } } }, "put": { "summary": "Set instance runtime configuration", "operationId": "putCustomConfig", "tags": [ "Config" ], "security": [ { "OAuth2": [ "admin" ] } ], "responses": { "200": { "description": "successful operation" }, "400": { "x-summary": "field inconsistencies", "description": "Arises when:\n - the emailer is disabled and the instance is open to registrations\n - web videos and hls are disabled with transcoding enabled - you need at least one enabled\n" } } }, "delete": { "summary": "Delete instance runtime configuration", "operationId": "delCustomConfig", "tags": [ "Config" ], "security": [ { "OAuth2": [ "admin" ] } ], "responses": { "200": { "description": "successful operation" } } } }, "/api/v1/config/instance-banner/pick": { "post": { "summary": "Update instance banner", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Config" ], "responses": { "204": { "description": "successful operation" }, "413": { "description": "image file too large", "headers": { "X-File-Maximum-Size": { "schema": { "type": "string", "format": "Nginx size" }, "description": "Maximum file size for the banner" } } } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "bannerfile": { "description": "The file to upload.", "type": "string", "format": "binary" } } }, "encoding": { "bannerfile": { "contentType": "image/png, image/jpeg" } } } } } } }, "/api/v1/config/instance-banner": { "delete": { "summary": "Delete instance banner", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Config" ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/config/instance-avatar/pick": { "post": { "summary": "Update instance avatar", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Config" ], "responses": { "204": { "description": "successful operation" }, "413": { "description": "image file too large", "headers": { "X-File-Maximum-Size": { "schema": { "type": "string", "format": "Nginx size" }, "description": "Maximum file size for the avatar" } } } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "avatarfile": { "description": "The file to upload.", "type": "string", "format": "binary" } } }, "encoding": { "avatarfile": { "contentType": "image/png, image/jpeg" } } } } } } }, "/api/v1/config/instance-avatar": { "delete": { "summary": "Delete instance avatar", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Config" ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/config/instance-logo/:logoType/pick": { "post": { "summary": "Update instance logo", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Config" ], "parameters": [ { "$ref": "#/components/parameters/logoTypeParam" } ], "responses": { "204": { "description": "successful operation" }, "413": { "description": "image file too large", "headers": { "X-File-Maximum-Size": { "schema": { "type": "string", "format": "Nginx size" }, "description": "Maximum file size for the banner" } } } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "logofile": { "description": "The file to upload.", "type": "string", "format": "binary" } } }, "encoding": { "logofile": { "contentType": "image/png, image/jpeg" } } } } } } }, "/api/v1/config/instance-logo/:logoType": { "delete": { "summary": "Delete instance logo", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Config" ], "parameters": [ { "$ref": "#/components/parameters/logoTypeParam" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/custom-pages/homepage/instance": { "get": { "summary": "Get instance custom homepage", "tags": [ "Homepage" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CustomHomepage" } } } }, "404": { "description": "No homepage set" } } }, "put": { "summary": "Set instance custom homepage", "tags": [ "Homepage" ], "security": [ { "OAuth2": [ "admin" ] } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "content": { "type": "string", "description": "content of the homepage, that will be injected in the client" } } } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/jobs/pause": { "post": { "summary": "Pause job queue", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Job" ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/jobs/resume": { "post": { "summary": "Resume job queue", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Job" ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/jobs/{state}": { "get": { "summary": "List instance jobs", "operationId": "getJobs", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Job" ], "parameters": [ { "name": "state", "in": "path", "required": true, "description": "The state of the job ('' for for no filter)", "schema": { "type": "string", "enum": [ "", "active", "completed", "failed", "waiting", "delayed" ] } }, { "$ref": "#/components/parameters/jobType" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "maxItems": 100, "items": { "$ref": "#/components/schemas/Job" } } } } } } } } } }, "/api/v1/server/followers": { "get": { "tags": [ "Instance Follows" ], "summary": "List instances following the server", "parameters": [ { "$ref": "#/components/parameters/followState" }, { "$ref": "#/components/parameters/actorType" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Follow" } } } } } } } } } }, "/api/v1/server/followers/{handle}": { "delete": { "summary": "Remove or reject a follower to your server", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Instance Follows" ], "parameters": [ { "name": "handle", "in": "path", "required": true, "description": "The remote actor handle to remove from your followers", "schema": { "type": "string", "format": "email" } } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "follower not found" } } } }, "/api/v1/server/followers/{handle}/reject": { "post": { "summary": "Reject a pending follower to your server", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Instance Follows" ], "parameters": [ { "name": "handle", "in": "path", "required": true, "description": "The remote actor handle to remove from your followers", "schema": { "type": "string", "format": "email" } } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "follower not found" } } } }, "/api/v1/server/followers/{handle}/accept": { "post": { "summary": "Accept a pending follower to your server", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Instance Follows" ], "parameters": [ { "name": "handle", "in": "path", "required": true, "description": "The remote actor handle to remove from your followers", "schema": { "type": "string", "format": "email" } } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "follower not found" } } } }, "/api/v1/server/following": { "get": { "tags": [ "Instance Follows" ], "summary": "List instances followed by the server", "parameters": [ { "$ref": "#/components/parameters/followState" }, { "$ref": "#/components/parameters/actorType" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Follow" } } } } } } } } }, "post": { "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Instance Follows" ], "summary": "Follow a list of actors (PeerTube instance, channel or account)", "responses": { "204": { "description": "successful operation" }, "500": { "description": "cannot follow a non-HTTPS server" } }, "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "hosts": { "type": "array", "items": { "type": "string", "format": "hostname" }, "uniqueItems": true }, "handles": { "type": "array", "items": { "type": "string" }, "uniqueItems": true } } } } } } } }, "/api/v1/server/following/{hostOrHandle}": { "delete": { "summary": "Unfollow an actor (PeerTube instance, channel or account)", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Instance Follows" ], "parameters": [ { "name": "hostOrHandle", "in": "path", "required": true, "description": "The hostOrHandle to unfollow", "schema": { "type": "string" } } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "host or handle not found" } } } }, "/api/v1/users": { "post": { "summary": "Create a user", "operationId": "addUser", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Users" ], "responses": { "200": { "description": "user created", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AddUserResponse" } } }, "links": { "GetUser": { "operationId": "getUser", "parameters": { "id": "$response.body#/user/id" } }, "PutUser": { "operationId": "putUser", "parameters": { "id": "$response.body#/user/id" } }, "DelUser": { "operationId": "delUser", "parameters": { "id": "$response.body#/user/id" } } } }, "403": { "description": "insufficient authority to create an admin or moderator" } }, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AddUser" } } }, "description": "If the smtp server is configured, you can leave the password empty and an email will be sent\nasking the user to set it first.\n", "required": true } }, "get": { "summary": "List users", "operationId": "getUsers", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Users" ], "parameters": [ { "$ref": "#/components/parameters/usersSearch" }, { "$ref": "#/components/parameters/usersBlocked" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/usersSort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/User" } } } } } } } }, "/api/v1/users/{id}": { "parameters": [ { "$ref": "#/components/parameters/id" } ], "delete": { "summary": "Delete a user", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Users" ], "operationId": "delUser", "responses": { "204": { "description": "successful operation" } } }, "get": { "summary": "Get a user", "security": [ { "OAuth2": [] } ], "tags": [ "Users" ], "operationId": "getUser", "parameters": [ { "name": "withStats", "in": "query", "description": "include statistics about the user (only available as a moderator/admin)", "schema": { "type": "boolean" } } ], "responses": { "200": { "x-summary": "successful operation", "description": "As an admin/moderator, you can request a response augmented with statistics about the user's\nmoderation relations and videos usage, by using the `withStats` parameter.\n", "content": { "application/json": { "schema": { "oneOf": [ { "$ref": "#/components/schemas/User" }, { "$ref": "#/components/schemas/UserWithStats" } ] } } } } } }, "put": { "summary": "Update a user", "security": [ { "OAuth2": [] } ], "tags": [ "Users" ], "operationId": "putUser", "responses": { "204": { "description": "successful operation" } }, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UpdateUser" } } }, "required": true } } }, "/api/v1/oauth-clients/local": { "get": { "summary": "Login prerequisite", "description": "You need to retrieve a client id and secret before [logging in](#operation/getOAuthToken).", "operationId": "getOAuthClient", "tags": [ "Session" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/OAuthClient" } } }, "links": { "UseOAuthClientToLogin": { "operationId": "getOAuthToken", "parameters": { "client_id": "$response.body#/client_id", "client_secret": "$response.body#/client_secret" } } } } }, "x-codeSamples": [ { "lang": "Shell", "source": "API=\"https://peertube2.cpy.re/api/v1\"\n\n## AUTH\ncurl -s \"$API/oauth-clients/local\"\n" } ] } }, "/api/v1/users/token": { "post": { "summary": "Login", "operationId": "getOAuthToken", "description": "With your [client id and secret](#operation/getOAuthClient), you can retrieve an access and refresh tokens.", "tags": [ "Session" ], "parameters": [ { "name": "x-peertube-otp", "in": "header", "schema": { "type": "string" }, "required": false, "description": "If the user enabled two factor authentication, you need to provide the OTP code in this header" } ], "requestBody": { "content": { "application/x-www-form-urlencoded": { "schema": { "oneOf": [ { "$ref": "#/components/schemas/OAuthToken-password" }, { "$ref": "#/components/schemas/OAuthToken-refresh_token" } ], "discriminator": { "propertyName": "grant_type", "mapping": { "password": "#/components/schemas/OAuthToken-password", "refresh_token": "#/components/schemas/OAuthToken-refresh_token" } } } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "token_type": { "type": "string", "example": "Bearer" }, "access_token": { "type": "string", "example": "90286a0bdf0f7315d9d3fe8dabf9e1d2be9c97d0", "description": "valid for 1 day" }, "refresh_token": { "type": "string", "example": "2e0d675df9fc96d2e4ec8a3ebbbf45eca9137bb7", "description": "valid for 2 weeks" }, "expires_in": { "type": "integer", "minimum": 0, "example": 14399 }, "refresh_token_expires_in": { "type": "integer", "minimum": 0, "example": 1209600 } } } } } }, "400": { "x-summary": "client or credentials are invalid", "description": "Disambiguate via `code`:\n- `invalid_client` for an unmatched `client_id`\n- `invalid_grant` for unmatched credentials\n" }, "401": { "x-summary": "token expired or two factor header is missing", "description": "Disambiguate via `code`:\n- default value for a regular authentication failure\n- `invalid_token` for an expired token\n- `missing_two_factor` if two factor header is missing\n" } }, "x-codeSamples": [ { "lang": "Shell", "source": "## DEPENDENCIES: jq\nAPI=\"https://peertube2.cpy.re/api/v1\"\nUSERNAME=\"\"\nPASSWORD=\"\"\n\n## AUTH\nclient_id=$(curl -s \"$API/oauth-clients/local\" | jq -r \".client_id\")\nclient_secret=$(curl -s \"$API/oauth-clients/local\" | jq -r \".client_secret\")\ncurl -s \"$API/users/token\" \\\n --data client_id=\"$client_id\" \\\n --data client_secret=\"$client_secret\" \\\n --data grant_type=password \\\n --data username=\"$USERNAME\" \\\n --data-urlencode password=\"$PASSWORD\" \\\n | jq -r \".access_token\"\n" } ] } }, "/api/v1/users/revoke-token": { "post": { "summary": "Logout", "description": "Revokes your access token and its associated refresh token, destroying your current session.", "operationId": "revokeOAuthToken", "tags": [ "Session" ], "security": [ { "OAuth2": [] } ], "responses": { "200": { "description": "successful operation" } } } }, "/api/v1/users/{id}/token-sessions": { "get": { "summary": "List token sessions", "parameters": [ { "$ref": "#/components/parameters/id" } ], "tags": [ "Session" ], "security": [ { "OAuth2": [] } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/TokenSession" } } } } } } } } } }, "/api/v1/users/{id}/token-sessions/{tokenSessionId}/revoke": { "get": { "summary": "List token sessions", "parameters": [ { "$ref": "#/components/parameters/id" }, { "$ref": "#/components/parameters/tokenSessionId" } ], "tags": [ "Session" ], "security": [ { "OAuth2": [] } ], "responses": { "200": { "description": "successful operation" } } } }, "/api/v1/users/ask-send-verify-email": { "post": { "summary": "Resend user verification link", "operationId": "resendEmailToVerifyUser", "tags": [ "Users", "Register" ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "email": { "type": "string", "description": "User email" } }, "required": [ "email" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/registrations/ask-send-verify-email": { "post": { "summary": "Resend verification link to registration request email", "operationId": "resendEmailToVerifyRegistration", "tags": [ "Register" ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "email": { "type": "string", "description": "Registration email" } }, "required": [ "email" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/{id}/verify-email": { "post": { "summary": "Verify a user", "operationId": "verifyUser", "description": "Following a user registration, the new user will receive an email asking to click a link\ncontaining a secret.\nThis endpoint can also be used to verify a new email set in the user account.\n", "tags": [ "Users", "Register" ], "parameters": [ { "$ref": "#/components/parameters/id" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "verificationString": { "type": "string", "format": "url" }, "isPendingEmail": { "type": "boolean" } }, "required": [ "verificationString" ] } } } }, "responses": { "204": { "description": "successful operation" }, "403": { "description": "invalid verification string" }, "404": { "description": "user not found" } } } }, "/api/v1/users/registrations/{registrationId}/verify-email": { "post": { "summary": "Verify a registration email", "operationId": "verifyRegistrationEmail", "description": "Following a user registration request, the user will receive an email asking to click a link\ncontaining a secret.\n", "tags": [ "Register" ], "parameters": [ { "$ref": "#/components/parameters/registrationId" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "verificationString": { "type": "string", "format": "url" } }, "required": [ "verificationString" ] } } } }, "responses": { "204": { "description": "successful operation" }, "403": { "description": "invalid verification string" }, "404": { "description": "registration not found" } } } }, "/api/v1/users/ask-reset-password": { "post": { "summary": "Ask to reset password", "description": "An email containing a reset password link", "tags": [ "Users" ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "email": { "type": "string", "description": "User email" } }, "required": [ "email" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/{id}/reset-password": { "post": { "summary": "Reset password", "tags": [ "Users" ], "parameters": [ { "$ref": "#/components/parameters/id" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "verificationString": { "type": "string", "format": "url" }, "password": { "type": "string" } }, "required": [ "verificationString", "password" ] } } } }, "responses": { "204": { "description": "successful operation" }, "403": { "description": "invalid verification string" }, "404": { "description": "user not found" } } } }, "/api/v1/users/{id}/two-factor/request": { "post": { "summary": "Request two factor auth", "operationId": "requestTwoFactor", "description": "Request two factor authentication for a user", "security": [ { "OAuth2": [] } ], "tags": [ "Users" ], "parameters": [ { "$ref": "#/components/parameters/id" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "currentPassword": { "type": "string", "description": "Password of the currently authenticated user" } } } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/RequestTwoFactorResponse" } } } } }, "403": { "description": "invalid password" }, "404": { "description": "user not found" } } } }, "/api/v1/users/{id}/two-factor/confirm-request": { "post": { "summary": "Confirm two factor auth", "operationId": "confirmTwoFactorRequest", "description": "Confirm a two factor authentication request", "security": [ { "OAuth2": [] } ], "tags": [ "Users" ], "parameters": [ { "$ref": "#/components/parameters/id" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "requestToken": { "type": "string", "description": "Token to identify the two factor request" }, "otpToken": { "type": "string", "description": "OTP token generated by the app" } }, "required": [ "requestToken", "otpToken" ] } } } }, "responses": { "204": { "description": "successful operation" }, "403": { "description": "invalid request token or OTP token" }, "404": { "description": "user not found" } } } }, "/api/v1/users/{id}/two-factor/disable": { "post": { "summary": "Disable two factor auth", "operationId": "disableTwoFactor", "description": "Disable two factor authentication of a user", "security": [ { "OAuth2": [] } ], "tags": [ "Users" ], "parameters": [ { "$ref": "#/components/parameters/id" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "currentPassword": { "type": "string", "description": "Password of the currently authenticated user" } } } } } }, "responses": { "204": { "description": "successful operation" }, "403": { "description": "invalid password" }, "404": { "description": "user not found" } } } }, "/api/v1/users/{userId}/imports/import-resumable": { "post": { "summary": "Initialize the resumable user import", "description": "**PeerTube >= 6.1** Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to initialize the import of the archive", "operationId": "userImportResumableInit", "security": [ { "OAuth2": [] } ], "tags": [ "User Imports" ], "parameters": [ { "$ref": "#/components/parameters/userId" }, { "$ref": "#/components/parameters/resumableUploadInitContentLengthHeader" }, { "$ref": "#/components/parameters/resumableUploadInitContentTypeHeader" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserImportResumable" } } } }, "responses": { "201": { "description": "created", "headers": { "Location": { "schema": { "type": "string", "format": "url" } }, "Content-Length": { "schema": { "type": "number", "example": 0 } } } } } }, "put": { "summary": "Send chunk for the resumable user import", "description": "**PeerTube >= 6.1** Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to continue, pause or resume the import of the archive", "operationId": "userImportResumable", "security": [ { "OAuth2": [] } ], "tags": [ "User Imports" ], "parameters": [ { "$ref": "#/components/parameters/userId" }, { "$ref": "#/components/parameters/resumableUploadId" }, { "$ref": "#/components/parameters/resumableUploadChunkContentRangeHeader" }, { "$ref": "#/components/parameters/resumableUploadChunkContentLengthHeader" } ], "requestBody": { "content": { "application/octet-stream": { "schema": { "type": "string", "format": "binary" } } } }, "responses": { "204": { "description": "last chunk received: successful operation" }, "308": { "description": "resume incomplete", "headers": { "Range": { "schema": { "type": "string", "example": "bytes=0-262143" } }, "Content-Length": { "schema": { "type": "number", "example": 0 } } } } } }, "delete": { "summary": "Cancel the resumable user import", "description": "**PeerTube >= 6.1** Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to cancel the resumable user import", "operationId": "userImportResumableCancel", "security": [ { "OAuth2": [] } ], "tags": [ "User Imports" ], "parameters": [ { "$ref": "#/components/parameters/userId" }, { "$ref": "#/components/parameters/resumableUploadId" }, { "name": "Content-Length", "in": "header", "required": true, "schema": { "type": "number", "example": 0 } } ], "responses": { "204": { "description": "import cancelled", "headers": { "Content-Length": { "schema": { "type": "number", "example": 0 } } } } } } }, "/api/v1/users/{userId}/imports/latest": { "get": { "summary": "Get latest user import", "description": "**PeerTube >= 6.1**", "operationId": "getLatestUserImport", "security": [ { "OAuth2": [] } ], "tags": [ "User Imports" ], "parameters": [ { "$ref": "#/components/parameters/userId" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "integer" }, "state": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/UserImportState" }, "label": { "type": "string" } } }, "createdAt": { "type": "string", "format": "date-time" } } } } } } } } }, "/api/v1/users/{userId}/exports/request": { "post": { "summary": "Request user export", "operationId": "requestUserExport", "description": "Request an archive of user data. An email is sent when the archive is ready.", "security": [ { "OAuth2": [] } ], "tags": [ "User Exports" ], "parameters": [ { "$ref": "#/components/parameters/userId" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "withVideoFiles": { "type": "boolean", "description": "Whether to include video files in the archive" } } } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "export": { "type": "object", "properties": { "id": { "type": "integer" } } } } } } } } } } }, "/api/v1/users/{userId}/exports": { "get": { "summary": "List user exports", "description": "**PeerTube >= 6.1**", "operationId": "listUserExports", "security": [ { "OAuth2": [] } ], "tags": [ "User Exports" ], "parameters": [ { "$ref": "#/components/parameters/userId" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "integer" }, "state": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/UserExportState" }, "label": { "type": "string" } } }, "size": { "type": "integer", "description": "Size of the archive file in bytes" }, "privateDownloadUrl": { "type": "string", "description": "This URL already contains the JWT token, so no additional authentication credentials are required" }, "createdAt": { "type": "string", "format": "date-time" }, "expiresOn": { "type": "string", "format": "date-time" } } } } } } } } }, "/api/v1/users/{userId}/exports/{id}": { "delete": { "summary": "Delete a user export", "description": "**PeerTube >= 6.1**", "operationId": "deleteUserExport", "security": [ { "OAuth2": [] } ], "tags": [ "User Exports" ], "parameters": [ { "$ref": "#/components/parameters/userId" }, { "$ref": "#/components/parameters/id" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me": { "get": { "summary": "Get my user information", "operationId": "getUserInfo", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My User" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/User" } } } } } } }, "put": { "summary": "Update my user information", "operationId": "putUserInfo", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My User" ], "responses": { "204": { "description": "successful operation" } }, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UpdateMe" } } }, "required": true } } }, "/api/v1/users/me/videos/comments": { "get": { "summary": "List comments on user's videos", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [] } ], "tags": [ "Video Comments" ], "parameters": [ { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/searchAccountForComments" }, { "$ref": "#/components/parameters/searchVideoForComments" }, { "$ref": "#/components/parameters/videoId" }, { "$ref": "#/components/parameters/videoChannelId" }, { "$ref": "#/components/parameters/autoTagOneOfComment" }, { "$ref": "#/components/parameters/isHeldForReview" }, { "$ref": "#/components/parameters/includeCollaborations" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoCommentForOwnerOrAdmin" } } } } } } } } } }, "/api/v1/users/me/videos/imports": { "get": { "summary": "Get video imports of my user", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Videos", "My User" ], "parameters": [ { "$ref": "#/components/parameters/id" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/includeCollaborations" }, { "name": "videoId", "in": "query", "required": false, "description": "Filter on import video ID", "schema": { "type": "integer" } }, { "name": "targetUrl", "in": "query", "required": false, "description": "Filter on import target URL", "schema": { "type": "string" } }, { "name": "videoChannelSyncId", "in": "query", "required": false, "description": "Filter on imports created by a specific channel synchronization", "schema": { "type": "number" } }, { "name": "search", "in": "query", "required": false, "description": "Search in video names", "schema": { "type": "string" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoImportsList" } } } } } } }, "/api/v1/users/me/video-quota-used": { "get": { "summary": "Get my user used quota", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My User" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "videoQuotaUsed": { "type": "number", "description": "The user video quota used so far in bytes", "example": 16810141515 }, "videoQuotaUsedDaily": { "type": "number", "description": "The user video quota used today in bytes", "example": 1681014151 } } } } } } } } }, "/api/v1/users/me/videos/{videoId}/rating": { "get": { "summary": "Get rate of my user for a video", "security": [ { "OAuth2": [] } ], "tags": [ "My User", "Video Rates" ], "parameters": [ { "name": "videoId", "in": "path", "required": true, "description": "The video id", "schema": { "$ref": "#/components/schemas/Video/properties/id" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/GetMeVideoRating" } } } } } } }, "/api/v1/users/me/videos": { "get": { "summary": "List videos of my user", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My User", "Videos" ], "parameters": [ { "$ref": "#/components/parameters/channelNameOneOf" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/skipCount" }, { "$ref": "#/components/parameters/videosSort" }, { "$ref": "#/components/parameters/nsfw" }, { "$ref": "#/components/parameters/nsfwFlagsIncluded" }, { "$ref": "#/components/parameters/nsfwFlagsExcluded" }, { "$ref": "#/components/parameters/isLive" }, { "$ref": "#/components/parameters/includeScheduledLive" }, { "$ref": "#/components/parameters/categoryOneOf" }, { "$ref": "#/components/parameters/licenceOneOf" }, { "$ref": "#/components/parameters/languageOneOf" }, { "$ref": "#/components/parameters/tagsOneOf" }, { "$ref": "#/components/parameters/tagsAllOf" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/include" }, { "$ref": "#/components/parameters/hasHLSFiles" }, { "$ref": "#/components/parameters/hasWebVideoFiles" }, { "$ref": "#/components/parameters/host" }, { "$ref": "#/components/parameters/autoTagOneOfVideo" }, { "$ref": "#/components/parameters/privacyOneOf" }, { "$ref": "#/components/parameters/excludeAlreadyWatched" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/includeCollaborations" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoListResponse" } } } } } } }, "/api/v1/users/me/subscriptions": { "get": { "summary": "List my user subscriptions", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My Subscriptions" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/mySubscriptionSort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannelList" } } } } } }, "post": { "tags": [ "My Subscriptions" ], "summary": "Add subscription to my user", "security": [ { "OAuth2": [ "user" ] } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "uri": { "type": "string", "format": "uri", "description": "uri of the video channels to subscribe to" } }, "required": [ "uri" ] }, "examples": { "default": { "value": { "uri": "008a0e54-375d-49d0-8379-143202e24152@video.lqdn.fr" } } } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/subscriptions/exist": { "get": { "summary": "Get if subscriptions exist for my user", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My Subscriptions" ], "parameters": [ { "$ref": "#/components/parameters/subscriptionsUris" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object" } } } } } } }, "/api/v1/users/me/subscriptions/videos": { "get": { "summary": "List videos of subscriptions of my user", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My Subscriptions", "Videos" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/skipCount" }, { "$ref": "#/components/parameters/videosSort" }, { "$ref": "#/components/parameters/nsfw" }, { "$ref": "#/components/parameters/nsfwFlagsIncluded" }, { "$ref": "#/components/parameters/nsfwFlagsExcluded" }, { "$ref": "#/components/parameters/isLive" }, { "$ref": "#/components/parameters/includeScheduledLive" }, { "$ref": "#/components/parameters/categoryOneOf" }, { "$ref": "#/components/parameters/licenceOneOf" }, { "$ref": "#/components/parameters/languageOneOf" }, { "$ref": "#/components/parameters/tagsOneOf" }, { "$ref": "#/components/parameters/tagsAllOf" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/include" }, { "$ref": "#/components/parameters/hasHLSFiles" }, { "$ref": "#/components/parameters/hasWebVideoFiles" }, { "$ref": "#/components/parameters/host" }, { "$ref": "#/components/parameters/autoTagOneOfVideo" }, { "$ref": "#/components/parameters/privacyOneOf" }, { "$ref": "#/components/parameters/excludeAlreadyWatched" }, { "$ref": "#/components/parameters/search" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoListResponse" } } } } } } }, "/api/v1/users/me/subscriptions/{subscriptionHandle}": { "get": { "summary": "Get subscription of my user", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My Subscriptions" ], "parameters": [ { "$ref": "#/components/parameters/subscriptionHandle" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannel" } } } } } }, "delete": { "summary": "Delete subscription of my user", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "My Subscriptions" ], "parameters": [ { "$ref": "#/components/parameters/subscriptionHandle" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/notifications": { "get": { "summary": "List my notifications", "security": [ { "OAuth2": [] } ], "tags": [ "My Notifications" ], "parameters": [ { "name": "typeOneOf", "in": "query", "description": "only list notifications of these types", "schema": { "type": "array", "items": { "$ref": "#/components/schemas/NotificationType" } } }, { "name": "unread", "in": "query", "description": "only list unread notifications", "schema": { "type": "boolean" } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/NotificationListResponse" } } } } } } }, "/api/v1/users/me/notifications/read": { "post": { "summary": "Mark notifications as read by their id", "security": [ { "OAuth2": [] } ], "tags": [ "My Notifications" ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "ids": { "type": "array", "description": "ids of the notifications to mark as read", "items": { "type": "integer" } } }, "required": [ "ids" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/notifications/read-all": { "post": { "summary": "Mark all my notification as read", "security": [ { "OAuth2": [] } ], "tags": [ "My Notifications" ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/notification-settings": { "put": { "summary": "Update my notification settings", "security": [ { "OAuth2": [] } ], "tags": [ "My Notifications" ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserNotificationSettings" } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/new-feature-info/read": { "post": { "tags": [ "My User" ], "summary": "Mark feature info as read", "description": "**PeerTube >= v8.0.0", "security": [ { "OAuth2": [ "user" ] } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "feature": { "$ref": "#/components/schemas/NewFeatureInfoType" } }, "required": [ "feature" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/history/videos": { "get": { "summary": "List watched videos history", "security": [ { "OAuth2": [] } ], "tags": [ "My History" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/search" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoListResponse" } } } } } } }, "/api/v1/users/me/history/videos/{videoId}": { "delete": { "summary": "Delete history element", "security": [ { "OAuth2": [] } ], "tags": [ "My History" ], "parameters": [ { "name": "videoId", "in": "path", "required": true, "schema": { "$ref": "#/components/schemas/Video/properties/id" } } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/history/videos/remove": { "post": { "summary": "Clear video history", "security": [ { "OAuth2": [] } ], "tags": [ "My History" ], "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "beforeDate": { "description": "history before this date will be deleted", "type": "string", "format": "date-time" } } } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/avatar/pick": { "post": { "summary": "Update my user avatar", "security": [ { "OAuth2": [] } ], "tags": [ "My User" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "avatars": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } } } } } } }, "413": { "description": "image file too large", "headers": { "X-File-Maximum-Size": { "schema": { "type": "string", "format": "Nginx size" }, "description": "Maximum file size for the avatar" } } } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "avatarfile": { "description": "The file to upload", "type": "string", "format": "binary" } } }, "encoding": { "avatarfile": { "contentType": "image/png, image/jpeg" } } } } } } }, "/api/v1/users/me/avatar": { "delete": { "summary": "Delete my avatar", "security": [ { "OAuth2": [] } ], "tags": [ "My User" ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/register": { "post": { "summary": "Register a user", "operationId": "registerUser", "description": "Signup has to be enabled and signup approval is not required", "tags": [ "Register" ], "responses": { "204": { "description": "successful operation" }, "400": { "description": "request error" }, "403": { "description": "user registration is not enabled, user limit is reached, registration is not allowed for the ip, requires approval or blocked by a plugin" }, "409": { "description": "a user with this username, channel name or email already exists" } }, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/RegisterUser" } } }, "required": true } } }, "/api/v1/users/registrations/request": { "post": { "summary": "Request registration", "description": "Signup has to be enabled and require approval on the instance", "operationId": "requestRegistration", "tags": [ "Register" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserRegistration" } } } }, "400": { "description": "request error or signup approval is not enabled on the instance" }, "403": { "description": "user registration is not enabled, user limit is reached, registration is not allowed for the ip or blocked by a plugin" }, "409": { "description": "a user or registration with this username, channel name or email already exists" } }, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserRegistrationRequest" } } } } } }, "/api/v1/users/registrations/{registrationId}/accept": { "post": { "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "summary": "Accept registration", "operationId": "acceptRegistration", "tags": [ "Register" ], "parameters": [ { "$ref": "#/components/parameters/registrationId" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserRegistrationAcceptOrReject" } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/registrations/{registrationId}/reject": { "post": { "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "summary": "Reject registration", "operationId": "rejectRegistration", "tags": [ "Register" ], "parameters": [ { "$ref": "#/components/parameters/registrationId" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserRegistrationAcceptOrReject" } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/registrations/{registrationId}": { "delete": { "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "summary": "Delete registration", "description": "Delete the registration entry. It will not remove the user associated with this registration (if any)", "operationId": "deleteRegistration", "tags": [ "Register" ], "parameters": [ { "$ref": "#/components/parameters/registrationId" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/registrations": { "get": { "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "summary": "List registrations", "operationId": "listRegistrations", "tags": [ "Register" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "name": "search", "in": "query", "required": false, "schema": { "type": "string" } }, { "name": "sort", "in": "query", "required": false, "schema": { "type": "string", "enum": [ "-createdAt", "createdAt", "state", "-state" ] } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/UserRegistration" } } } } } } } } } }, "/api/v1/videos/ownership": { "get": { "summary": "List video ownership changes", "tags": [ "Video Ownership Change" ], "security": [ { "OAuth2": [] } ], "responses": { "200": { "description": "successful operation" } } } }, "/api/v1/videos/ownership/{id}/accept": { "post": { "summary": "Accept ownership change request", "tags": [ "Video Ownership Change" ], "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" }, "403": { "description": "cannot terminate an ownership change of another user" }, "404": { "description": "video ownership change not found" } } } }, "/api/v1/videos/ownership/{id}/refuse": { "post": { "summary": "Refuse ownership change request", "tags": [ "Video Ownership Change" ], "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" }, "403": { "description": "cannot terminate an ownership change of another user" }, "404": { "description": "video ownership change not found" } } } }, "/api/v1/videos/{id}/give-ownership": { "post": { "summary": "Request ownership change", "tags": [ "Video Ownership Change" ], "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "username": { "type": "string" } }, "required": [ "username" ] } } } }, "responses": { "204": { "description": "successful operation" }, "400": { "description": "changing video ownership to a remote account is not supported yet" }, "404": { "description": "video not found" } } } }, "/api/v1/videos/{id}/token": { "post": { "summary": "Request video token", "operationId": "requestVideoToken", "description": "Request special tokens that expire quickly to use them in some context (like accessing private static files)", "tags": [ "Video" ], "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoTokenResponse" } } } }, "400": { "description": "incorrect parameters" }, "404": { "description": "video not found" } } } }, "/api/v1/videos/{id}/studio/edit": { "post": { "summary": "Create a studio task", "tags": [ "Video Transcoding", "Video" ], "description": "Create a task to edit a video (cut, add intro/outro etc)", "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "required": true, "content": { "multipart/form-data": { "schema": { "$ref": "#/components/schemas/VideoStudioCreateTask" } } } }, "responses": { "204": { "description": "successful operation" }, "400": { "description": "incorrect parameters" }, "404": { "description": "video not found" } } } }, "/api/v1/videos": { "get": { "summary": "List videos", "operationId": "getVideos", "tags": [ "Video" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/skipCount" }, { "$ref": "#/components/parameters/videosSort" }, { "$ref": "#/components/parameters/nsfw" }, { "$ref": "#/components/parameters/nsfwFlagsIncluded" }, { "$ref": "#/components/parameters/nsfwFlagsExcluded" }, { "$ref": "#/components/parameters/isLive" }, { "$ref": "#/components/parameters/includeScheduledLive" }, { "$ref": "#/components/parameters/categoryOneOf" }, { "$ref": "#/components/parameters/licenceOneOf" }, { "$ref": "#/components/parameters/languageOneOf" }, { "$ref": "#/components/parameters/tagsOneOf" }, { "$ref": "#/components/parameters/tagsAllOf" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/include" }, { "$ref": "#/components/parameters/hasHLSFiles" }, { "$ref": "#/components/parameters/hasWebVideoFiles" }, { "$ref": "#/components/parameters/host" }, { "$ref": "#/components/parameters/autoTagOneOfVideo" }, { "$ref": "#/components/parameters/privacyOneOf" }, { "$ref": "#/components/parameters/excludeAlreadyWatched" }, { "$ref": "#/components/parameters/search" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoListResponse" } } } } } } }, "/api/v1/videos/categories": { "get": { "summary": "List available video categories", "operationId": "getCategories", "tags": [ "Video" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "string" } }, "examples": { "nightly": { "value": { "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" } } } } } } } } }, "/api/v1/videos/licences": { "get": { "summary": "List available video licences", "operationId": "getLicences", "tags": [ "Video" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "string" } }, "examples": { "nightly": { "value": { "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" } } } } } } } } }, "/api/v1/videos/languages": { "get": { "summary": "List available video languages", "operationId": "getLanguages", "tags": [ "Video" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "string" } }, "examples": { "nightly": { "value": { "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" } } } } } } } } }, "/api/v1/videos/privacies": { "get": { "summary": "List available video privacy policies", "operationId": "getVideoPrivacyPolicies", "tags": [ "Video" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "string" } }, "examples": { "nightly": { "value": { "1": "Public", "2": "Unlisted", "3": "Private", "4": "Internal", "5": "Password protected" } } } } } } } } }, "/api/v1/videos/{id}": { "put": { "summary": "Update a video", "operationId": "putVideo", "security": [ { "OAuth2": [] } ], "tags": [ "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "channelId": { "type": "integer", "description": "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." }, "thumbnailfile": { "description": "Video thumbnail file", "type": "string", "format": "binary" }, "previewfile": { "description": "Deprecated in PeerTube v8.1, use thumbnailfile instead", "deprecated": true, "type": "string", "format": "binary" }, "category": { "$ref": "#/components/schemas/VideoCategorySet" }, "licence": { "$ref": "#/components/schemas/VideoLicenceSet" }, "language": { "$ref": "#/components/schemas/VideoLanguageSet" }, "privacy": { "$ref": "#/components/schemas/VideoPrivacySet" }, "description": { "description": "Video description", "type": "string" }, "waitTranscoding": { "description": "Whether or not we wait transcoding before publish the video", "type": "string" }, "support": { "description": "A text tell the audience how to support the video creator", "example": "Please support our work on https://soutenir.framasoft.org/en/ <3", "type": "string" }, "nsfw": { "description": "Whether or not this video contains sensitive content", "type": "boolean" }, "nsfwSummary": { "description": "More information about the sensitive content of the video" }, "nsfwFlags": { "$ref": "#/components/schemas/NSFWFlag" }, "name": { "description": "Video name", "type": "string", "minLength": 3, "maxLength": 120 }, "tags": { "description": "Video tags (maximum 5 tags each between 2 and 30 characters)", "type": "array", "minItems": 1, "maxItems": 5, "items": { "type": "string", "minLength": 2, "maxLength": 30 } }, "commentsPolicy": { "$ref": "#/components/schemas/VideoCommentsPolicySet" }, "downloadEnabled": { "description": "Enable or disable downloading for this video", "type": "boolean" }, "originallyPublishedAt": { "description": "Date when the content was originally published", "type": "string", "format": "date-time", "nullable": true }, "scheduleUpdate": { "$ref": "#/components/schemas/VideoScheduledUpdate" }, "videoPasswords": { "$ref": "#/components/schemas/AddVideoPasswords" } } }, "encoding": { "thumbnailfile": { "contentType": "image/jpeg" }, "previewfile": { "contentType": "image/jpeg" } } } } } }, "get": { "summary": "Get a video", "operationId": "getVideo", "tags": [ "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoDetails" } } } }, "401": { "description": "Requires authentication or the video requires a password", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ServerError" } } } }, "403": { "description": "Invalid authentication or the video requires a password", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ServerError" } } } } } }, "delete": { "summary": "Delete a video", "operationId": "delVideo", "security": [ { "OAuth2": [] } ], "tags": [ "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/videos/{id}/description": { "get": { "summary": "Get complete video description", "operationId": "getVideoDesc", "tags": [ "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "nullable": true, "type": "string", "minLength": 3, "maxLength": 10000, "example": "**[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" } } } } } } }, "/api/v1/videos/{id}/views": { "post": { "summary": "Notify user is watching a video", "description": "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.", "operationId": "addView", "tags": [ "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/UserViewingVideo" } } }, "required": true }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/videos/{id}/stats/overall": { "get": { "summary": "Get overall stats of a video", "tags": [ "Video Stats" ], "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "name": "startDate", "in": "query", "description": "Filter stats by start date", "schema": { "type": "string", "format": "date-time" } }, { "name": "endDate", "in": "query", "description": "Filter stats by end date", "schema": { "type": "string", "format": "date-time" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoStatsOverall" } } } } } } }, "/api/v1/videos/{id}/stats/user-agent": { "get": { "summary": "Get user agent stats of a video", "tags": [ "Video Stats" ], "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "name": "startDate", "in": "query", "description": "Filter stats by start date", "schema": { "type": "string", "format": "date-time" } }, { "name": "endDate", "in": "query", "description": "Filter stats by end date", "schema": { "type": "string", "format": "date-time" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoStatsUserAgent" } } } } } } }, "/api/v1/videos/{id}/stats/retention": { "get": { "summary": "Get retention stats of a video", "tags": [ "Video Stats" ], "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoStatsRetention" } } } } } } }, "/api/v1/videos/{id}/stats/timeseries/{metric}": { "get": { "summary": "Get timeserie stats of a video", "tags": [ "Video Stats" ], "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "name": "metric", "in": "path", "required": true, "description": "The metric to get", "schema": { "type": "string", "enum": [ "viewers", "aggregateWatchTime" ] } }, { "name": "startDate", "in": "query", "description": "Filter stats by start date", "schema": { "type": "string", "format": "date-time" } }, { "name": "endDate", "in": "query", "description": "Filter stats by end date", "schema": { "type": "string", "format": "date-time" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoStatsTimeserie" } } } } } } }, "/api/v1/videos/upload": { "post": { "summary": "Upload a video", "description": "Uses a single request to upload a video.", "operationId": "uploadLegacy", "security": [ { "OAuth2": [] } ], "tags": [ "Video", "Video Upload" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoUploadResponse" } } } }, "403": { "description": "video didn't pass upload filter" }, "408": { "description": "upload has timed out" }, "413": { "x-summary": "video file too large, due to quota or max body size limit set by the reverse-proxy", "description": "If the response has no body, it means the reverse-proxy didn't let it through. Otherwise disambiguate via `code`:\n- `quota_reached` for quota limits whether daily or global\n", "headers": { "X-File-Maximum-Size": { "schema": { "type": "string", "format": "Nginx size" }, "description": "Maximum file size for the video" } } }, "415": { "description": "video type unsupported" }, "422": { "description": "video unreadable" } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "$ref": "#/components/schemas/VideoUploadRequestLegacy" }, "encoding": { "videofile": { "contentType": "video/mp4, video/webm, video/ogg, video/avi, video/quicktime, video/x-msvideo, video/x-flv, video/x-matroska, application/octet-stream" }, "thumbnailfile": { "contentType": "image/jpeg" }, "previewfile": { "contentType": "image/jpeg" } } } } }, "x-codeSamples": [ { "lang": "Shell", "source": "## DEPENDENCIES: jq\nUSERNAME=\"\"\nPASSWORD=\"\"\nFILE_PATH=\"\"\nCHANNEL_ID=\"\"\nNAME=\"\"\nAPI=\"https://peertube2.cpy.re/api/v1\"\n\n## AUTH\nclient_id=$(curl -s \"$API/oauth-clients/local\" | jq -r \".client_id\")\nclient_secret=$(curl -s \"$API/oauth-clients/local\" | jq -r \".client_secret\")\ntoken=$(curl -s \"$API/users/token\" \\\n --data client_id=\"$client_id\" \\\n --data client_secret=\"$client_secret\" \\\n --data grant_type=password \\\n --data username=\"$USERNAME\" \\\n --data password=\"$PASSWORD\" \\\n | jq -r \".access_token\")\n\n## VIDEO UPLOAD\ncurl -s \"$API/videos/upload\" \\\n -H \"Authorization: Bearer $token\" \\\n --max-time 600 \\\n --form videofile=@\"$FILE_PATH\" \\\n --form channelId=$CHANNEL_ID \\\n --form name=\"$NAME\"\n" } ] } }, "/api/v1/videos/upload-resumable": { "post": { "summary": "Initialize the resumable upload of a video", "description": "Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to initialize the upload of a video", "operationId": "uploadResumableInit", "security": [ { "OAuth2": [] } ], "tags": [ "Video", "Video Upload" ], "parameters": [ { "$ref": "#/components/parameters/resumableUploadInitContentLengthHeader" }, { "$ref": "#/components/parameters/resumableUploadInitContentTypeHeader" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoUploadRequestResumable" } } } }, "responses": { "200": { "description": "file already exists, send a [`resume`](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) request instead" }, "201": { "description": "created", "headers": { "Location": { "schema": { "type": "string", "format": "url", "example": "/api/v1/videos/upload-resumable?upload_id=471e97554f21dec3b8bb5d4602939c51" } }, "Content-Length": { "schema": { "type": "number", "example": 0 } } } }, "413": { "x-summary": "video file too large, due to quota, absolute max file size or concurrent partial upload limit", "description": "Disambiguate via `code`:\n- `max_file_size_reached` for the absolute file size limit\n- `quota_reached` for quota limits whether daily or global\n" }, "415": { "description": "video type unsupported" } } }, "put": { "summary": "Send chunk for the resumable upload of a video", "description": "Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to continue, pause or resume the upload of a video", "operationId": "uploadResumable", "security": [ { "OAuth2": [] } ], "tags": [ "Video", "Video Upload" ], "parameters": [ { "$ref": "#/components/parameters/resumableUploadId" }, { "$ref": "#/components/parameters/resumableUploadChunkContentRangeHeader" }, { "$ref": "#/components/parameters/resumableUploadChunkContentLengthHeader" } ], "requestBody": { "content": { "application/octet-stream": { "schema": { "type": "string", "format": "binary" } } } }, "responses": { "200": { "description": "last chunk received", "headers": { "Content-Length": { "schema": { "type": "number" } } }, "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoUploadResponse" } } } }, "308": { "description": "resume incomplete", "headers": { "Range": { "schema": { "type": "string", "example": "bytes=0-262143" } }, "Content-Length": { "schema": { "type": "number", "example": 0 } } } }, "403": { "description": "video didn't pass upload filter" }, "404": { "description": "upload not found" }, "409": { "description": "chunk doesn't match range" }, "422": { "description": "video unreadable" }, "429": { "description": "too many concurrent requests" }, "503": { "description": "upload is already being processed", "headers": { "Retry-After": { "schema": { "type": "number", "example": 300 } } } } } }, "delete": { "summary": "Cancel the resumable upload of a video, deleting any data uploaded so far", "description": "Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to cancel the upload of a video", "operationId": "uploadResumableCancel", "security": [ { "OAuth2": [] } ], "tags": [ "Video", "Video Upload" ], "parameters": [ { "$ref": "#/components/parameters/resumableUploadId" }, { "name": "Content-Length", "in": "header", "required": true, "schema": { "type": "number", "example": 0 } } ], "responses": { "204": { "description": "upload cancelled", "headers": { "Content-Length": { "schema": { "type": "number", "example": 0 } } } }, "404": { "description": "upload not found" } } } }, "/api/v1/videos/imports": { "post": { "summary": "Import a video", "description": "Import a torrent or magnetURI or HTTP resource (if enabled by the instance administrator)", "operationId": "importVideo", "security": [ { "OAuth2": [] } ], "tags": [ "Video Imports", "Video Upload" ], "requestBody": { "content": { "multipart/form-data": { "schema": { "$ref": "#/components/schemas/VideoCreateImport" }, "encoding": { "torrentfile": { "contentType": "application/x-bittorrent" }, "thumbnailfile": { "contentType": "image/jpeg" }, "previewfile": { "contentType": "image/jpeg" } } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoUploadResponse" } } } }, "400": { "description": "`magnetUri` or `targetUrl` or a torrent file missing" }, "403": { "description": "video didn't pass pre-import filter" }, "409": { "description": "HTTP or Torrent/magnetURI import not enabled" } } } }, "/api/v1/videos/imports/{id}/cancel": { "post": { "summary": "Cancel video import", "description": "Cancel a pending video import", "security": [ { "OAuth2": [] } ], "tags": [ "Video Imports" ], "parameters": [ { "$ref": "#/components/parameters/id" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/videos/imports/{id}/retry": { "post": { "summary": "Retry video import", "description": "**PeerTube >= 8.0** Retry a pending video import", "security": [ { "OAuth2": [] } ], "tags": [ "Video Imports" ], "parameters": [ { "$ref": "#/components/parameters/id" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/videos/imports/{id}": { "delete": { "summary": "Delete video import", "description": "Delete ended video import", "security": [ { "OAuth2": [] } ], "tags": [ "Video Imports" ], "parameters": [ { "$ref": "#/components/parameters/id" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/videos/live": { "post": { "summary": "Create a live", "operationId": "addLive", "security": [ { "OAuth2": [] } ], "tags": [ "Live Videos", "Video" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoUploadResponse" } } } }, "400": { "x-summary": "validation error, or conflicting `saveReplay` and `permanentLive` parameter set", "description": "Disambiguate via `code`:\n- default type for a validation error\n- `live_conflicting_permanent_and_save_replay` for conflicting parameters set\n" }, "403": { "x-summary": "live is not enabled, allow replay is not enabled, or max instance/user live videos limit is exceeded", "description": "Disambiguate via `code`:\n- `live_not_enabled` for a disabled live feature\n- `live_not_allowing_replay` for a disabled replay feature\n- `max_instance_lives_limit_reached` for the absolute concurrent live limit\n- `max_user_lives_limit_reached` for the user concurrent live limit\n" } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "channelId": { "description": "Channel id that will contain this live video", "type": "integer" }, "saveReplay": { "type": "boolean" }, "replaySettings": { "$ref": "#/components/schemas/LiveVideoReplaySettings" }, "permanentLive": { "description": "User can stream multiple times in a permanent live", "type": "boolean" }, "latencyMode": { "description": "User can select live latency mode if enabled by the instance", "allOf": [ { "$ref": "#/components/schemas/LiveVideoLatencyMode" } ] }, "thumbnailfile": { "description": "Live video/replay thumbnail file", "type": "string", "format": "binary" }, "previewfile": { "description": "Deprecated in PeerTube v8.1, use thumbnailfile instead", "deprecated": true, "type": "string", "format": "binary" }, "privacy": { "$ref": "#/components/schemas/VideoPrivacySet" }, "category": { "$ref": "#/components/schemas/VideoCategorySet" }, "licence": { "$ref": "#/components/schemas/VideoLicenceSet" }, "language": { "$ref": "#/components/schemas/VideoLanguageSet" }, "description": { "description": "Live video/replay description", "type": "string" }, "support": { "description": "A text tell the audience how to support the creator", "example": "Please support our work on https://soutenir.framasoft.org/en/ <3", "type": "string" }, "nsfw": { "description": "Whether or not this live video/replay contains sensitive content", "type": "boolean" }, "nsfwSummary": { "description": "More information about the sensitive content of the video" }, "nsfwFlags": { "$ref": "#/components/schemas/NSFWFlag" }, "name": { "description": "Live video/replay name", "type": "string", "minLength": 3, "maxLength": 120 }, "tags": { "description": "Live video/replay tags (maximum 5 tags each between 2 and 30 characters)", "type": "array", "minItems": 1, "maxItems": 5, "items": { "type": "string", "minLength": 2, "maxLength": 30 } }, "commentsPolicy": { "$ref": "#/components/schemas/VideoCommentsPolicySet" }, "downloadEnabled": { "description": "Enable or disable downloading for the replay of this live video", "type": "boolean" }, "schedules": { "type": "array", "items": { "$ref": "#/components/schemas/LiveSchedule" } } }, "required": [ "channelId", "name" ] }, "encoding": { "thumbnailfile": { "contentType": "image/jpeg" }, "previewfile": { "contentType": "image/jpeg" } } } } } } }, "/api/v1/videos/live/{id}": { "get": { "summary": "Get information about a live", "operationId": "getLiveId", "security": [ { "OAuth2": [] } ], "tags": [ "Live Videos", "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/LiveVideoResponse" } } } } } }, "put": { "summary": "Update information about a live", "operationId": "updateLiveId", "security": [ { "OAuth2": [] } ], "tags": [ "Live Videos", "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/LiveVideoUpdate" } } } }, "responses": { "204": { "description": "successful operation" }, "400": { "description": "bad parameters or trying to update a live that has already started" }, "403": { "description": "trying to save replay of the live but saving replay is not enabled on the instance" } } } }, "/api/v1/videos/live/{id}/sessions": { "get": { "summary": "List live sessions", "description": "List all sessions created in a particular live", "security": [ { "OAuth2": [] } ], "tags": [ "Live Videos" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/LiveVideoSessionResponse" } } } } } } } } } }, "/api/v1/videos/{id}/live-session": { "get": { "summary": "Get live session of a replay", "description": "If the video is a replay of a live, you can find the associated live session using this endpoint", "security": [ { "OAuth2": [] } ], "tags": [ "Live Videos" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/LiveVideoSessionResponse" } } } } } } }, "/api/v1/videos/{id}/source": { "get": { "summary": "Get video source file metadata", "description": "Get metadata and download link of original video file", "operationId": "getVideoSource", "security": [ { "OAuth2": [] } ], "tags": [ "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoSource" } } } } } } }, "/api/v1/videos/{id}/source/file": { "delete": { "summary": "Delete video source file", "operationId": "deleteVideoSourceFile", "tags": [ "Video" ], "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "video source not found" } } } }, "/api/v1/videos/{id}/source/replace-resumable": { "post": { "summary": "Initialize the resumable replacement of a video", "description": "**PeerTube >= 6.0** Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to initialize the replacement of a video", "operationId": "replaceVideoSourceResumableInit", "security": [ { "OAuth2": [] } ], "tags": [ "Video", "Video Upload" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/resumableUploadInitContentLengthHeader" }, { "$ref": "#/components/parameters/resumableUploadInitContentTypeHeader" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoReplaceSourceRequestResumable" } } } }, "responses": { "200": { "description": "file already exists, send a [`resume`](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) request instead" }, "201": { "description": "created", "headers": { "Location": { "schema": { "type": "string", "format": "url" } }, "Content-Length": { "schema": { "type": "number", "example": 0 } } } }, "413": { "x-summary": "video file too large, due to quota, absolute max file size or concurrent partial upload limit", "description": "Disambiguate via `code`:\n- `max_file_size_reached` for the absolute file size limit\n- `quota_reached` for quota limits whether daily or global\n" }, "415": { "description": "video type unsupported" } } }, "put": { "summary": "Send chunk for the resumable replacement of a video", "description": "**PeerTube >= 6.0** Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to continue, pause or resume the replacement of a video", "operationId": "replaceVideoSourceResumable", "security": [ { "OAuth2": [] } ], "tags": [ "Video", "Video Upload" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/resumableUploadId" }, { "$ref": "#/components/parameters/resumableUploadChunkContentRangeHeader" }, { "$ref": "#/components/parameters/resumableUploadChunkContentLengthHeader" } ], "requestBody": { "content": { "application/octet-stream": { "schema": { "type": "string", "format": "binary" } } } }, "responses": { "204": { "description": "last chunk received: successful operation" }, "308": { "description": "resume incomplete", "headers": { "Range": { "schema": { "type": "string", "example": "bytes=0-262143" } }, "Content-Length": { "schema": { "type": "number", "example": 0 } } } }, "403": { "description": "video didn't pass file replacement filter" }, "404": { "description": "replace upload not found" }, "409": { "description": "chunk doesn't match range" }, "422": { "description": "video unreadable" }, "429": { "description": "too many concurrent requests" }, "503": { "description": "upload is already being processed", "headers": { "Retry-After": { "schema": { "type": "number", "example": 300 } } } } } }, "delete": { "summary": "Cancel the resumable replacement of a video", "description": "**PeerTube >= 6.0** Uses [a resumable protocol](https://github.com/kukhariev/node-uploadx/blob/master/proto.md) to cancel the replacement of a video", "operationId": "replaceVideoSourceResumableCancel", "security": [ { "OAuth2": [] } ], "tags": [ "Video", "Video Upload" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/resumableUploadId" }, { "name": "Content-Length", "in": "header", "required": true, "schema": { "type": "number", "example": 0 } } ], "responses": { "204": { "description": "source file replacement cancelled", "headers": { "Content-Length": { "schema": { "type": "number", "example": 0 } } } }, "404": { "description": "source file replacement not found" } } } }, "/api/v1/users/me/abuses": { "get": { "summary": "List my abuses", "operationId": "getMyAbuses", "security": [ { "OAuth2": [] } ], "tags": [ "Abuses", "My User" ], "parameters": [ { "name": "id", "in": "query", "description": "only list the report with this id", "schema": { "type": "integer" } }, { "name": "state", "in": "query", "schema": { "$ref": "#/components/schemas/AbuseStateSet" } }, { "$ref": "#/components/parameters/abusesSort" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Abuse" } } } } } } } } } }, "/api/v1/abuses": { "get": { "summary": "List abuses", "operationId": "getAbuses", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "tags": [ "Abuses" ], "parameters": [ { "name": "id", "in": "query", "description": "only list the report with this id", "schema": { "type": "integer" } }, { "name": "predefinedReason", "in": "query", "description": "predefined reason the listed reports should contain", "schema": { "$ref": "#/components/schemas/PredefinedAbuseReasons" } }, { "name": "search", "in": "query", "description": "plain search that will match with video titles, reporter names and more", "schema": { "type": "string" } }, { "name": "state", "in": "query", "schema": { "$ref": "#/components/schemas/AbuseStateSet" } }, { "name": "searchReporter", "in": "query", "description": "only list reports of a specific reporter", "schema": { "type": "string" } }, { "name": "searchReportee", "description": "only list reports of a specific reportee", "in": "query", "schema": { "type": "string" } }, { "name": "searchVideo", "in": "query", "description": "only list reports of a specific video", "schema": { "type": "string" } }, { "name": "searchVideoChannel", "in": "query", "description": "only list reports of a specific video channel", "schema": { "type": "string" } }, { "name": "videoIs", "in": "query", "description": "only list deleted or blocklisted videos", "schema": { "type": "string", "enum": [ "deleted", "blacklisted" ] } }, { "name": "filter", "in": "query", "description": "only list account, comment or video reports", "schema": { "type": "string", "enum": [ "video", "comment", "account" ] } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/abusesSort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Abuse" } } } } } } } } }, "post": { "summary": "Report an abuse", "security": [ { "OAuth2": [] } ], "tags": [ "Abuses" ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "reason": { "description": "Reason why the user reports this video", "type": "string", "minLength": 2, "maxLength": 3000 }, "predefinedReasons": { "$ref": "#/components/schemas/PredefinedAbuseReasons" }, "video": { "type": "object", "properties": { "id": { "description": "Video id to report", "allOf": [ { "$ref": "#/components/schemas/Video/properties/id" } ] }, "startAt": { "type": "integer", "format": "seconds", "description": "Timestamp in the video that marks the beginning of the report", "minimum": 0 }, "endAt": { "type": "integer", "format": "seconds", "description": "Timestamp in the video that marks the ending of the report", "minimum": 0 } } }, "comment": { "type": "object", "properties": { "id": { "description": "Comment id to report", "allOf": [ { "$ref": "#/components/schemas/VideoComment/properties/id" } ] } } }, "account": { "type": "object", "properties": { "id": { "description": "Account id to report", "type": "integer" } } } }, "required": [ "reason" ] } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "abuse": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" } } } } } } } }, "400": { "description": "incorrect request parameters" } } } }, "/api/v1/abuses/{abuseId}": { "put": { "summary": "Update an abuse", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "tags": [ "Abuses" ], "parameters": [ { "$ref": "#/components/parameters/abuseId" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "state": { "$ref": "#/components/schemas/AbuseStateSet" }, "moderationComment": { "type": "string", "description": "Update the report comment visible only to the moderation team", "minLength": 2, "maxLength": 3000 } } } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "abuse not found" } } }, "delete": { "tags": [ "Abuses" ], "summary": "Delete an abuse", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "parameters": [ { "$ref": "#/components/parameters/abuseId" } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "block not found" } } } }, "/api/v1/abuses/{abuseId}/messages": { "get": { "summary": "List messages of an abuse", "security": [ { "OAuth2": [] } ], "tags": [ "Abuses" ], "parameters": [ { "$ref": "#/components/parameters/abuseId" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/AbuseMessage" } } } } } } } } }, "post": { "summary": "Add message to an abuse", "security": [ { "OAuth2": [] } ], "tags": [ "Abuses" ], "parameters": [ { "$ref": "#/components/parameters/abuseId" } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "message": { "description": "Message to send", "type": "string", "minLength": 2, "maxLength": 3000 } }, "required": [ "message" ] } } } }, "responses": { "200": { "description": "successful operation" }, "400": { "description": "incorrect request parameters" } } } }, "/api/v1/abuses/{abuseId}/messages/{abuseMessageId}": { "delete": { "summary": "Delete an abuse message", "security": [ { "OAuth2": [] } ], "tags": [ "Abuses" ], "parameters": [ { "$ref": "#/components/parameters/abuseId" }, { "$ref": "#/components/parameters/abuseMessageId" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/videos/{id}/blacklist": { "post": { "summary": "Block a video", "operationId": "addVideoBlock", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "tags": [ "Video Blocks" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" } } }, "delete": { "summary": "Unblock a video by its id", "operationId": "delVideoBlock", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "tags": [ "Video Blocks" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "block not found" } } } }, "/api/v1/videos/blacklist": { "get": { "tags": [ "Video Blocks" ], "summary": "List video blocks", "operationId": "getVideoBlocks", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "parameters": [ { "name": "type", "in": "query", "description": "list only blocks that match this type:\n- `1`: manual block\n- `2`: automatic block that needs review\n", "schema": { "type": "integer", "enum": [ 1, 2 ] } }, { "name": "search", "in": "query", "description": "plain search that will match with video titles, and more", "schema": { "type": "string" } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/blacklistsSort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoBlacklist" } } } } } } } } } }, "/api/v1/videos/{id}/storyboards": { "get": { "summary": "List storyboards of a video", "description": "**PeerTube >= 6.0**", "operationId": "listVideoStoryboards", "tags": [ "Video" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "storyboards": { "type": "array", "items": { "$ref": "#/components/schemas/Storyboard" } } } } } } } } } }, "/api/v1/videos/{id}/captions": { "get": { "summary": "List captions of a video", "operationId": "getVideoCaptions", "tags": [ "Video Captions" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoCaption" } } } } } } } } } }, "/api/v1/videos/{id}/captions/generate": { "post": { "summary": "Generate a video caption", "operationId": "generateVideoCaption", "description": "**PeerTube >= 6.2** This feature has to be enabled by the administrator", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Video Captions" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "forceTranscription": { "type": "boolean", "default": false } } } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "video not found" } } } }, "/api/v1/videos/{id}/captions/{captionLanguage}": { "put": { "summary": "Add or replace a video caption", "operationId": "addVideoCaption", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Video Captions" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/captionLanguage" } ], "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "captionfile": { "description": "The file to upload.", "type": "string", "format": "binary" } } }, "encoding": { "captionfile": { "contentType": "text/vtt, application/x-subrip, text/plain" } } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "video or language not found" } } }, "delete": { "summary": "Delete a video caption", "operationId": "delVideoCaption", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Video Captions" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/captionLanguage" } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "video or language or caption for that language not found" } } } }, "/api/v1/videos/{id}/chapters": { "get": { "summary": "Get chapters of a video", "description": "**PeerTube >= 6.0**", "operationId": "getVideoChapters", "tags": [ "Video Chapters" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChapters" } } } } } }, "put": { "summary": "Replace video chapters", "description": "**PeerTube >= 6.0**", "operationId": "replaceVideoChapters", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Video Chapters" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "chapters": { "type": "array", "items": { "type": "object", "properties": { "title": { "type": "string" }, "timecode": { "type": "integer" } } } } } } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "video not found" } } } }, "/api/v1/videos/{id}/passwords": { "get": { "summary": "List video passwords", "description": "**PeerTube >= 6.0**", "operationId": "listVideoPasswords", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Video Passwords" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "204": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoPasswordList" } } } }, "400": { "description": "video is not password protected" } } }, "put": { "summary": "Update video passwords", "description": "**PeerTube >= 6.0**", "operationId": "updateVideoPasswordList", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Video Passwords" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "passwords": { "$ref": "#/components/schemas/AddVideoPasswords" } } } } } }, "responses": { "204": { "description": "successful operation" }, "400": { "description": "video is not password protected" } } }, "post": { "summary": "Add a video password", "description": "**PeerTube >= 8.0**", "operationId": "addVideoPassword", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Video Passwords" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "password": { "type": "string" } } } } } }, "responses": { "204": { "description": "successful operation" }, "400": { "description": "video is not password protected" } } } }, "/api/v1/videos/{id}/passwords/{videoPasswordId}": { "delete": { "summary": "Delete a video password", "description": "**PeerTube >= 6.0**", "operationId": "removeVideoPassword", "security": [ { "OAuth2": [ "user" ] } ], "tags": [ "Video Passwords" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/videoPasswordId" } ], "responses": { "204": { "description": "successful operation" }, "400": { "description": "video is not password protected" }, "403": { "description": "cannot delete the last password of the protected video" } } } }, "/api/v1/video-channels": { "get": { "summary": "List video channels", "operationId": "getVideoChannels", "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannelList" } } } } } }, "post": { "summary": "Create a video channel", "operationId": "addVideoChannel", "security": [ { "OAuth2": [] } ], "tags": [ "Video Channels" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "videoChannel": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" } } } } } } } } }, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannelCreate" } } } } } }, "/api/v1/video-channels/{channelHandle}": { "get": { "summary": "Get a video channel", "operationId": "getVideoChannel", "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannel" } } } } } }, "put": { "summary": "Update a video channel", "operationId": "putVideoChannel", "security": [ { "OAuth2": [] } ], "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "204": { "description": "successful operation" } }, "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannelUpdate" } } } } }, "delete": { "summary": "Delete a video channel", "operationId": "delVideoChannel", "security": [ { "OAuth2": [] } ], "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/video-channels/{channelHandle}/videos": { "get": { "summary": "List videos of a video channel", "operationId": "getVideoChannelVideos", "tags": [ "Video", "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/skipCount" }, { "$ref": "#/components/parameters/videosSort" }, { "$ref": "#/components/parameters/nsfw" }, { "$ref": "#/components/parameters/nsfwFlagsIncluded" }, { "$ref": "#/components/parameters/nsfwFlagsExcluded" }, { "$ref": "#/components/parameters/isLive" }, { "$ref": "#/components/parameters/includeScheduledLive" }, { "$ref": "#/components/parameters/categoryOneOf" }, { "$ref": "#/components/parameters/licenceOneOf" }, { "$ref": "#/components/parameters/languageOneOf" }, { "$ref": "#/components/parameters/tagsOneOf" }, { "$ref": "#/components/parameters/tagsAllOf" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/include" }, { "$ref": "#/components/parameters/hasHLSFiles" }, { "$ref": "#/components/parameters/hasWebVideoFiles" }, { "$ref": "#/components/parameters/host" }, { "$ref": "#/components/parameters/autoTagOneOfVideo" }, { "$ref": "#/components/parameters/privacyOneOf" }, { "$ref": "#/components/parameters/excludeAlreadyWatched" }, { "$ref": "#/components/parameters/search" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoListResponse" } } } } } } }, "/api/v1/video-channels/{channelHandle}/activities": { "get": { "summary": "List activities of a video channel", "description": "**PeerTube >= 8.0**", "operationId": "listVideoChannelActivities", "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ChannelActivityListResponse" } } } } } } }, "/api/v1/video-channels/{channelHandle}/video-playlists": { "get": { "summary": "List playlists of a channel", "tags": [ "Video Playlists", "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/videoPlaylistType" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoPlaylist" } } } } } } } } } }, "/api/v1/video-channels/{channelHandle}/video-playlists/reorder": { "post": { "summary": "Reorder channel playlists", "operationId": "reorderVideoPlaylistsOfChannel", "security": [ { "OAuth2": [] } ], "tags": [ "Video Playlists", "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "204": { "description": "successful operation" } }, "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "startPosition": { "type": "integer", "description": "Start position of the element to reorder", "minimum": 1 }, "insertAfterPosition": { "type": "integer", "description": "New position for the block to reorder, to add the block before the first element", "minimum": 0 }, "reorderLength": { "type": "integer", "description": "How many element from `startPosition` to reorder", "minimum": 1 } }, "required": [ "startPosition", "insertAfterPosition" ] } } } } } }, "/api/v1/video-channels/{channelHandle}/followers": { "get": { "tags": [ "Video Channels" ], "summary": "List followers of a video channel", "security": [ { "OAuth2": [] } ], "operationId": "getVideoChannelFollowers", "parameters": [ { "$ref": "#/components/parameters/channelHandle" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/followersSort" }, { "$ref": "#/components/parameters/search" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Follow" } } } } } } } } } }, "/api/v1/video-channels/{channelHandle}/avatar/pick": { "post": { "summary": "Update channel avatar", "security": [ { "OAuth2": [] } ], "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "avatars": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } } } } } } }, "413": { "description": "image file too large", "headers": { "X-File-Maximum-Size": { "schema": { "type": "string", "format": "Nginx size" }, "description": "Maximum file size for the avatar" } } } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "avatarfile": { "description": "The file to upload.", "type": "string", "format": "binary" } } }, "encoding": { "avatarfile": { "contentType": "image/png, image/jpeg" } } } } } } }, "/api/v1/video-channels/{channelHandle}/avatar": { "delete": { "summary": "Delete channel avatar", "security": [ { "OAuth2": [] } ], "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/video-channels/{channelHandle}/banner/pick": { "post": { "summary": "Update channel banner", "security": [ { "OAuth2": [] } ], "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "banners": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } } } } } } }, "413": { "description": "image file too large", "headers": { "X-File-Maximum-Size": { "schema": { "type": "string", "format": "Nginx size" }, "description": "Maximum file size for the banner" } } } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "bannerfile": { "description": "The file to upload.", "type": "string", "format": "binary" } } }, "encoding": { "bannerfile": { "contentType": "image/png, image/jpeg" } } } } } } }, "/api/v1/video-channels/{channelHandle}/banner": { "delete": { "summary": "Delete channel banner", "security": [ { "OAuth2": [] } ], "tags": [ "Video Channels" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/video-channels/{channelHandle}/import-videos": { "post": { "summary": "Import videos in channel", "description": "Import a remote channel/playlist videos into a channel", "security": [ { "OAuth2": [] } ], "tags": [ "Video Channels", "Channels Sync" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ImportVideosInChannelCreate" } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/video-channel-syncs": { "post": { "summary": "Create a synchronization for a video channel", "operationId": "addVideoChannelSync", "security": [ { "OAuth2": [] } ], "tags": [ "Channels Sync" ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannelSyncCreate" } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "videoChannelSync": { "$ref": "#/components/schemas/VideoChannelSync" } } } } } } } } }, "/api/v1/video-channel-syncs/{channelSyncId}": { "delete": { "summary": "Delete a video channel synchronization", "operationId": "delVideoChannelSync", "security": [ { "OAuth2": [] } ], "tags": [ "Channels Sync" ], "parameters": [ { "$ref": "#/components/parameters/channelSyncId" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/video-channel-syncs/{channelSyncId}/sync": { "post": { "summary": "Triggers the channel synchronization job, fetching all the videos from the remote channel", "operationId": "triggerVideoChannelSync", "security": [ { "OAuth2": [] } ], "tags": [ "Channels Sync" ], "parameters": [ { "$ref": "#/components/parameters/channelSyncId" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/player-settings/videos/{id}": { "get": { "summary": "Get video player settings", "description": "Get player settings for a specific video. Returns video-specific settings merged with channel player settings.", "operationId": "getVideoPlayerSettings", "tags": [ "Player Settings" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "name": "raw", "in": "query", "required": false, "description": "Return raw settings without merging channel defaults", "schema": { "type": "boolean", "default": false } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PlayerVideoSettings" } } } }, "404": { "description": "video not found" } } }, "put": { "summary": "Update video player settings", "description": "Update player settings for a specific video", "operationId": "updateVideoPlayerSettings", "security": [ { "OAuth2": [] } ], "tags": [ "Player Settings" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PlayerVideoSettingsUpdate" } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PlayerVideoSettings" } } } }, "404": { "description": "video not found" } } } }, "/api/v1/player-settings/video-channels/{channelHandle}": { "get": { "summary": "Get channel player settings", "description": "Get player settings for a video channel.", "operationId": "getChannelPlayerSettings", "tags": [ "Player Settings" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" }, { "name": "raw", "in": "query", "required": false, "description": "Return raw settings without applying instance defaults", "schema": { "type": "boolean", "default": false } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PlayerChannelSettings" } } } }, "404": { "description": "video channel not found" } } }, "put": { "summary": "Update channel player settings", "description": "Update default player settings for a video channel.", "operationId": "updateChannelPlayerSettings", "security": [ { "OAuth2": [] } ], "tags": [ "Player Settings" ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PlayerChannelSettingsUpdate" } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PlayerChannelSettings" } } } }, "404": { "description": "video channel not found" } } } }, "/api/v1/video-playlists/privacies": { "get": { "summary": "List available playlist privacy policies", "operationId": "getPlaylistPrivacyPolicies", "tags": [ "Video Playlists" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "string" } }, "examples": { "nightly": { "value": { "1": "Public", "2": "Unlisted", "3": "Private" } } } } } } } } }, "/api/v1/video-playlists": { "get": { "summary": "List video playlists", "operationId": "getPlaylists", "tags": [ "Video Playlists" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/videoPlaylistType" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoPlaylist" } } } } } } } } }, "post": { "summary": "Create a video playlist", "description": "If the video playlist is set as public, `videoChannelId` is mandatory.", "operationId": "addPlaylist", "security": [ { "OAuth2": [] } ], "tags": [ "Video Playlists" ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "videoPlaylist": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/VideoPlaylist/properties/id" }, "uuid": { "$ref": "#/components/schemas/VideoPlaylist/properties/uuid" }, "shortUUID": { "$ref": "#/components/schemas/VideoPlaylist/properties/shortUUID" } } } } } } } } }, "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "displayName": { "description": "Video playlist display name", "type": "string", "minLength": 1, "maxLength": 120 }, "thumbnailfile": { "description": "Video playlist thumbnail file", "type": "string", "format": "binary" }, "privacy": { "$ref": "#/components/schemas/VideoPlaylistPrivacySet" }, "description": { "description": "Video playlist description", "type": "string", "minLength": 3, "maxLength": 1000 }, "videoChannelId": { "allOf": [ { "$ref": "#/components/schemas/id" } ], "description": "Video channel in which the playlist will be published" } }, "required": [ "displayName" ] }, "encoding": { "thumbnailfile": { "contentType": "image/jpeg" } } } } } } }, "/api/v1/video-playlists/{playlistId}": { "get": { "summary": "Get a video playlist", "tags": [ "Video Playlists" ], "parameters": [ { "$ref": "#/components/parameters/playlistId" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoPlaylist" } } } } } }, "put": { "summary": "Update a video playlist", "description": "If the video playlist is set as public, the playlist must have a assigned channel.", "security": [ { "OAuth2": [] } ], "tags": [ "Video Playlists" ], "responses": { "204": { "description": "successful operation" } }, "parameters": [ { "$ref": "#/components/parameters/playlistId" } ], "requestBody": { "content": { "multipart/form-data": { "schema": { "type": "object", "properties": { "displayName": { "description": "Video playlist display name", "type": "string", "minLength": 1, "maxLength": 120 }, "thumbnailfile": { "description": "Video playlist thumbnail file", "type": "string", "format": "binary" }, "privacy": { "$ref": "#/components/schemas/VideoPlaylistPrivacySet" }, "description": { "description": "Video playlist description", "type": "string" }, "videoChannelId": { "allOf": [ { "$ref": "#/components/schemas/id" } ], "description": "Video channel in which the playlist will be published" } } }, "encoding": { "thumbnailfile": { "contentType": "image/jpeg" } } } } } }, "delete": { "summary": "Delete a video playlist", "security": [ { "OAuth2": [] } ], "tags": [ "Video Playlists" ], "parameters": [ { "$ref": "#/components/parameters/playlistId" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/video-playlists/{playlistId}/videos": { "get": { "summary": "List videos of a playlist", "operationId": "getVideoPlaylistVideos", "tags": [ "Videos", "Video Playlists" ], "parameters": [ { "$ref": "#/components/parameters/playlistId" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "maxItems": 100, "items": { "type": "object", "properties": { "id": { "description": "Playlist element id", "allOf": [ { "$ref": "#/components/schemas/id" } ] }, "position": { "type": "integer", "example": 2 }, "startTimestamp": { "type": "integer", "nullable": true, "example": 10, "format": "seconds" }, "stopTimestamp": { "type": "integer", "nullable": true, "example": 41, "format": "seconds" }, "video": { "$ref": "#/components/schemas/Video" } } } } } } } } } } }, "post": { "summary": "Add a video in a playlist", "operationId": "addVideoPlaylistVideo", "security": [ { "OAuth2": [] } ], "tags": [ "Videos", "Video Playlists" ], "parameters": [ { "$ref": "#/components/parameters/playlistId" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "videoPlaylistElement": { "type": "object", "properties": { "id": { "type": "integer", "example": 2 } } } } } } } } }, "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "videoId": { "oneOf": [ { "$ref": "#/components/schemas/Video/properties/uuid" }, { "$ref": "#/components/schemas/Video/properties/id" } ], "description": "Video to add in the playlist" }, "startTimestamp": { "type": "integer", "format": "seconds", "description": "Start the video at this specific timestamp" }, "stopTimestamp": { "type": "integer", "format": "seconds", "description": "Stop the video at this specific timestamp" } }, "required": [ "videoId" ] } } } } } }, "/api/v1/video-playlists/{playlistId}/videos/reorder": { "post": { "summary": "Reorder playlist elements", "operationId": "reorderVideoPlaylist", "security": [ { "OAuth2": [] } ], "tags": [ "Video Playlists" ], "parameters": [ { "$ref": "#/components/parameters/playlistId" } ], "responses": { "204": { "description": "successful operation" } }, "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "startPosition": { "type": "integer", "description": "Start position of the element to reorder", "minimum": 1 }, "insertAfterPosition": { "type": "integer", "description": "New position for the block to reorder, to add the block before the first element", "minimum": 0 }, "reorderLength": { "type": "integer", "description": "How many element from `startPosition` to reorder", "minimum": 1 } }, "required": [ "startPosition", "insertAfterPosition" ] } } } } } }, "/api/v1/video-playlists/{playlistId}/videos/{playlistElementId}": { "put": { "summary": "Update a playlist element", "operationId": "putVideoPlaylistVideo", "security": [ { "OAuth2": [] } ], "tags": [ "Video Playlists" ], "parameters": [ { "$ref": "#/components/parameters/playlistId" }, { "$ref": "#/components/parameters/playlistElementId" } ], "responses": { "204": { "description": "successful operation" } }, "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "startTimestamp": { "type": "integer", "format": "seconds", "description": "Start the video at this specific timestamp" }, "stopTimestamp": { "type": "integer", "format": "seconds", "description": "Stop the video at this specific timestamp" } } } } } } }, "delete": { "summary": "Delete an element from a playlist", "operationId": "delVideoPlaylistVideo", "security": [ { "OAuth2": [] } ], "tags": [ "Video Playlists" ], "parameters": [ { "$ref": "#/components/parameters/playlistId" }, { "$ref": "#/components/parameters/playlistElementId" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/users/me/video-playlists/videos-exist": { "get": { "summary": "Check video exists in my playlists", "security": [ { "OAuth2": [] } ], "tags": [ "Video Playlists" ], "parameters": [ { "name": "videoIds", "in": "query", "required": true, "description": "The video ids to check", "schema": { "type": "array", "items": { "$ref": "#/components/schemas/Video/properties/id" } } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "videoId": { "type": "array", "items": { "type": "object", "properties": { "playlistElementId": { "type": "integer" }, "playlistId": { "type": "integer" }, "startTimestamp": { "type": "integer", "format": "seconds", "nullable": true }, "stopTimestamp": { "type": "integer", "format": "seconds", "nullable": true } } } } } } } } } } } }, "/api/v1/accounts/{name}/video-playlists": { "get": { "summary": "List playlists of an account", "tags": [ "Video Playlists", "Accounts" ], "parameters": [ { "$ref": "#/components/parameters/name" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/videoPlaylistType" }, { "$ref": "#/components/parameters/includeCollaborations" }, { "name": "channelNameOneOf", "in": "query", "required": false, "description": "**PeerTube >= 8.0** Filter on playlists that are published on a channel with one of these names", "schema": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "style": "form", "explode": true } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoPlaylist" } } } } } } } } } }, "/api/v1/accounts/{name}/video-channels": { "get": { "summary": "List video channels of an account", "tags": [ "Video Channels", "Accounts" ], "parameters": [ { "$ref": "#/components/parameters/name" }, { "name": "withStats", "in": "query", "description": "include daily view statistics for the last 30 days and total views (only if authenticated as the account user)", "schema": { "type": "boolean" } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/includeCollaborations" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannelList" } } } } } } }, "/api/v1/accounts/{name}/video-channel-syncs": { "get": { "summary": "List the synchronizations of video channels of an account", "tags": [ "Video Channels", "Channels Sync", "Accounts" ], "parameters": [ { "$ref": "#/components/parameters/name" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/includeCollaborations" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannelSyncList" } } } } } } }, "/api/v1/accounts/{name}/ratings": { "get": { "summary": "List ratings of an account", "security": [ { "OAuth2": [] } ], "tags": [ "Accounts" ], "parameters": [ { "$ref": "#/components/parameters/name" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" }, { "name": "rating", "in": "query", "required": false, "description": "Optionally filter which ratings to retrieve", "schema": { "type": "string", "enum": [ "like", "dislike" ] } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/VideoRating" } } } } } } } }, "/api/v1/videos/{id}/comment-threads": { "get": { "summary": "List threads of a video", "tags": [ "Video Comments" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/commentsSort" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CommentThreadResponse" } } } } } }, "post": { "summary": "Create a thread", "security": [ { "OAuth2": [] } ], "tags": [ "Video Comments" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CommentThreadPostResponse" } } } }, "404": { "description": "video does not exist" } }, "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "text": { "allOf": [ { "$ref": "#/components/schemas/VideoComment/properties/text" } ], "format": "markdown", "maxLength": 10000 } }, "required": [ "text" ] } } } } } }, "/api/v1/videos/{id}/comment-threads/{threadId}": { "get": { "summary": "Get a thread", "tags": [ "Video Comments" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/threadId" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoCommentThreadTree" } } } } } } }, "/api/v1/videos/comments": { "get": { "summary": "List instance comments", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "tags": [ "Video Comments" ], "parameters": [ { "$ref": "#/components/parameters/search" }, { "$ref": "#/components/parameters/searchAccountForComments" }, { "$ref": "#/components/parameters/searchVideoForComments" }, { "$ref": "#/components/parameters/videoId" }, { "$ref": "#/components/parameters/videoChannelId" }, { "$ref": "#/components/parameters/autoTagOneOfComment" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/onLocalVideo" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoCommentForOwnerOrAdmin" } } } } } } } } } }, "/api/v1/videos/{id}/comments/{commentId}": { "post": { "summary": "Reply to a thread of a video", "security": [ { "OAuth2": [] } ], "tags": [ "Video Comments" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/commentId" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CommentThreadPostResponse" } } } }, "404": { "description": "thread or video does not exist" } }, "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "text": { "allOf": [ { "$ref": "#/components/schemas/VideoComment/properties/text" } ], "format": "markdown", "maxLength": 10000 } }, "required": [ "text" ] } } } } }, "delete": { "summary": "Delete a comment or a reply", "security": [ { "OAuth2": [] } ], "tags": [ "Video Comments" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/commentId" } ], "responses": { "204": { "description": "successful operation" }, "403": { "description": "cannot remove comment of another user" }, "404": { "description": "comment or video does not exist" }, "409": { "description": "comment is already deleted" } } } }, "/api/v1/videos/{id}/comments/{commentId}/approve": { "post": { "summary": "Approve a comment", "description": "**PeerTube >= 6.2** Approve a comment that requires a review", "security": [ { "OAuth2": [] } ], "tags": [ "Video Comments" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/commentId" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/videos/{id}/rate": { "put": { "summary": "Like/dislike a video", "security": [ { "OAuth2": [] } ], "tags": [ "Video Rates" ], "parameters": [ { "$ref": "#/components/parameters/idOrUUID" }, { "$ref": "#/components/parameters/videoPasswordHeader" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "rating": { "type": "string", "enum": [ "like", "dislike" ] } }, "required": [ "rating" ] } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "video does not exist" } } } }, "/api/v1/videos/{id}/hls": { "delete": { "summary": "Delete video HLS files", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Video Files" ], "operationId": "delVideoHLS", "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "video does not exist" } } } }, "/api/v1/videos/{id}/web-videos": { "delete": { "summary": "Delete video Web Video files", "description": "**PeerTube >= 6.0**", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Video Files" ], "operationId": "delVideoWebVideos", "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "video does not exist" } } } }, "/api/v1/videos/{id}/transcoding": { "post": { "summary": "Create a transcoding job", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Video Transcoding" ], "operationId": "createVideoTranscoding", "parameters": [ { "$ref": "#/components/parameters/idOrUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "transcodingType": { "type": "string", "enum": [ "hls", "web-video" ] }, "forceTranscoding": { "type": "boolean", "default": false, "description": "If the video is stuck in transcoding state, do it anyway" } }, "required": [ "transcodingType" ] } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "video does not exist" } } } }, "/api/v1/search/videos": { "get": { "tags": [ "Search", "Video" ], "summary": "Search videos", "operationId": "searchVideos", "parameters": [ { "name": "search", "in": "query", "required": true, "allowEmptyValue": false, "description": "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.\n", "schema": { "type": "string" } }, { "$ref": "#/components/parameters/uuids" }, { "$ref": "#/components/parameters/searchTarget" }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/skipCount" }, { "$ref": "#/components/parameters/videosSort" }, { "$ref": "#/components/parameters/nsfw" }, { "$ref": "#/components/parameters/nsfwFlagsIncluded" }, { "$ref": "#/components/parameters/nsfwFlagsExcluded" }, { "$ref": "#/components/parameters/isLive" }, { "$ref": "#/components/parameters/includeScheduledLive" }, { "$ref": "#/components/parameters/categoryOneOf" }, { "$ref": "#/components/parameters/licenceOneOf" }, { "$ref": "#/components/parameters/languageOneOf" }, { "$ref": "#/components/parameters/tagsOneOf" }, { "$ref": "#/components/parameters/tagsAllOf" }, { "$ref": "#/components/parameters/isLocal" }, { "$ref": "#/components/parameters/include" }, { "$ref": "#/components/parameters/hasHLSFiles" }, { "$ref": "#/components/parameters/hasWebVideoFiles" }, { "$ref": "#/components/parameters/host" }, { "$ref": "#/components/parameters/autoTagOneOfVideo" }, { "$ref": "#/components/parameters/privacyOneOf" }, { "$ref": "#/components/parameters/excludeAlreadyWatched" }, { "name": "startDate", "in": "query", "description": "Get videos that are published after this date", "schema": { "type": "string", "format": "date-time" } }, { "name": "endDate", "in": "query", "description": "Get videos that are published before this date", "schema": { "type": "string", "format": "date-time" } }, { "name": "originallyPublishedStartDate", "in": "query", "description": "Get videos that are originally published after this date", "schema": { "type": "string", "format": "date-time" } }, { "name": "originallyPublishedEndDate", "in": "query", "description": "Get videos that are originally published before this date", "schema": { "type": "string", "format": "date-time" } }, { "name": "durationMin", "in": "query", "description": "Get videos that have this minimum duration", "schema": { "type": "integer" } }, { "name": "durationMax", "in": "query", "description": "Get videos that have this maximum duration", "schema": { "type": "integer" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoListResponse" } } } }, "500": { "description": "search index unavailable" } } } }, "/api/v1/search/video-channels": { "get": { "tags": [ "Search", "Video Channels" ], "summary": "Search channels", "operationId": "searchChannels", "parameters": [ { "name": "search", "in": "query", "required": true, "description": "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.\n", "schema": { "type": "string" } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/searchTarget" }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/host" }, { "$ref": "#/components/parameters/handles" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/VideoChannelList" } } } }, "500": { "description": "search index unavailable" } } } }, "/api/v1/search/video-playlists": { "get": { "tags": [ "Search", "Video Playlists" ], "summary": "Search playlists", "operationId": "searchPlaylists", "parameters": [ { "name": "search", "in": "query", "required": true, "description": "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.\n", "schema": { "type": "string" } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/searchTarget" }, { "$ref": "#/components/parameters/sort" }, { "$ref": "#/components/parameters/host" }, { "$ref": "#/components/parameters/uuids" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoPlaylist" } } } } } } }, "500": { "description": "search index unavailable" } } } }, "/api/v1/blocklist/status": { "get": { "tags": [ "Account Blocks", "Server Blocks" ], "summary": "Get block status of accounts/hosts", "parameters": [ { "name": "accounts", "in": "query", "description": "Check if these accounts are blocked", "example": [ "goofy@example.com", "donald@example.com" ], "schema": { "type": "array", "items": { "type": "string" } } }, { "name": "hosts", "in": "query", "description": "Check if these hosts are blocked", "example": [ "example.com" ], "schema": { "type": "array", "items": { "type": "string" } } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/BlockStatus" } } } } } } }, "/api/v1/server/blocklist/accounts": { "get": { "tags": [ "Account Blocks" ], "summary": "List account blocks", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation" } } }, "post": { "tags": [ "Account Blocks" ], "summary": "Block an account", "security": [ { "OAuth2": [ "admin" ] } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "accountName": { "type": "string", "example": "chocobozzz@example.org", "description": "account to block, in the form `username@domain`" } }, "required": [ "accountName" ] } } } }, "responses": { "200": { "description": "successful operation" }, "409": { "description": "self-blocking forbidden" } } } }, "/api/v1/server/blocklist/accounts/{accountName}": { "delete": { "tags": [ "Account Blocks" ], "summary": "Unblock an account by its handle", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "name": "accountName", "in": "path", "required": true, "description": "account to unblock, in the form `username@domain`", "schema": { "type": "string" } } ], "responses": { "201": { "description": "successful operation" }, "404": { "description": "account or account block does not exist" } } } }, "/api/v1/server/blocklist/servers": { "get": { "tags": [ "Server Blocks" ], "summary": "List server blocks", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation" } } }, "post": { "tags": [ "Server Blocks" ], "summary": "Block a server", "security": [ { "OAuth2": [ "admin" ] } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "host": { "type": "string", "format": "hostname", "description": "server domain to block" } }, "required": [ "host" ] } } } }, "responses": { "204": { "description": "successful operation" }, "409": { "description": "self-blocking forbidden" } } } }, "/api/v1/server/blocklist/servers/{host}": { "delete": { "tags": [ "Server Blocks" ], "summary": "Unblock a server by its domain", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "name": "host", "in": "path", "required": true, "description": "server domain to unblock", "schema": { "type": "string", "format": "hostname" } } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "account block does not exist" } } } }, "/api/v1/server/redundancy/{host}": { "put": { "tags": [ "Instance Redundancy" ], "summary": "Update a server redundancy policy", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "name": "host", "in": "path", "required": true, "description": "server domain to mirror", "schema": { "type": "string", "format": "hostname" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "redundancyAllowed": { "type": "boolean", "description": "allow mirroring of the host's local videos" } }, "required": [ "redundancyAllowed" ] } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "server is not already known" } } } }, "/api/v1/server/redundancy/videos": { "get": { "tags": [ "Video Mirroring" ], "summary": "List videos being mirrored", "operationId": "getMirroredVideos", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "name": "target", "in": "query", "required": true, "description": "direction of the mirror", "schema": { "type": "string", "enum": [ "my-videos", "remote-videos" ] } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/videoRedundanciesSort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/VideoRedundancy" } } } } } } }, "post": { "tags": [ "Video Mirroring" ], "summary": "Mirror a video", "operationId": "putMirroredVideo", "security": [ { "OAuth2": [ "admin" ] } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "videoId": { "$ref": "#/components/schemas/Video/properties/id" } }, "required": [ "videoId" ] } } } }, "responses": { "204": { "description": "successful operation" }, "400": { "description": "cannot mirror a local video" }, "404": { "description": "video does not exist" }, "409": { "description": "video is already mirrored" } } } }, "/api/v1/server/redundancy/videos/{redundancyId}": { "delete": { "tags": [ "Video Mirroring" ], "summary": "Delete a mirror done on a video", "operationId": "delMirroredVideo", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "name": "redundancyId", "in": "path", "required": true, "description": "id of an existing redundancy on a video", "schema": { "type": "string" } } ], "responses": { "204": { "description": "successful operation" }, "404": { "description": "video redundancy not found" } } } }, "/api/v1/server/stats": { "get": { "tags": [ "Stats" ], "summary": "Get instance stats", "description": "Get instance public statistics. This endpoint is cached.", "operationId": "getInstanceStats", "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/ServerStats" } } } } } } }, "/api/v1/server/logs/client": { "post": { "tags": [ "Logs" ], "summary": "Send client log", "operationId": "sendClientLog", "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/SendClientLog" } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/server/logs": { "get": { "tags": [ "Logs" ], "summary": "Get instance logs", "operationId": "getInstanceLogs", "security": [ { "OAuth2": [ "admin" ] } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "string" } } } } } } } }, "/api/v1/server/audit-logs": { "get": { "tags": [ "Logs" ], "summary": "Get instance audit logs", "operationId": "getInstanceAuditLogs", "security": [ { "OAuth2": [ "admin" ] } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "string" } } } } } } } }, "/api/v1/plugins": { "get": { "tags": [ "Plugins" ], "summary": "List plugins", "operationId": "getPlugins", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "name": "pluginType", "in": "query", "schema": { "type": "integer" } }, { "name": "uninstalled", "in": "query", "schema": { "type": "boolean" } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PluginResponse" } } } } } } }, "/api/v1/plugins/available": { "get": { "tags": [ "Plugins" ], "summary": "List available plugins", "operationId": "getAvailablePlugins", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "name": "search", "in": "query", "schema": { "type": "string" } }, { "name": "pluginType", "in": "query", "schema": { "type": "integer" } }, { "name": "currentPeerTubeEngine", "in": "query", "schema": { "type": "string" } }, { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/sort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PluginResponse" } } } }, "503": { "description": "plugin index unavailable" } } } }, "/api/v1/plugins/install": { "post": { "tags": [ "Plugins" ], "summary": "Install a plugin", "operationId": "addPlugin", "security": [ { "OAuth2": [ "admin" ] } ], "requestBody": { "content": { "application/json": { "schema": { "oneOf": [ { "type": "object", "properties": { "npmName": { "type": "string", "example": "peertube-plugin-auth-ldap" } }, "required": [ "npmName" ], "additionalProperties": false }, { "type": "object", "properties": { "path": { "type": "string" } }, "required": [ "path" ], "additionalProperties": false } ] } } } }, "responses": { "204": { "description": "successful operation" }, "400": { "description": "should have either `npmName` or `path` set" } } } }, "/api/v1/plugins/update": { "post": { "tags": [ "Plugins" ], "summary": "Update a plugin", "operationId": "updatePlugin", "security": [ { "OAuth2": [ "admin" ] } ], "requestBody": { "content": { "application/json": { "schema": { "oneOf": [ { "type": "object", "properties": { "npmName": { "type": "string", "example": "peertube-plugin-auth-ldap" } }, "required": [ "npmName" ], "additionalProperties": false }, { "type": "object", "properties": { "path": { "type": "string" } }, "required": [ "path" ], "additionalProperties": false } ] } } } }, "responses": { "204": { "description": "successful operation" }, "400": { "description": "should have either `npmName` or `path` set" }, "404": { "description": "existing plugin not found" } } } }, "/api/v1/plugins/uninstall": { "post": { "tags": [ "Plugins" ], "summary": "Uninstall a plugin", "operationId": "uninstallPlugin", "security": [ { "OAuth2": [ "admin" ] } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "npmName": { "type": "string", "description": "name of the plugin/theme in its package.json", "example": "peertube-plugin-auth-ldap" } }, "required": [ "npmName" ] } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "existing plugin not found" } } } }, "/api/v1/plugins/{npmName}": { "get": { "tags": [ "Plugins" ], "summary": "Get a plugin", "operationId": "getPlugin", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "$ref": "#/components/parameters/npmName" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/Plugin" } } } }, "404": { "description": "plugin not found" } } } }, "/api/v1/plugins/{npmName}/settings": { "put": { "tags": [ "Plugins" ], "summary": "Set a plugin's settings", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "$ref": "#/components/parameters/npmName" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "settings": { "type": "object", "additionalProperties": true } } } } } }, "responses": { "204": { "description": "successful operation" }, "404": { "description": "plugin not found" } } } }, "/api/v1/plugins/{npmName}/public-settings": { "get": { "tags": [ "Plugins" ], "summary": "Get a plugin's public settings", "parameters": [ { "$ref": "#/components/parameters/npmName" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "additionalProperties": true } } } }, "404": { "description": "plugin not found" } } } }, "/api/v1/plugins/{npmName}/registered-settings": { "get": { "tags": [ "Plugins" ], "summary": "Get a plugin's registered settings", "security": [ { "OAuth2": [ "admin" ] } ], "parameters": [ { "$ref": "#/components/parameters/npmName" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "additionalProperties": true } } } }, "404": { "description": "plugin not found" } } } }, "/api/v1/metrics/playback": { "post": { "summary": "Create playback metrics", "description": "These metrics are exposed by OpenTelemetry metrics exporter if enabled.", "tags": [ "Stats" ], "requestBody": { "content": { "application/json": { "schema": { "$ref": "#/components/schemas/PlaybackMetricCreate" } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/registration-tokens/generate": { "post": { "summary": "Generate registration token", "description": "Generate a new runner registration token", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Runner Registration Token" ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/registration-tokens/{registrationTokenId}": { "delete": { "summary": "Remove registration token", "description": "Remove a registration token. Runners that used this token for their registration are automatically removed.", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Runner Registration Token" ], "parameters": [ { "$ref": "#/components/parameters/registrationTokenId" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/registration-tokens": { "get": { "summary": "List registration tokens", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Runner Registration Token" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/registrationTokenSort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/RunnerRegistrationToken" } } } } } } } } } }, "/api/v1/runners/register": { "post": { "summary": "Register a new runner", "description": "API used by PeerTube runners", "tags": [ "Runners" ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "registrationToken": { "type": "string" }, "name": { "type": "string" }, "description": { "type": "string" } }, "required": [ "registrationToken", "name" ] } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "id": { "type": "integer", "description": "Runner id" }, "runnerToken": { "type": "string" } } } } } } } } }, "/api/v1/runners/unregister": { "post": { "summary": "Unregister a runner", "description": "API used by PeerTube runners", "tags": [ "Runners" ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "runnerToken": { "type": "string" } }, "required": [ "runnerToken" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/{runnerId}": { "delete": { "summary": "Delete a runner", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Runners" ], "parameters": [ { "$ref": "#/components/parameters/runnerId" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "runnerToken": { "type": "string" } }, "required": [ "runnerToken" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners": { "get": { "summary": "List runners", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Runners" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/runnerSort" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/Runner" } } } } } } } } } }, "/api/v1/runners/jobs/request": { "post": { "summary": "Request a new job", "description": "API used by PeerTube runners", "tags": [ "Runner Jobs" ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "runnerToken": { "type": "string" }, "jobTypes": { "type": "array", "description": "Filter jobs depending on their types", "items": { "type": "string" } } }, "required": [ "runnerToken" ] } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "availableJobs": { "type": "array", "items": { "type": "object", "properties": { "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "type": { "$ref": "#/components/schemas/RunnerJobType" }, "payload": { "$ref": "#/components/schemas/RunnerJobPayload" } } } } } } } } } } } }, "/api/v1/runners/jobs/{jobUUID}/accept": { "post": { "summary": "Accept job", "description": "API used by PeerTube runners", "tags": [ "Runner Jobs" ], "parameters": [ { "$ref": "#/components/parameters/jobUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "runnerToken": { "type": "string" } }, "required": [ "runnerToken" ] } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "job": { "allOf": [ { "$ref": "#/components/schemas/RunnerJob" }, { "type": "object", "properties": { "jobToken": { "type": "string" } } } ] } } } } } } } } }, "/api/v1/runners/jobs/{jobUUID}/abort": { "post": { "summary": "Abort job", "description": "API used by PeerTube runners", "tags": [ "Runner Jobs" ], "parameters": [ { "$ref": "#/components/parameters/jobUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "runnerToken": { "type": "string" }, "jobToken": { "type": "string" }, "reason": { "type": "string", "description": "Why the runner aborts this job" } }, "required": [ "runnerToken", "jobToken", "reason" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/jobs/{jobUUID}/update": { "post": { "summary": "Update job", "description": "API used by PeerTube runners", "tags": [ "Runner Jobs" ], "parameters": [ { "$ref": "#/components/parameters/jobUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "runnerToken": { "type": "string" }, "jobToken": { "type": "string" }, "progress": { "type": "integer", "description": "Update job progression percentage (optional)" }, "payload": { "anyOf": [ { "type": "object", "description": "Provide live transcoding chunks update", "properties": { "type": { "type": "string", "enum": [ "add-chunk", "remove-chunk" ] }, "masterPlaylistFile": { "type": "string", "format": "binary" }, "resolutionPlaylistFile": { "type": "string", "format": "binary" }, "resolutionPlaylistFilename": { "type": "string" }, "videoChunkFile": { "type": "string", "format": "binary" }, "videoChunkFilename": { "type": "string" } } } ] } }, "required": [ "runnerToken", "jobToken" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/jobs/{jobUUID}/error": { "post": { "summary": "Post job error", "description": "API used by PeerTube runners", "tags": [ "Runner Jobs" ], "parameters": [ { "$ref": "#/components/parameters/jobUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "runnerToken": { "type": "string" }, "jobToken": { "type": "string" }, "message": { "type": "string", "description": "Why the runner failed to process this job" } }, "required": [ "runnerToken", "jobToken", "message" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/jobs/{jobUUID}/success": { "post": { "summary": "Post job success", "description": "API used by PeerTube runners", "tags": [ "Runner Jobs" ], "parameters": [ { "$ref": "#/components/parameters/jobUUID" } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "runnerToken": { "type": "string" }, "jobToken": { "type": "string" }, "payload": { "anyOf": [ { "type": "object", "title": "VOD web video transcoding", "properties": { "videoFile": { "type": "string", "format": "binary" } } }, { "type": "object", "title": "VOD HLS transcoding", "properties": { "videoFile": { "type": "string", "format": "binary" }, "resolutionPlaylistFile": { "type": "string", "format": "binary" } } }, { "type": "object", "title": "VOD audio merge transcoding", "properties": { "videoFile": { "type": "string", "format": "binary" } } }, { "type": "object", "title": "Live RTMP to HLS transcoding" } ] } }, "required": [ "runnerToken", "jobToken", "payload" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/jobs/{jobUUID}/cancel": { "get": { "summary": "Cancel a job", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Runner Jobs" ], "parameters": [ { "$ref": "#/components/parameters/jobUUID" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/jobs/{jobUUID}": { "delete": { "summary": "Delete a job", "description": "The endpoint will first cancel the job if needed, and then remove it from the database. Children jobs will also be removed", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Runner Jobs" ], "parameters": [ { "$ref": "#/components/parameters/jobUUID" } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/runners/jobs": { "get": { "summary": "List jobs", "security": [ { "OAuth2": [ "admin" ] } ], "tags": [ "Runner Jobs" ], "parameters": [ { "$ref": "#/components/parameters/start" }, { "$ref": "#/components/parameters/count" }, { "$ref": "#/components/parameters/runnerJobSort" }, { "$ref": "#/components/parameters/search" }, { "name": "stateOneOf", "in": "query", "required": false, "schema": { "type": "array", "items": { "$ref": "#/components/schemas/RunnerJobState" } } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/RunnerJobAdmin" } } } } } } } } } }, "/api/v1/automatic-tags/policies/accounts/{accountName}/comments": { "get": { "tags": [ "Automatic Tags" ], "summary": "Get account auto tag policies on comments", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [] } ], "parameters": [ { "name": "accountName", "in": "path", "required": true, "description": "account name to get auto tag policies", "schema": { "type": "string" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/CommentAutoTagPolicies" } } } } } }, "put": { "tags": [ "Automatic Tags" ], "summary": "Update account auto tag policies on comments", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [] } ], "parameters": [ { "name": "accountName", "in": "path", "required": true, "description": "account name to update auto tag policies", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "review": { "description": "Auto tags that automatically set the comment in review state", "type": "array", "items": { "type": "string" } } } } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/automatic-tags/accounts/{accountName}/available": { "get": { "tags": [ "Automatic Tags" ], "summary": "Get account available auto tags", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [] } ], "parameters": [ { "name": "accountName", "in": "path", "required": true, "description": "account name to get auto tag policies", "schema": { "type": "string" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AutomaticTagAvailable" } } } } } } }, "/api/v1/automatic-tags/server/available": { "get": { "tags": [ "Automatic Tags" ], "summary": "Get server available auto tags", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/AutomaticTagAvailable" } } } } } } }, "/api/v1/watched-words/accounts/{accountName}/lists": { "get": { "tags": [ "Watched Words" ], "summary": "List account watched words", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [] } ], "parameters": [ { "name": "accountName", "in": "path", "required": true, "description": "account name to list watched words", "schema": { "type": "string" } } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/WatchedWordsLists" } } } } } } } } }, "post": { "tags": [ "Watched Words" ], "summary": "Add account watched words", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [] } ], "parameters": [ { "name": "accountName", "in": "path", "required": true, "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "listName": { "type": "string" }, "words": { "type": "array", "items": { "type": "string" } } } } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "watchedWordsList": { "type": "object", "properties": { "id": { "type": "integer" } } } } } } } } } } }, "/api/v1/watched-words/accounts/{accountName}/lists/{listId}": { "put": { "tags": [ "Watched Words" ], "summary": "Update account watched words", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [] } ], "parameters": [ { "name": "accountName", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "listId", "in": "path", "required": true, "description": "list of watched words to update", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "listName": { "type": "string" }, "words": { "type": "array", "items": { "type": "string" } } } } } } }, "responses": { "204": { "description": "successful operation" } } }, "delete": { "tags": [ "Watched Words" ], "summary": "Delete account watched words", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [] } ], "parameters": [ { "name": "accountName", "in": "path", "required": true, "schema": { "type": "string" } }, { "name": "listId", "in": "path", "required": true, "description": "list of watched words to delete", "schema": { "type": "string" } } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/watched-words/server/lists": { "get": { "tags": [ "Watched Words" ], "summary": "List server watched words", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/WatchedWordsLists" } } } } } } } } }, "post": { "tags": [ "Watched Words" ], "summary": "Add server watched words", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "listName": { "type": "string" }, "words": { "type": "array", "items": { "type": "string" } } } } } } }, "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "watchedWordsList": { "type": "object", "properties": { "id": { "type": "integer" } } } } } } } } } } }, "/api/v1/watched-words/server/lists/{listId}": { "put": { "tags": [ "Watched Words" ], "summary": "Update server watched words", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "parameters": [ { "name": "listId", "in": "path", "required": true, "description": "list of watched words to update", "schema": { "type": "string" } } ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "listName": { "type": "string" }, "words": { "type": "array", "items": { "type": "string" } } } } } } }, "responses": { "204": { "description": "successful operation" } } }, "delete": { "tags": [ "Watched Words" ], "summary": "Delete server watched words", "description": "**PeerTube >= 6.2**", "security": [ { "OAuth2": [ "admin", "moderator" ] } ], "parameters": [ { "name": "listId", "in": "path", "required": true, "description": "list of watched words to delete", "schema": { "type": "string" } } ], "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/client-config/update-language": { "post": { "tags": [ "Client Config" ], "summary": "Update client language", "description": "Set a cookie so that, the next time the client refreshes the HTML of the web interface, PeerTube will use the next language", "operationId": "updateClientLanguage", "requestBody": { "content": { "application/json": { "schema": { "type": "object", "properties": { "language": { "type": "string", "description": "Language code to set", "example": "en-US" } }, "required": [ "language" ] } } } }, "responses": { "204": { "description": "successful operation" } } } }, "/api/v1/video-channels/{channelHandle}/collaborators": { "get": { "tags": [ "Video Channels" ], "summary": "*List channel collaborators", "description": "**PeerTube >= 8.0**", "operationId": "listVideoChannelCollaborators", "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "responses": { "200": { "description": "successful operation", "content": { "application/json": { "schema": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoChannelCollaborator" } } } } } } } } } }, "/api/v1/video-channels/{channelHandle}/collaborators/invite": { "post": { "tags": [ "Video Channels" ], "summary": "Invite a collaborator", "operationId": "inviteVideoChannelCollaborator", "description": "**PeerTube >= 8.0** Invite a local user to collaborate on the specified video channel.", "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" } ], "requestBody": { "required": true, "content": { "application/json": { "schema": { "type": "object", "properties": { "accountHandle": { "type": "string", "description": "Local user username to invite" } } } } } }, "responses": { "200": { "description": "Collaborator invited", "content": { "application/json": { "schema": { "type": "object", "properties": { "collaborator": { "$ref": "#/components/schemas/VideoChannelCollaborator" } } } } } } } } }, "/api/v1/video-channels/{channelHandle}/collaborators/{collaboratorId}/accept": { "post": { "tags": [ "Video Channels" ], "summary": "Accept a collaboration invitation", "description": "**PeerTube >= 8.0**", "operationId": "acceptVideoChannelCollaborator", "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" }, { "$ref": "#/components/parameters/collaboratorId" } ], "responses": { "204": { "description": "Collaboration accepted" } } } }, "/api/v1/video-channels/{channelHandle}/collaborators/{collaboratorId}/reject": { "post": { "tags": [ "Video Channels" ], "summary": "Reject a collaboration invitation", "description": "**PeerTube >= 8.0**", "operationId": "rejectVideoChannelCollaborator", "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" }, { "$ref": "#/components/parameters/collaboratorId" } ], "responses": { "204": { "description": "Collaboration rejected" } } } }, "/api/v1/video-channels/{channelHandle}/collaborators/{collaboratorId}": { "delete": { "tags": [ "Video Channels" ], "summary": "Remove a channel collaborator", "description": "**PeerTube >= 8.0** Only the channel owner or the collaborator themselves can remove a collaborator from a channel", "operationId": "removeVideoChannelCollaborator", "security": [ { "OAuth2": [] } ], "parameters": [ { "$ref": "#/components/parameters/channelHandle" }, { "$ref": "#/components/parameters/collaboratorId" } ], "responses": { "204": { "description": "successful operation" } } } } }, "servers": [ { "url": "https://peertube2.cpy.re", "description": "Live Test Server (live data - latest nightly version)" }, { "url": "https://peertube3.cpy.re", "description": "Live Test Server (live data - latest RC version)" }, { "url": "https://peertube.cpy.re", "description": "Live Test Server (live data - stable version)" } ], "components": { "parameters": { "start": { "name": "start", "in": "query", "required": false, "description": "Offset used to paginate results", "schema": { "type": "integer", "minimum": 0 } }, "count": { "name": "count", "in": "query", "required": false, "description": "Number of items to return", "schema": { "type": "integer", "default": 15, "maximum": 100, "minimum": 1 } }, "sort": { "name": "sort", "in": "query", "required": false, "description": "Sort column", "schema": { "type": "string", "example": "-createdAt" } }, "search": { "name": "search", "in": "query", "required": false, "description": "Plain text search, applied to various parts of the model depending on endpoint", "schema": { "type": "string" } }, "searchTarget": { "name": "searchTarget", "in": "query", "required": false, "description": "If the administrator enabled search index support, you can override the default search target.\n\n**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:\n * If the current user has the ability to make a remote URI search (this information is available in the config endpoint),\n then reuse the search API to make a search using the object URI so PeerTube instance fetches the remote object and fill its database.\n After that, you can use the classic REST API endpoints to fetch the complete object or interact with it\n * 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\n the data from the origin instance API\n", "schema": { "type": "string", "enum": [ "local", "search-index" ] } }, "mySubscriptionSort": { "name": "sort", "in": "query", "required": false, "schema": { "type": "string", "enum": [ "-id", "-createdAt", "-channelUpdatedAt" ] } }, "videosSort": { "name": "sort", "in": "query", "required": false, "schema": { "type": "string", "enum": [ "name", "-duration", "-createdAt", "-publishedAt", "-views", "-likes", "-comments", "-trending", "-hot", "-best" ], "description": "Sort videos by criteria (prefixing with `-` means `DESC` order):\n * `hot` - Adaptation of Reddit \"hot\" algorithm taking into account video views, likes, dislikes and comments and publication date\n * `best` - Same than `hot`, but also takes into account user video history\n * `trending` - Sort videos by recent views (\"recent\" is defined by the admin)\n * `views` - Sort videos using their `views` counter\n * `publishedAt` - Sort by video publication date (when it became publicly available)\n" } }, "videosSearchSort": { "name": "sort", "in": "query", "required": false, "description": "Sort videos by criteria (prefixing with `-` means `DESC` order):\n", "schema": { "type": "string", "enum": [ "name", "-duration", "-createdAt", "-publishedAt", "-views", "-likes", "-match" ] } }, "commentsSort": { "name": "sort", "in": "query", "required": false, "description": "Sort comments by criteria", "schema": { "type": "string", "enum": [ "-createdAt", "-totalReplies" ] } }, "blacklistsSort": { "name": "sort", "in": "query", "required": false, "description": "Sort blocklists by criteria", "schema": { "type": "string", "enum": [ "-id", "name", "-duration", "-views", "-likes", "-dislikes", "-uuid", "-createdAt" ] } }, "usersSearch": { "name": "search", "in": "query", "required": false, "description": "Plain text search that will match with user usernames or emails", "schema": { "type": "string" } }, "usersBlocked": { "name": "blocked", "in": "query", "required": false, "description": "Filter results down to (un)banned users", "schema": { "type": "boolean" } }, "usersSort": { "name": "sort", "in": "query", "required": false, "description": "Sort users by criteria", "schema": { "type": "string", "enum": [ "-id", "-username", "-createdAt" ] } }, "abusesSort": { "name": "sort", "in": "query", "required": false, "description": "Sort abuses by criteria", "schema": { "type": "string", "enum": [ "-id", "-createdAt", "-state" ] } }, "videoRedundanciesSort": { "name": "sort", "in": "query", "required": false, "description": "Sort abuses by criteria", "schema": { "type": "string", "enum": [ "name" ] } }, "followersSort": { "name": "sort", "in": "query", "required": false, "description": "Sort followers by criteria", "schema": { "type": "string", "enum": [ "createdAt" ] } }, "registrationTokenSort": { "name": "sort", "in": "query", "required": false, "description": "Sort registration tokens by criteria", "schema": { "type": "string", "enum": [ "createdAt" ] } }, "runnerSort": { "name": "sort", "in": "query", "required": false, "description": "Sort runners by criteria", "schema": { "type": "string", "enum": [ "createdAt" ] } }, "runnerJobSort": { "name": "sort", "in": "query", "required": false, "description": "Sort runner jobs by criteria", "schema": { "type": "string", "enum": [ "updatedAt", "createdAt", "priority", "state", "progress" ] } }, "name": { "name": "name", "in": "path", "required": true, "description": "The username or handle of the account", "schema": { "type": "string", "example": "chocobozzz | chocobozzz@example.org" } }, "id": { "name": "id", "in": "path", "required": true, "description": "Entity id", "schema": { "$ref": "#/components/schemas/id" } }, "tokenSessionId": { "name": "tokenSessionId", "in": "path", "required": true, "description": "Token session Id", "schema": { "$ref": "#/components/schemas/id" } }, "userId": { "name": "userId", "in": "path", "required": true, "description": "User id", "schema": { "$ref": "#/components/schemas/id" } }, "registrationId": { "name": "registrationId", "in": "path", "required": true, "description": "Registration ID", "schema": { "$ref": "#/components/schemas/id" } }, "idOrUUID": { "name": "id", "in": "path", "required": true, "description": "The object id, uuid or short uuid", "schema": { "oneOf": [ { "$ref": "#/components/schemas/id" }, { "$ref": "#/components/schemas/UUIDv4" }, { "$ref": "#/components/schemas/shortUUID" } ] } }, "playlistId": { "name": "playlistId", "in": "path", "required": true, "description": "Playlist id", "schema": { "$ref": "#/components/schemas/VideoPlaylist/properties/id" } }, "playlistElementId": { "name": "playlistElementId", "in": "path", "required": true, "description": "Playlist element id", "schema": { "$ref": "#/components/schemas/id" } }, "abuseId": { "name": "abuseId", "in": "path", "required": true, "description": "Abuse id", "schema": { "$ref": "#/components/schemas/Abuse/properties/id" } }, "abuseMessageId": { "name": "abuseMessageId", "in": "path", "required": true, "description": "Abuse message id", "schema": { "$ref": "#/components/schemas/AbuseMessage/properties/id" } }, "captionLanguage": { "name": "captionLanguage", "in": "path", "required": true, "description": "The caption language", "schema": { "$ref": "#/components/schemas/VideoLanguageSet" } }, "channelHandle": { "name": "channelHandle", "in": "path", "required": true, "description": "The video channel handle", "schema": { "type": "string", "example": "my_username | my_username@example.com" } }, "channelSyncId": { "name": "channelSyncId", "in": "path", "required": true, "description": "Channel Sync id", "schema": { "$ref": "#/components/schemas/Abuse/properties/id" } }, "subscriptionHandle": { "name": "subscriptionHandle", "in": "path", "required": true, "description": "The subscription handle", "schema": { "type": "string", "example": "my_username | my_username@example.com" } }, "threadId": { "name": "threadId", "in": "path", "required": true, "description": "The thread id (root comment id)", "schema": { "type": "integer" } }, "commentId": { "name": "commentId", "in": "path", "required": true, "description": "The comment id", "schema": { "$ref": "#/components/schemas/VideoComment/properties/id" } }, "isLive": { "name": "isLive", "in": "query", "required": false, "description": "whether or not the video is a live", "schema": { "type": "boolean" } }, "includeScheduledLive": { "name": "includeScheduledLive", "in": "query", "required": false, "description": "whether or not include live that are scheduled for later", "schema": { "type": "boolean" } }, "categoryOneOf": { "name": "categoryOneOf", "in": "query", "required": false, "description": "category id of the video (see [/videos/categories](#operation/getCategories))", "schema": { "oneOf": [ { "$ref": "#/components/schemas/VideoCategorySet" }, { "type": "array", "items": { "$ref": "#/components/schemas/VideoCategorySet" } } ] }, "style": "form", "explode": true }, "tagsOneOf": { "name": "tagsOneOf", "in": "query", "required": false, "description": "tag(s) of the video", "schema": { "oneOf": [ { "type": "string" }, { "type": "array", "maxItems": 5, "items": { "type": "string" } } ] }, "style": "form", "explode": true }, "tagsAllOf": { "name": "tagsAllOf", "in": "query", "required": false, "description": "tag(s) of the video, where all should be present in the video", "schema": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "style": "form", "explode": true }, "languageOneOf": { "name": "languageOneOf", "in": "query", "required": false, "description": "language id of the video (see [/videos/languages](#operation/getLanguages)). Use `_unknown` to filter on videos that don't have a video language", "schema": { "oneOf": [ { "$ref": "#/components/schemas/VideoLanguageSet" }, { "type": "array", "items": { "$ref": "#/components/schemas/VideoLanguageSet" } } ] }, "style": "form", "explode": true }, "autoTagOneOfVideo": { "name": "autoTagOneOf", "in": "query", "required": false, "description": "**PeerTube >= 6.2** **Admins and moderators only** filter on videos that contain one of these automatic tags", "schema": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "style": "form", "explode": true }, "channelNameOneOf": { "name": "channelNameOneOf", "in": "query", "required": false, "description": "**PeerTube >= 7.2** Filter on videos that are published by a channel with one of these names", "schema": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "style": "form", "explode": true }, "autoTagOneOfComment": { "name": "autoTagOneOf", "in": "query", "required": false, "description": "**PeerTube >= 6.2** filter on comments that contain one of these automatic tags", "schema": { "oneOf": [ { "type": "string" }, { "type": "array", "items": { "type": "string" } } ] }, "style": "form", "explode": true }, "isHeldForReview": { "name": "isHeldForReview", "in": "query", "required": false, "description": "only display comments that are held for review", "schema": { "type": "boolean" } }, "licenceOneOf": { "name": "licenceOneOf", "in": "query", "required": false, "description": "licence id of the video (see [/videos/licences](#operation/getLicences))", "schema": { "oneOf": [ { "$ref": "#/components/schemas/VideoLicenceSet" }, { "type": "array", "items": { "$ref": "#/components/schemas/VideoLicenceSet" } } ] }, "style": "form", "explode": true }, "skipCount": { "name": "skipCount", "in": "query", "required": false, "description": "if you don't need the `total` in the response", "schema": { "type": "string", "enum": [ "true", "false" ], "default": "false" } }, "nsfw": { "name": "nsfw", "in": "query", "required": false, "description": "whether to include nsfw videos, if any", "schema": { "type": "string", "enum": [ "true", "false" ] } }, "nsfwFlagsIncluded": { "name": "nsfwFlagsIncluded", "in": "query", "required": false, "schema": { "$ref": "#/components/schemas/NSFWFlag" } }, "nsfwFlagsExcluded": { "name": "nsfwFlagsExcluded", "in": "query", "required": false, "schema": { "$ref": "#/components/schemas/NSFWFlag" } }, "isLocal": { "name": "isLocal", "in": "query", "required": false, "schema": { "type": "boolean" }, "description": "**PeerTube >= 4.0** Display only local or remote objects" }, "hasHLSFiles": { "name": "hasHLSFiles", "in": "query", "required": false, "schema": { "type": "boolean" }, "description": "**PeerTube >= 4.0** Display only videos that have HLS files" }, "hasWebVideoFiles": { "name": "hasWebVideoFiles", "in": "query", "required": false, "schema": { "type": "boolean" }, "description": "**PeerTube >= 6.0** Display only videos that have Web Video files" }, "privacyOneOf": { "name": "privacyOneOf", "in": "query", "required": false, "schema": { "$ref": "#/components/schemas/VideoPrivacySet" }, "description": "**PeerTube >= 4.0** Display only videos in this specific privacy/privacies" }, "excludeAlreadyWatched": { "name": "excludeAlreadyWatched", "in": "query", "description": "Whether or not to exclude videos that are in the user's video history", "schema": { "type": "boolean" } }, "uuids": { "name": "uuids", "in": "query", "required": false, "schema": { "items": { "type": "string" } }, "description": "Find elements with specific UUIDs" }, "host": { "name": "host", "in": "query", "required": false, "schema": { "type": "string" }, "description": "Find elements owned by this host" }, "handles": { "name": "handles", "in": "query", "required": false, "schema": { "items": { "type": "string" } }, "description": "Find elements with these handles" }, "include": { "name": "include", "in": "query", "required": false, "schema": { "type": "integer", "enum": [ 0, 1, 2, 4, 8, 16, 32 ] }, "description": "**Only administrators and moderators can use this parameter**\n\nInclude additional videos in results (can be combined using bitwise or operator)\n- `0` NONE\n- `1` NOT_PUBLISHED_STATE\n- `2` BLACKLISTED\n- `4` BLOCKED_OWNER\n- `8` FILES\n- `16` CAPTIONS\n- `32` VIDEO SOURCE\n" }, "subscriptionsUris": { "name": "uris", "in": "query", "required": true, "description": "list of uris to check if each is part of the user subscriptions", "schema": { "type": "array", "items": { "type": "string", "format": "uri" } } }, "npmName": { "name": "npmName", "in": "path", "required": true, "description": "name of the plugin/theme on npmjs.com or in its package.json", "schema": { "type": "string", "example": "peertube-plugin-auth-ldap" } }, "jobType": { "name": "jobType", "in": "query", "required": false, "description": "job type", "schema": { "type": "string", "enum": [ "activitypub-follow", "activitypub-http-broadcast", "activitypub-http-fetcher", "activitypub-http-unicast", "email", "video-transcoding", "video-file-import", "video-import", "videos-views-stats", "activitypub-refresher", "video-redundancy", "video-live-ending", "video-channel-import" ] } }, "followState": { "name": "state", "in": "query", "schema": { "type": "string", "enum": [ "pending", "accepted" ] } }, "actorType": { "name": "actorType", "in": "query", "schema": { "type": "string", "enum": [ "Person", "Application", "Group", "Service", "Organization" ] } }, "staticFilename": { "name": "filename", "in": "path", "required": true, "description": "Filename", "schema": { "type": "string" } }, "videoFileToken": { "name": "videoFileToken", "in": "query", "required": false, "description": "Video file token [generated](#operation/requestVideoToken) by PeerTube so you don't need to provide an OAuth token in the request header.", "schema": { "type": "string" } }, "reinjectVideoFileToken": { "name": "reinjectVideoFileToken", "in": "query", "required": false, "description": "Ask the server to reinject videoFileToken in URLs in m3u8 playlist", "schema": { "type": "boolean" } }, "videoPlaylistType": { "name": "playlistType", "in": "query", "required": false, "schema": { "$ref": "#/components/schemas/VideoPlaylistTypeSet" } }, "registrationTokenId": { "name": "registrationTokenId", "in": "path", "required": true, "schema": { "type": "integer" } }, "runnerId": { "name": "runnerId", "in": "path", "required": true, "schema": { "type": "integer" } }, "jobUUID": { "name": "jobUUID", "in": "path", "required": true, "schema": { "$ref": "#/components/schemas/UUIDv4" } }, "videoPasswordId": { "name": "videoPasswordId", "in": "path", "required": true, "description": "The video password id", "schema": { "$ref": "#/components/schemas/id" } }, "onLocalVideo": { "name": "onLocalVideo", "in": "query", "required": false, "schema": { "type": "boolean" }, "description": "Display only objects of local or remote videos" }, "videoChannelId": { "name": "videoChannelId", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "Limit results on this specific video channel" }, "videoId": { "name": "videoId", "in": "query", "required": false, "schema": { "type": "integer" }, "description": "Limit results on this specific video" }, "searchVideoForComments": { "name": "searchVideo", "in": "query", "required": false, "description": "Filter comments by searching on the video", "schema": { "type": "string" } }, "searchAccountForComments": { "name": "searchAccount", "in": "query", "required": false, "description": "Filter comments by searching on the account", "schema": { "type": "string" } }, "videoPasswordHeader": { "name": "x-peertube-video-password", "description": "Required on password protected video", "in": "header", "required": false, "schema": { "type": "string" } }, "resumableUploadInitContentLengthHeader": { "name": "X-Upload-Content-Length", "in": "header", "schema": { "type": "number", "example": 2469036 }, "required": true, "description": "Number of bytes that will be uploaded in subsequent requests. Set this value to the size of the file you are uploading." }, "resumableUploadInitContentTypeHeader": { "name": "X-Upload-Content-Type", "in": "header", "schema": { "type": "string", "format": "mimetype", "example": "video/mp4" }, "required": true, "description": "MIME type of the file that you are uploading. Depending on your instance settings, acceptable values might vary." }, "resumableUploadChunkContentRangeHeader": { "name": "Content-Range", "in": "header", "schema": { "type": "string", "example": "bytes 0-262143/2469036" }, "required": true, "description": "Specifies the bytes in the file that the request is uploading.\n\nFor example, a value of `bytes 0-262143/1000000` shows that the request is sending the first\n262144 bytes (256 x 1024) in a 2,469,036 byte file.\n" }, "resumableUploadChunkContentLengthHeader": { "name": "Content-Length", "in": "header", "schema": { "type": "number", "example": 262144 }, "required": true, "description": "Size of the chunk that the request is sending.\n\nRemember that larger chunks are more efficient. PeerTube's web client uses chunks varying from\n1048576 bytes (~1MB) and increases or reduces size depending on connection health.\n" }, "resumableUploadId": { "name": "upload_id", "in": "query", "required": true, "description": "Created session id to proceed with. If you didn't send chunks in the last hour, it is\nnot valid anymore and you need to initialize a new upload.\n", "schema": { "type": "string" } }, "logoTypeParam": { "name": "logoType", "in": "path", "required": true, "schema": { "type": "string", "enum": [ "favicon", "header-wide", "header-square", "opengraph" ] } }, "includeCollaborations": { "name": "includeCollaborations", "in": "query", "required": false, "description": "**PeerTube >= 8.0** Include objects from collaborated channels", "schema": { "type": "boolean" } }, "collaboratorId": { "name": "collaboratorId", "in": "path", "required": true, "description": "The collaborator id", "schema": { "$ref": "#/components/schemas/id" } } }, "securitySchemes": { "OAuth2": { "description": "Authenticating via OAuth requires the following steps:\n- Have an activated account\n- [Generate] an access token for that account at `/api/v1/users/token`.\n- Make requests with the *Authorization: Bearer * header\n- Profit, depending on the role assigned to the account\n\nNote that the __access token is valid for 1 day__ and is given\nalong with a __refresh token valid for 2 weeks__.\n\n[Generate]: https://docs.joinpeertube.org/api/rest-getting-started\n", "type": "oauth2", "flows": { "password": { "tokenUrl": "/api/v1/users/token", "scopes": { "admin": "Admin scope", "moderator": "Moderator scope", "user": "User scope" } } } } }, "schemas": { "id": { "type": "integer", "minimum": 1, "example": 42 }, "UUIDv4": { "type": "string", "format": "uuid", "example": "9c9de5e8-0a1e-484a-b099-e80766180a6d", "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$", "minLength": 36, "maxLength": 36 }, "shortUUID": { "type": "string", "description": "translation of a uuid v4 with a bigger alphabet to have a shorter uuid", "example": "2y84q2MQUMWPbiEcxNXMgC" }, "username": { "type": "string", "description": "immutable name of the user, used to find or mention its actor", "example": "chocobozzz", "pattern": "/^[a-z0-9._]+$/", "minLength": 1, "maxLength": 50 }, "usernameChannel": { "type": "string", "description": "immutable name of the channel, used to interact with its actor", "example": "framasoft_videos", "pattern": "/^[a-zA-Z0-9\\\\-_.:]+$/", "minLength": 1, "maxLength": 50 }, "password": { "type": "string", "format": "password", "minLength": 6, "maxLength": 50 }, "VideoCategorySet": { "type": "integer", "description": "category id of the video (see [/videos/categories](#operation/getCategories))", "example": 15 }, "VideoConstantNumber-Category": { "properties": { "id": { "$ref": "#/components/schemas/VideoCategorySet" }, "label": { "type": "string", "example": "Science & Technology" } } }, "VideoLicenceSet": { "type": "integer", "description": "licence id of the video (see [/videos/licences](#operation/getLicences))", "example": 2 }, "VideoConstantNumber-Licence": { "properties": { "id": { "$ref": "#/components/schemas/VideoLicenceSet" }, "label": { "type": "string", "example": "Attribution - Share Alike" } } }, "VideoLanguageSet": { "type": "string", "description": "language id of the video (see [/videos/languages](#operation/getLanguages))", "example": "en" }, "VideoConstantString-Language": { "properties": { "id": { "$ref": "#/components/schemas/VideoLanguageSet" }, "label": { "type": "string", "example": "English" } } }, "VideoPlaylistPrivacySet": { "type": "integer", "enum": [ 1, 2, 3 ], "description": "Video playlist privacy policy (see [/video-playlists/privacies](#operation/getPlaylistPrivacyPolicies))" }, "VideoPlaylistPrivacyConstant": { "properties": { "id": { "$ref": "#/components/schemas/VideoPlaylistPrivacySet" }, "label": { "type": "string" } } }, "VideoPlaylistTypeSet": { "type": "integer", "enum": [ 1, 2 ], "description": "The video playlist type (Regular = `1`, Watch Later = `2`)" }, "VideoPlaylistTypeConstant": { "properties": { "id": { "$ref": "#/components/schemas/VideoPlaylistTypeSet" }, "label": { "type": "string" } } }, "VideoPrivacySet": { "type": "integer", "enum": [ 1, 2, 3, 4, 5 ], "description": "privacy id of the video (see [/videos/privacies](#operation/getVideoPrivacyPolicies))" }, "VideoPrivacyConstant": { "properties": { "id": { "$ref": "#/components/schemas/VideoPrivacySet" }, "label": { "type": "string" } } }, "VideoCommentsPolicySet": { "type": "integer", "enum": [ 1, 2, 3 ], "description": "Comments policy of the video (Enabled = `1`, Disabled = `2`, Requires Approval = `3`)" }, "VideoCommentsPolicyConstant": { "properties": { "id": { "$ref": "#/components/schemas/VideoCommentsPolicySet" }, "label": { "type": "string" } } }, "BlockStatus": { "properties": { "accounts": { "type": "object", "additionalProperties": { "x-additionalPropertiesName": "account", "type": "object", "properties": { "blockedByServer": { "type": "boolean" }, "blockedByUser": { "type": "boolean" } } } }, "hosts": { "type": "object", "additionalProperties": { "x-additionalPropertiesName": "host", "type": "object", "properties": { "blockedByServer": { "type": "boolean" }, "blockedByUser": { "type": "boolean" } } } } } }, "NSFWPolicy": { "type": "string", "enum": [ "display", "warn", "do_not_list" ] }, "NSFWFlag": { "type": "integer", "enum": [ 0, 1, 2, 4 ], "description": "\nNSFW flags (can be combined using bitwise or operator)\n- `0` NONE\n- `1` VIOLENT\n- `2` EXPLICIT_SEX\n" }, "UserRole": { "type": "integer", "enum": [ 0, 1, 2 ], "description": "The user role (Admin = `0`, Moderator = `1`, User = `2`)", "example": 2 }, "UserAdminFlags": { "type": "integer", "enum": [ 0, 1 ], "description": "Admin flags for the user (None = `0`, Bypass video blocklist = `1`)", "example": 1 }, "LiveVideoLatencyMode": { "type": "integer", "enum": [ 1, 2, 3 ], "description": "The live latency mode (Default = `1`, High latency = `2`, Small Latency = `3`)" }, "LiveVideoReplaySettings": { "type": "object", "properties": { "privacy": { "$ref": "#/components/schemas/VideoPrivacySet" } } }, "VideoChannelActivityAction": { "type": "integer", "enum": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ], "description": "The activity action:\n - CREATE: 1\n - UPDATE: 2\n - DELETE: 3\n - UPDATE_CAPTIONS: 4\n - UPDATE_CHAPTERS: 5\n - UPDATE_PASSWORDS: 6\n - CREATE_STUDIO_TASKS: 7\n - UPDATE_SOURCE_FILE: 8\n - UPDATE_ELEMENTS: 9\n - REMOVE_CHANNEL_OWNERSHIP: 10\n - CREATE_CHANNEL_OWNERSHIP: 11\n" }, "VideoChannelActivityTarget": { "type": "integer", "enum": [ 1, 2, 3, 4, 5 ], "description": "The activity target:\n - VIDEO: 1,\n - PLAYLIST: 2,\n - CHANNEL: 3,\n - CHANNEL_SYNC: 4,\n - VIDEO_IMPORT: 5\n" }, "VideoStateConstant": { "properties": { "id": { "type": "integer", "enum": [ 1, 2, 3, 4, 5, 6, 7, 8, 9 ], "description": "The video state:\n- `1`: Published\n- `2`: To transcode\n- `3`: To import\n- `4`: Waiting for live stream\n- `5`: Live ended\n- `6`: To move to an external storage (object storage...)\n- `7`: Transcoding failed\n- `8`: Moving to an external storage failed\n- `9`: To edit using studio edition feature\n" }, "label": { "type": "string" } } }, "UserExportState": { "type": "integer", "enum": [ 1, 2, 3, 4 ], "description": "The user export state:\n - `1`: Pending\n - `2`: Processing\n - `3`: Completed\n - `4`: Errored\n" }, "UserImportState": { "type": "integer", "enum": [ 1, 2, 3, 4 ], "description": "The user import state:\n - `1`: Pending\n - `2`: Processing\n - `3`: Completed\n - `4`: Errored\n" }, "AbuseStateSet": { "type": "integer", "enum": [ 1, 2, 3 ], "description": "The abuse state (Pending = `1`, Rejected = `2`, Accepted = `3`)" }, "AbuseStateConstant": { "properties": { "id": { "$ref": "#/components/schemas/AbuseStateSet" }, "label": { "type": "string" } } }, "AbusePredefinedReasons": { "type": "array", "items": { "type": "string", "enum": [ "violentOrAbusive", "hatefulOrAbusive", "spamOrMisleading", "privacy", "rights", "serverRules", "thumbnails", "captions" ] }, "example": [ "spamOrMisleading" ] }, "VideoResolutionSet": { "type": "integer", "description": "Video resolution (`0`, `240`, `360`, `720`, `1080`, `1440` or `2160`)\n\n`0` is used as a special value for stillimage videos dedicated to audio, a.k.a. audio-only videos.\n", "example": 240 }, "VideoResolutionConstant": { "description": "resolutions and their labels for the video", "properties": { "id": { "$ref": "#/components/schemas/VideoResolutionSet" }, "label": { "type": "string", "example": "240p" } } }, "VideoScheduledUpdate": { "properties": { "privacy": { "$ref": "#/components/schemas/VideoPrivacySet" }, "updateAt": { "type": "string", "format": "date-time", "description": "When to update the video" } }, "required": [ "updateAt" ] }, "AccountSummary": { "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "displayName": { "type": "string" }, "url": { "type": "string", "format": "url" }, "host": { "type": "string", "format": "hostname" }, "avatars": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } } } }, "VideoChannelSummary": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "name": { "type": "string" }, "displayName": { "type": "string" }, "url": { "type": "string", "format": "url" }, "host": { "type": "string", "format": "hostname" }, "avatars": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } } } }, "PlaylistElement": { "properties": { "position": { "type": "integer" }, "startTimestamp": { "type": "integer", "format": "seconds" }, "stopTimestamp": { "type": "integer", "format": "seconds" }, "video": { "nullable": true, "allOf": [ { "$ref": "#/components/schemas/Video" } ] } } }, "Thumbnail": { "properties": { "fileUrl": { "type": "string" }, "width": { "type": "integer" }, "height": { "type": "integer" }, "aspectRatio": { "type": "string", "example": "16:9" } } }, "VideoFile": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "magnetUri": { "type": "string", "format": "uri", "description": "magnet URI allowing to resolve the video via BitTorrent without a metainfo file", "pattern": "/magnet:\\?xt=urn:[a-z0-9]+:[a-z0-9]{32}/i" }, "resolution": { "$ref": "#/components/schemas/VideoResolutionConstant" }, "size": { "type": "integer", "description": "Video file size in bytes" }, "torrentUrl": { "type": "string", "description": "Direct URL of the torrent file", "format": "url" }, "torrentDownloadUrl": { "type": "string", "description": "URL endpoint that transfers the torrent file as an attachment (so that the browser opens a download dialog)", "format": "url" }, "fileUrl": { "type": "string", "description": "Direct URL of the video", "format": "url" }, "playlistUrl": { "type": "string", "description": "Playlist URL of the file if it is owned by a playlist", "format": "url" }, "fileDownloadUrl": { "type": "string", "description": "URL endpoint that transfers the video file as an attachment (so that the browser opens a download dialog)", "format": "url" }, "fps": { "type": "number", "description": "Frames per second of the video file" }, "width": { "type": "number", "description": "**PeerTube >= 6.1** Video stream width" }, "height": { "type": "number", "description": "**PeerTube >= 6.1** Video stream height" }, "metadataUrl": { "type": "string", "format": "url", "description": "URL dereferencing the output of ffprobe on the file" }, "hasAudio": { "type": "boolean", "description": "**PeerTube >= 6.2** The file container has an audio stream" }, "hasVideo": { "type": "boolean", "description": "**PeerTube >= 6.2** The file container has a video stream" }, "storage": { "$ref": "#/components/schemas/FileStorage" } } }, "VideoStreamingPlaylists": { "allOf": [ { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "type": { "type": "integer", "enum": [ 1 ], "description": "Playlist type:\n- `1`: HLS\n" } } }, { "$ref": "#/components/schemas/VideoStreamingPlaylists-HLS" } ] }, "VideoStreamingPlaylists-HLS": { "properties": { "playlistUrl": { "type": "string", "format": "url" }, "segmentsSha256Url": { "type": "string", "format": "url" }, "files": { "type": "array", "description": "Video files associated to this playlist.\n\nThe difference with the root `files` property is that these files are fragmented, so they can be used in this streaming playlist (HLS, etc.)\n", "items": { "$ref": "#/components/schemas/VideoFile" } }, "redundancies": { "type": "array", "items": { "type": "object", "properties": { "baseUrl": { "type": "string", "format": "url" } } } } } }, "VideoInfo": { "properties": { "id": { "$ref": "#/components/schemas/Video/properties/id" }, "uuid": { "$ref": "#/components/schemas/Video/properties/uuid" }, "name": { "$ref": "#/components/schemas/Video/properties/name" }, "state": { "$ref": "#/components/schemas/Video/properties/state" } } }, "Video": { "properties": { "id": { "description": "object id for the video", "allOf": [ { "$ref": "#/components/schemas/id" } ] }, "uuid": { "description": "universal identifier for the video, that can be used across instances", "allOf": [ { "$ref": "#/components/schemas/UUIDv4" } ] }, "shortUUID": { "allOf": [ { "$ref": "#/components/schemas/shortUUID" } ] }, "isLive": { "type": "boolean" }, "liveSchedules": { "type": "array", "items": { "$ref": "#/components/schemas/LiveSchedule" } }, "createdAt": { "type": "string", "format": "date-time", "example": "2017-10-01T10:52:46.396Z", "description": "time at which the video object was first drafted" }, "publishedAt": { "type": "string", "format": "date-time", "example": "2018-10-01T10:52:46.396Z", "description": "time at which the video was marked as ready for playback (with restrictions depending on `privacy`). Usually set after a `state` evolution." }, "updatedAt": { "type": "string", "format": "date-time", "example": "2021-05-04T08:01:01.502Z", "description": "last time the video's metadata was modified" }, "originallyPublishedAt": { "type": "string", "nullable": true, "format": "date-time", "example": "2010-10-01T10:52:46.396Z", "description": "used to represent a date of first publication, prior to the practical publication date of `publishedAt`" }, "category": { "allOf": [ { "$ref": "#/components/schemas/VideoConstantNumber-Category" } ], "description": "category in which the video is classified" }, "licence": { "allOf": [ { "$ref": "#/components/schemas/VideoConstantNumber-Licence" } ], "description": "licence under which the video is distributed" }, "language": { "allOf": [ { "$ref": "#/components/schemas/VideoConstantString-Language" } ], "description": "main language used in the video" }, "privacy": { "allOf": [ { "$ref": "#/components/schemas/VideoPrivacyConstant" } ], "description": "privacy policy used to distribute the video" }, "truncatedDescription": { "type": "string", "nullable": true, "example": "**[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", "minLength": 3, "maxLength": 250, "description": "truncated description of the video, written in Markdown.\n" }, "duration": { "type": "integer", "example": 1419, "format": "seconds", "description": "duration of the video in seconds" }, "aspectRatio": { "type": "number", "nullable": true, "format": "float", "example": 1.778, "description": "**PeerTube >= 6.1** Aspect ratio of the video stream" }, "isLocal": { "type": "boolean" }, "name": { "type": "string", "description": "title of the video", "example": "What is PeerTube?", "minLength": 3, "maxLength": 120 }, "thumbnailPath": { "description": "Deprecated in PeerTube v8.1, use thumbnails instead", "deprecated": true, "type": "string" }, "previewPath": { "description": "Deprecated in PeerTube v8.1, use thumbnails instead", "deprecated": true, "type": "string" }, "thumbnails": { "description": "**PeerTube >= 8.1** Array of thumbnails for the video", "type": "array", "items": { "$ref": "#/components/schemas/Thumbnail" } }, "embedPath": { "type": "string", "example": "/videos/embed/a65bc12f-9383-462e-81ae-8207e8b434ee" }, "views": { "type": "integer", "example": 1337 }, "likes": { "type": "integer", "example": 42 }, "dislikes": { "type": "integer", "example": 7 }, "comments": { "description": "**PeerTube >= 7.2** Number of comments on the video", "type": "integer" }, "nsfw": { "type": "boolean" }, "nsfwFlags": { "allOf": [ { "$ref": "#/components/schemas/NSFWFlag" } ] }, "nsfwSummary": { "type": "string", "description": "**PeerTube >= 7.2** More information about the sensitive content of the video" }, "waitTranscoding": { "type": "boolean", "nullable": true }, "state": { "allOf": [ { "$ref": "#/components/schemas/VideoStateConstant" } ], "description": "represents the internal state of the video processing within the PeerTube instance" }, "scheduledUpdate": { "nullable": true, "allOf": [ { "$ref": "#/components/schemas/VideoScheduledUpdate" } ] }, "blacklisted": { "nullable": true, "type": "boolean" }, "blacklistedReason": { "nullable": true, "type": "string" }, "account": { "$ref": "#/components/schemas/AccountSummary" }, "channel": { "$ref": "#/components/schemas/VideoChannelSummary" }, "userHistory": { "nullable": true, "type": "object", "properties": { "currentTime": { "type": "integer" } } } } }, "ServerError": { "properties": { "type": { "type": "string", "example": "https://docs.joinpeertube.org/api-rest-reference.html#section/Errors/video_requires_password" }, "detail": { "type": "string", "example": "Please provide a password to access this password protected video" }, "status": { "type": "integer", "example": 403 }, "code": { "type": "string", "example": "video_requires_password" } } }, "VideoDetails": { "allOf": [ { "$ref": "#/components/schemas/Video" }, { "type": "object", "properties": { "viewers": { "type": "integer", "description": "If the video is a live, you have the amount of current viewers" }, "description": { "type": "string", "nullable": true, "example": "\"**[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", "minLength": 3, "maxLength": 1000, "description": "full description of the video, written in Markdown.\n" }, "support": { "type": "string", "nullable": true, "description": "A text tell the audience how to support the video creator", "example": "Please support our work on https://soutenir.framasoft.org/en/ <3", "minLength": 3, "maxLength": 1000 }, "channel": { "$ref": "#/components/schemas/VideoChannel" }, "account": { "$ref": "#/components/schemas/Account" }, "tags": { "example": [ "flowers", "gardening" ], "type": "array", "minItems": 1, "maxItems": 5, "items": { "type": "string", "minLength": 2, "maxLength": 30 } }, "commentsPolicy": { "$ref": "#/components/schemas/VideoCommentsPolicyConstant" }, "downloadEnabled": { "type": "boolean" }, "inputFileUpdatedAt": { "type": "string", "format": "date-time", "nullable": true, "description": "Latest input file update. Null if the file has never been replaced since the original upload" }, "trackerUrls": { "type": "array", "items": { "type": "string", "format": "url" }, "example": [ "https://peertube2.cpy.re/tracker/announce", "wss://peertube2.cpy.re/tracker/socket" ] }, "files": { "type": "array", "items": { "$ref": "#/components/schemas/VideoFile" }, "description": "Web compatible video files. If Web Video is disabled on the server:\n\n- field will be empty\n- video files will be found in `streamingPlaylists[].files` field\n" }, "streamingPlaylists": { "type": "array", "items": { "$ref": "#/components/schemas/VideoStreamingPlaylists" }, "description": "HLS playlists/manifest files. If HLS is disabled on the server:\n\n- field will be empty\n- video files will be found in `files` field\n" } } } ] }, "FileRedundancyInformation": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "fileUrl": { "type": "string", "format": "url" }, "strategy": { "type": "string", "enum": [ "manual", "most-views", "trending", "recently-added" ] }, "size": { "type": "integer" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "expiresOn": { "type": "string", "format": "date-time" } } }, "VideoRedundancy": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "name": { "type": "string" }, "url": { "type": "string", "format": "url" }, "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "redundancies": { "type": "object", "properties": { "streamingPlaylists": { "type": "array", "items": { "$ref": "#/components/schemas/FileRedundancyInformation" } } } } } }, "CommentAutoTagPolicies": { "properties": { "review": { "type": "array", "description": "Auto tags that automatically set the comment in review state", "items": { "type": "string" } } } }, "AutomaticTagAvailable": { "properties": { "available": { "type": "array", "description": "Available auto tags that can be used to filter objects or set a comment in review state", "items": { "type": "object", "properties": { "name": { "type": "string", "description": "tag name" }, "type": { "type": "string", "enum": [ "core", "watched-words-list" ] } } } } } }, "VideoImportStateConstant": { "properties": { "id": { "type": "integer", "enum": [ 1, 2, 3 ], "description": "The video import state (Pending = `1`, Success = `2`, Failed = `3`)" }, "label": { "type": "string", "example": "Pending" } } }, "VideoCreateImport": { "allOf": [ { "type": "object", "additionalProperties": false, "oneOf": [ { "properties": { "targetUrl": { "$ref": "#/components/schemas/VideoImport/properties/targetUrl" } }, "required": [ "targetUrl" ] }, { "properties": { "magnetUri": { "$ref": "#/components/schemas/VideoImport/properties/magnetUri" } }, "required": [ "magnetUri" ] }, { "properties": { "torrentfile": { "$ref": "#/components/schemas/VideoImport/properties/torrentfile" } }, "required": [ "torrentfile" ] } ] }, { "$ref": "#/components/schemas/VideoUploadRequestCommon" } ], "required": [ "channelId", "name" ] }, "VideoImport": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "targetUrl": { "type": "string", "format": "url", "description": "remote URL where to find the import's source video", "example": "https://framatube.org/videos/watch/9c9de5e8-0a1e-484a-b099-e80766180a6d" }, "magnetUri": { "type": "string", "format": "uri", "description": "magnet URI allowing to resolve the import's source video", "pattern": "/magnet:\\?xt=urn:[a-z0-9]+:[a-z0-9]{32}/i" }, "torrentfile": { "type": "string", "format": "binary", "description": "Torrent file containing only the video file" }, "torrentName": { "type": "string" }, "state": { "allOf": [ { "$ref": "#/components/schemas/VideoImportStateConstant" } ] }, "error": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "video": { "nullable": true, "allOf": [ { "$ref": "#/components/schemas/Video" } ] } } }, "VideoImportsList": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "maxItems": 100, "items": { "$ref": "#/components/schemas/VideoImport" } } } }, "Abuse": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "reason": { "type": "string", "example": "The video is a spam", "minLength": 2, "maxLength": 3000 }, "predefinedReasons": { "$ref": "#/components/schemas/AbusePredefinedReasons" }, "reporterAccount": { "$ref": "#/components/schemas/Account" }, "state": { "$ref": "#/components/schemas/AbuseStateConstant" }, "moderationComment": { "type": "string", "example": "Decided to ban the server since it spams us regularly", "minLength": 2, "maxLength": 3000 }, "video": { "type": "object", "properties": { "id": { "type": "integer" }, "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "shortUUID": { "$ref": "#/components/schemas/shortUUID" }, "name": { "type": "string" }, "nsfw": { "type": "boolean" }, "startAt": { "type": "string", "format": "date-time" }, "endAt": { "type": "string", "format": "date-time" }, "deleted": { "type": "boolean" }, "blacklisted": { "type": "boolean" }, "thumbnailPath": { "description": "Deprecated in PeerTube v8.1, use thumbnails instead", "deprecated": true, "type": "string" }, "thumbnails": { "description": "**PeerTube >= 8.1** Array of thumbnails for the video", "type": "array", "items": { "$ref": "#/components/schemas/Thumbnail" } }, "channel": { "$ref": "#/components/schemas/VideoChannel" } } }, "createdAt": { "type": "string", "format": "date-time" } } }, "AbuseMessage": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "message": { "type": "string", "minLength": 2, "maxLength": 3000 }, "byModerator": { "type": "boolean" }, "createdAt": { "type": "string", "format": "date-time" }, "account": { "$ref": "#/components/schemas/AccountSummary" } } }, "VideoBlacklist": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "videoId": { "$ref": "#/components/schemas/Video/properties/id" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "name": { "type": "string", "minLength": 3, "maxLength": 120 }, "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "description": { "type": "string", "minLength": 3, "maxLength": 10000 }, "duration": { "type": "integer" }, "views": { "type": "integer" }, "likes": { "type": "integer" }, "dislikes": { "type": "integer" }, "nsfw": { "type": "boolean" } } }, "VideoPlaylist": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "shortUUID": { "allOf": [ { "$ref": "#/components/schemas/shortUUID" } ] }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "description": { "type": "string", "minLength": 3, "maxLength": 1000 }, "displayName": { "type": "string", "minLength": 1, "maxLength": 120 }, "isLocal": { "type": "boolean" }, "videoLength": { "type": "integer", "minimum": 0 }, "thumbnailPath": { "description": "Deprecated in PeerTube v8.1, use thumbnails instead", "deprecated": true, "type": "string" }, "thumbnails": { "description": "**PeerTube >= 8.1** Array of thumbnails for the video", "type": "array", "items": { "$ref": "#/components/schemas/Thumbnail" } }, "privacy": { "$ref": "#/components/schemas/VideoPlaylistPrivacyConstant" }, "type": { "$ref": "#/components/schemas/VideoPlaylistTypeConstant" }, "ownerAccount": { "$ref": "#/components/schemas/AccountSummary" }, "videoChannel": { "$ref": "#/components/schemas/VideoChannelSummary" }, "videoChannelPosition": { "type": "integer", "minimum": 1, "description": "Position of the playlist in the channel" } } }, "VideoComment": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "url": { "type": "string", "format": "url" }, "text": { "type": "string", "format": "html", "description": "Text of the comment", "minLength": 1, "example": "This video is wonderful!" }, "threadId": { "$ref": "#/components/schemas/id" }, "inReplyToCommentId": { "nullable": true, "allOf": [ { "$ref": "#/components/schemas/id" } ] }, "videoId": { "$ref": "#/components/schemas/Video/properties/id" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "deletedAt": { "nullable": true, "type": "string", "format": "date-time", "default": null }, "isDeleted": { "type": "boolean", "default": false }, "heldForReview": { "type": "boolean" }, "totalRepliesFromVideoAuthor": { "type": "integer", "minimum": 0 }, "totalReplies": { "type": "integer", "minimum": 0 }, "account": { "$ref": "#/components/schemas/Account" } } }, "VideoCommentThreadTree": { "properties": { "comment": { "$ref": "#/components/schemas/VideoComment" }, "children": { "type": "array", "items": { "$ref": "#/components/schemas/VideoCommentThreadTree" } } } }, "VideoCommentForOwnerOrAdmin": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "url": { "$ref": "#/components/schemas/VideoComment/properties/url" }, "text": { "$ref": "#/components/schemas/VideoComment/properties/text" }, "heldForReview": { "$ref": "#/components/schemas/VideoComment/properties/heldForReview" }, "threadId": { "$ref": "#/components/schemas/VideoComment/properties/threadId" }, "inReplyToCommentId": { "$ref": "#/components/schemas/VideoComment/properties/inReplyToCommentId" }, "createdAt": { "$ref": "#/components/schemas/VideoComment/properties/createdAt" }, "updatedAt": { "$ref": "#/components/schemas/VideoComment/properties/updatedAt" }, "account": { "$ref": "#/components/schemas/VideoComment/properties/account" }, "video": { "$ref": "#/components/schemas/VideoInfo" }, "automaticTags": { "type": "array", "items": { "type": "string" } } } }, "Storyboard": { "properties": { "storyboardPath": { "description": "Deprecated in PeerTube v8.0, use fileUrl instead", "deprecated": true, "type": "string" }, "fileUrl": { "description": "**PeerTube >= 7.1**", "type": "string" }, "totalHeight": { "type": "integer" }, "totalWidth": { "type": "integer" }, "spriteHeight": { "type": "integer" }, "spriteWidth": { "type": "integer" }, "spriteDuration": { "type": "integer" } } }, "VideoCaption": { "properties": { "language": { "$ref": "#/components/schemas/VideoConstantString-Language" }, "automaticallyGenerated": { "type": "boolean" }, "captionPath": { "type": "string", "deprecated": true, "description": "Deprecated in PeerTube v8.0, use fileUrl instead" }, "fileUrl": { "description": "**PeerTube >= 7.1**", "type": "string" }, "m3u8Url": { "type": "string" }, "updatedAt": { "type": "string", "format": "date-time" } } }, "VideoChapters": { "properties": { "chapters": { "type": "object", "properties": { "title": { "type": "string" }, "timecode": { "type": "integer" } } } } }, "VideoSource": { "properties": { "inputFilename": { "type": "string", "description": "Uploaded/imported filename" }, "fileDownloadUrl": { "type": "string", "description": "**PeerTube >= 6.1** If enabled by the admin, the video source file is kept on the server and can be downloaded by the owner" }, "resolution": { "description": "**PeerTube >= 6.1**", "allOf": [ { "$ref": "#/components/schemas/VideoResolutionConstant" } ] }, "size": { "type": "integer", "description": "**PeerTube >= 6.1** Video file size in bytes" }, "fps": { "type": "number", "description": "**PeerTube >= 6.1** Frames per second of the video file" }, "width": { "type": "integer", "description": "**PeerTube >= 6.1** Video stream width" }, "height": { "type": "integer", "description": "**PeerTube >= 6.1** Video stream height" }, "createdAt": { "type": "string", "format": "date-time" } } }, "ActorImage": { "properties": { "path": { "description": "Deprecated in PeerTube v8.0, use fileUrl instead", "deprecated": true, "type": "string" }, "fileUrl": { "description": "**PeerTube >= 7.1**", "type": "string" }, "width": { "type": "integer" }, "height": { "type": "integer", "description": "**PeerTube >= 7.3**" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }, "ActorInfo": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "name": { "type": "string" }, "displayName": { "type": "string" }, "host": { "type": "string", "format": "hostname" }, "avatars": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } } } }, "Actor": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "url": { "type": "string", "format": "url" }, "name": { "description": "immutable name of the actor, used to find or mention it", "allOf": [ { "$ref": "#/components/schemas/username" } ] }, "avatars": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } }, "host": { "type": "string", "format": "hostname", "description": "server on which the actor is resident" }, "hostRedundancyAllowed": { "type": "boolean", "nullable": true, "description": "whether this actor's host allows redundancy of its videos" }, "followingCount": { "type": "integer", "minimum": 0, "description": "number of actors subscribed to by this actor, as seen by this instance" }, "followersCount": { "type": "integer", "minimum": 0, "description": "number of followers of this actor, as seen by this instance" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }, "Account": { "allOf": [ { "$ref": "#/components/schemas/Actor" }, { "properties": { "userId": { "description": "object id for the user tied to this account", "nullable": true, "allOf": [ { "$ref": "#/components/schemas/User/properties/id" } ] }, "displayName": { "type": "string", "description": "editable name of the account, displayed in its representations", "minLength": 3, "maxLength": 120 }, "description": { "type": "string", "nullable": true, "description": "text or bio displayed on the account's profile" } } } ] }, "UserViewingVideo": { "required": [ "currentTime" ], "properties": { "currentTime": { "type": "integer", "format": "seconds", "description": "timestamp within the video, in seconds", "example": 5 }, "viewEvent": { "type": "string", "enum": [ "seek" ], "description": "Event since last viewing call:\n * `seek` - If the user seeked the video\n" }, "sessionId": { "type": "string", "description": "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.\n" }, "client": { "type": "string", "description": "Client software used to watch the video. For example \"Firefox\", \"PeerTube Approval Android\", etc.\n" }, "device": { "description": "Device used to watch the video. For example \"desktop\", \"mobile\", \"smarttv\", etc.\n", "allOf": [ { "$ref": "#/components/schemas/VideoStatsUserAgentDevice" } ] }, "operatingSystem": { "type": "string", "description": "Operating system used to watch the video. For example \"Windows\", \"Ubuntu\", etc.\n" } } }, "VideoStatsOverall": { "properties": { "averageWatchTime": { "type": "number" }, "totalWatchTime": { "type": "number" }, "viewersPeak": { "type": "number" }, "totalViewers": { "type": "number" }, "viewersPeakDate": { "type": "string", "format": "date-time" }, "countries": { "type": "array", "items": { "type": "object", "properties": { "isoCode": { "type": "string" }, "viewers": { "type": "number" } } } }, "subdivisions": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "viewers": { "type": "number" } } } } } }, "VideoStatsUserAgentDevice": { "enum": [ "console", "embedded", "mobile", "smarttv", "tablet", "wearable", "xr", "desktop" ] }, "VideoStatsUserAgent": { "properties": { "clients": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "viewers": { "type": "number" } } } }, "devices": { "type": "array", "items": { "type": "object", "properties": { "name": { "$ref": "#/components/schemas/VideoStatsUserAgentDevice" }, "viewers": { "type": "number" } } } }, "operatingSystem": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "viewers": { "type": "number" } } } } } }, "VideoStatsRetention": { "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "second": { "type": "number" }, "retentionPercent": { "type": "number" } } } } } }, "VideoStatsTimeserie": { "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "date": { "type": "string" }, "value": { "type": "number" } } } } } }, "ServerConfig": { "properties": { "instance": { "type": "object", "properties": { "name": { "type": "string" }, "shortDescription": { "type": "string" }, "defaultClientRoute": { "type": "string" }, "isNSFW": { "type": "boolean" }, "defaultNSFWPolicy": { "type": "string" }, "serverCountry": { "type": "string" }, "defaultLanguage": { "type": "string" }, "support": { "type": "object", "properties": { "text": { "type": "string" } } }, "social": { "type": "object", "properties": { "externalLink": { "type": "string" }, "mastodonLink": { "type": "string" }, "blueskyLink": { "type": "string" }, "xLink": { "type": "string" } } }, "customizations": { "type": "object", "properties": { "javascript": { "type": "string" }, "css": { "type": "string" } } }, "avatars": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } }, "banners": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } } } }, "search": { "type": "object", "properties": { "remoteUri": { "type": "object", "properties": { "users": { "type": "boolean" }, "anonymous": { "type": "boolean" } } } } }, "plugin": { "type": "object", "properties": { "registered": { "type": "array", "items": { "type": "string" } } } }, "theme": { "type": "object", "properties": { "registered": { "type": "array", "items": { "type": "string" } } } }, "email": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "contactForm": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "serverVersion": { "type": "string" }, "serverCommit": { "type": "string" }, "signup": { "type": "object", "properties": { "allowed": { "type": "boolean" }, "allowedForCurrentIP": { "type": "boolean" }, "requiresEmailVerification": { "type": "boolean" } } }, "transcoding": { "type": "object", "properties": { "hls": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "web_videos": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "enabledResolutions": { "type": "array", "items": { "$ref": "#/components/schemas/VideoResolutionSet" } } } }, "import": { "type": "object", "properties": { "videos": { "type": "object", "properties": { "http": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "torrent": { "type": "object", "properties": { "enabled": { "type": "boolean" } } } } }, "videoChannelSynchronization": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "users": { "type": "object", "properties": { "enabled": { "type": "boolean" } } } } }, "export": { "type": "object", "properties": { "users": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "exportExpiration": { "type": "number", "description": "In milliseconds" }, "maxUserVideoQuota": { "type": "number", "description": "In bytes" } } } } }, "autoBlacklist": { "type": "object", "properties": { "videos": { "type": "object", "properties": { "ofUsers": { "type": "object", "properties": { "enabled": { "type": "boolean" } } } } } } }, "avatar": { "type": "object", "properties": { "file": { "type": "object", "properties": { "size": { "type": "object", "properties": { "max": { "type": "integer" } } } } }, "extensions": { "type": "array", "items": { "type": "string" } } } }, "video": { "type": "object", "properties": { "image": { "type": "object", "properties": { "extensions": { "type": "array", "items": { "type": "string" } }, "size": { "type": "object", "properties": { "max": { "type": "integer" } } } } }, "file": { "type": "object", "properties": { "extensions": { "type": "array", "items": { "type": "string" } } } } } }, "videoCaption": { "type": "object", "properties": { "file": { "type": "object", "properties": { "size": { "type": "object", "properties": { "max": { "type": "integer" } } }, "extensions": { "type": "array", "items": { "type": "string" } } } } } }, "user": { "type": "object", "properties": { "videoQuota": { "type": "integer", "description": "In bytes", "example": 16810141515 }, "videoQuotaDaily": { "type": "integer", "description": "In bytes", "example": 1681014151 } } }, "trending": { "type": "object", "properties": { "videos": { "type": "object", "properties": { "intervalDays": { "type": "integer" } } } } }, "tracker": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "followings": { "type": "object", "properties": { "instance": { "type": "object", "properties": { "autoFollowIndex": { "type": "object", "properties": { "indexUrl": { "type": "string", "format": "url" } } } } } } }, "federation": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "homepage": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "openTelemetry": { "type": "object", "description": "PeerTube >= 6.1", "properties": { "metrics": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "playbackStatsInterval": { "type": "number", "description": "Milliseconds" } } } } }, "views": { "type": "object", "description": "PeerTube >= 6.1", "properties": { "views": { "type": "object", "properties": { "watchingInterval": { "type": "object", "properties": { "anonymous": { "type": "number", "description": "Milliseconds" }, "users": { "type": "number", "description": "Milliseconds" } } } } } } } } }, "SendClientLog": { "properties": { "message": { "type": "string" }, "url": { "type": "string", "description": "URL of the current user page" }, "level": { "enum": [ "error", "warn" ] }, "stackTrace": { "type": "string", "description": "Stack trace of the error if there is one" }, "userAgent": { "type": "string", "description": "User agent of the web browser that sends the message" }, "meta": { "type": "string", "description": "Additional information regarding this log" } }, "required": [ "message", "url", "level" ] }, "ServerStats": { "properties": { "totalUsers": { "type": "number" }, "totalDailyActiveUsers": { "type": "number" }, "totalWeeklyActiveUsers": { "type": "number" }, "totalMonthlyActiveUsers": { "type": "number" }, "totalModerators": { "type": "number", "description": "**PeerTube >= 6.1** Value is null if the admin disabled total moderators stats" }, "totalAdmins": { "type": "number", "description": "**PeerTube >= 6.1** Value is null if the admin disabled total admins stats" }, "totalLocalVideos": { "type": "number" }, "totalLocalVideoViews": { "type": "number", "description": "Total video views made on the instance" }, "totalLocalVideoComments": { "type": "number", "description": "Total comments made by local users" }, "totalLocalVideoFilesSize": { "type": "number" }, "totalVideos": { "type": "number" }, "totalVideoComments": { "type": "number" }, "totalLocalVideoChannels": { "type": "number" }, "totalLocalDailyActiveVideoChannels": { "type": "number" }, "totalLocalWeeklyActiveVideoChannels": { "type": "number" }, "totalLocalMonthlyActiveVideoChannels": { "type": "number" }, "totalLocalPlaylists": { "type": "number" }, "totalInstanceFollowers": { "type": "number" }, "totalInstanceFollowing": { "type": "number" }, "videosRedundancy": { "type": "array", "items": { "type": "object", "properties": { "strategy": { "type": "string" }, "totalSize": { "type": "number" }, "totalUsed": { "type": "number" }, "totalVideoFiles": { "type": "number" }, "totalVideos": { "type": "number" } } } }, "totalActivityPubMessagesProcessed": { "type": "number" }, "totalActivityPubMessagesSuccesses": { "type": "number" }, "totalActivityPubMessagesErrors": { "type": "number" }, "activityPubMessagesProcessedPerSecond": { "type": "number" }, "totalActivityPubMessagesWaiting": { "type": "number" }, "averageRegistrationRequestResponseTimeMs": { "type": "number", "description": "**PeerTube >= 6.1** Value is null if the admin disabled registration requests stats" }, "totalRegistrationRequestsProcessed": { "type": "number", "description": "**PeerTube >= 6.1** Value is null if the admin disabled registration requests stats" }, "totalRegistrationRequests": { "type": "number", "description": "**PeerTube >= 6.1** Value is null if the admin disabled registration requests stats" }, "averageAbuseResponseTimeMs": { "type": "number", "description": "**PeerTube >= 6.1** Value is null if the admin disabled abuses stats" }, "totalAbusesProcessed": { "type": "number", "description": "**PeerTube >= 6.1** Value is null if the admin disabled abuses stats" }, "totalAbuses": { "type": "number", "description": "**PeerTube >= 6.1** Value is null if the admin disabled abuses stats" } } }, "ServerConfigAbout": { "properties": { "instance": { "type": "object", "properties": { "name": { "type": "string" }, "shortDescription": { "type": "string" }, "description": { "type": "string" }, "terms": { "type": "string" }, "codeOfConduct": { "type": "string" }, "hardwareInformation": { "type": "string" }, "creationReason": { "type": "string" }, "moderationInformation": { "type": "string" }, "administrator": { "type": "string" }, "maintenanceLifetime": { "type": "string" }, "businessModel": { "type": "string" }, "languages": { "type": "array", "items": { "type": "string" } }, "categories": { "type": "array", "items": { "type": "integer" } }, "avatars": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } }, "banners": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } } } } } }, "ServerConfigCustom": { "properties": { "instance": { "type": "object", "properties": { "name": { "type": "string" }, "shortDescription": { "type": "string" }, "description": { "type": "string" }, "terms": { "type": "string" }, "codeOfConduct": { "type": "string" }, "creationReason": { "type": "string" }, "moderationInformation": { "type": "string" }, "administrator": { "type": "string" }, "maintenanceLifetime": { "type": "string" }, "businessModel": { "type": "string" }, "hardwareInformation": { "type": "string" }, "languages": { "type": "array", "items": { "type": "string" } }, "categories": { "type": "array", "items": { "type": "number" } }, "isNSFW": { "type": "boolean" }, "defaultNSFWPolicy": { "type": "string" }, "serverCountry": { "type": "string" }, "support": { "type": "object", "properties": { "text": { "type": "string" } } }, "social": { "type": "object", "properties": { "externalLink": { "type": "string" }, "mastodonLink": { "type": "string" }, "blueskyLink": { "type": "string" }, "xLink": { "type": "string" } } }, "defaultClientRoute": { "type": "string" }, "customizations": { "type": "object", "properties": { "javascript": { "type": "string" }, "css": { "type": "string" } } } } }, "theme": { "type": "object", "properties": { "default": { "type": "string" } } }, "services": { "type": "object", "properties": { "twitter": { "type": "object", "properties": { "username": { "type": "string" } } } } }, "cache": { "type": "object", "properties": { "previews": { "type": "object", "properties": { "size": { "type": "integer" } } }, "captions": { "type": "object", "properties": { "size": { "type": "integer" } } } } }, "signup": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "limit": { "type": "integer" }, "requiresEmailVerification": { "type": "boolean" } } }, "admin": { "type": "object", "properties": { "email": { "type": "string", "format": "email" } } }, "contactForm": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "user": { "type": "object", "description": "Settings that apply to new users, if registration is enabled", "properties": { "videoQuota": { "type": "integer", "example": 16810141515 }, "videoQuotaDaily": { "type": "integer", "example": 1681014151 } } }, "transcoding": { "type": "object", "description": "Settings pertaining to transcoding jobs", "properties": { "enabled": { "type": "boolean" }, "originalFile": { "type": "object", "properties": { "keep": { "type": "boolean" } } }, "allowAdditionalExtensions": { "type": "boolean", "description": "Allow your users to upload .mkv, .mov, .avi, .wmv, .flv, .f4v, .3g2, .3gp, .mts, m2ts, .mxf, .nut videos" }, "allowAudioFiles": { "type": "boolean", "description": "If a user uploads an audio file, PeerTube will create a video by merging the preview file and the audio file" }, "threads": { "type": "integer", "description": "Amount of threads used by ffmpeg for 1 transcoding job" }, "concurrency": { "type": "number", "description": "Amount of transcoding jobs to execute in parallel" }, "profile": { "type": "string", "enum": [ "default" ], "description": "New profiles can be added by plugins ; available in core PeerTube: 'default'.\n" }, "resolutions": { "type": "object", "description": "Resolutions to transcode _new videos_ to", "properties": { "0p": { "type": "boolean" }, "144p": { "type": "boolean" }, "240p": { "type": "boolean" }, "360p": { "type": "boolean" }, "480p": { "type": "boolean" }, "720p": { "type": "boolean" }, "1080p": { "type": "boolean" }, "1440p": { "type": "boolean" }, "2160p": { "type": "boolean" } } }, "web_videos": { "type": "object", "description": "Web Video specific settings", "properties": { "enabled": { "type": "boolean" } } }, "hls": { "type": "object", "description": "HLS specific settings", "properties": { "enabled": { "type": "boolean" }, "splitAudioAndVideo": { "type": "boolean" } } } } }, "import": { "type": "object", "properties": { "videos": { "type": "object", "properties": { "http": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "torrent": { "type": "object", "properties": { "enabled": { "type": "boolean" } } } } }, "video_channel_synchronization": { "type": "object", "properties": { "enabled": { "type": "boolean" } } } } }, "autoBlacklist": { "type": "object", "properties": { "videos": { "type": "object", "properties": { "ofUsers": { "type": "object", "properties": { "enabled": { "type": "boolean" } } } } } } }, "followers": { "type": "object", "properties": { "instance": { "type": "object", "properties": { "enabled": { "type": "boolean" }, "manualApproval": { "type": "boolean" } } } } }, "storyboard": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "defaults": { "type": "object", "properties": { "publish": { "type": "object", "properties": { "downloadEnabled": { "type": "boolean" }, "commentsPolicy": { "$ref": "#/components/schemas/VideoCommentsPolicySet" }, "privacy": { "$ref": "#/components/schemas/VideoPrivacySet" }, "licence": { "$ref": "#/components/schemas/VideoLicenceSet" } } }, "p2p": { "type": "object", "properties": { "webapp": { "type": "object", "properties": { "enabled": { "type": "boolean" } } }, "embed": { "type": "object", "properties": { "enabled": { "type": "boolean" } } } } }, "player": { "type": "object", "properties": { "autoPlay": { "type": "boolean" } } } } } } }, "CustomHomepage": { "properties": { "content": { "type": "string" } } }, "Follow": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "follower": { "$ref": "#/components/schemas/Actor" }, "following": { "$ref": "#/components/schemas/Actor" }, "score": { "type": "number", "description": "score reflecting the reachability of the actor, with steps of `10` and a base score of `1000`." }, "state": { "type": "string", "enum": [ "pending", "accepted" ] }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }, "PredefinedAbuseReasons": { "description": "Reason categories that help triage reports", "type": "array", "maxItems": 8, "items": { "type": "string", "enum": [ "violentOrAbusive", "hatefulOrAbusive", "spamOrMisleading", "privacy", "rights", "serverRules", "thumbnails", "captions" ] } }, "Job": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "state": { "type": "string", "enum": [ "active", "completed", "failed", "waiting", "delayed" ] }, "type": { "type": "string", "enum": [ "activitypub-http-unicast", "activitypub-http-broadcast", "activitypub-http-fetcher", "activitypub-follow", "video-file-import", "video-transcoding", "email", "video-import", "videos-views-stats", "activitypub-refresher", "video-redundancy", "video-channel-import" ] }, "data": { "type": "object", "additionalProperties": true }, "error": { "type": "object", "additionalProperties": true }, "createdAt": { "type": "string", "format": "date-time" }, "finishedOn": { "type": "string", "format": "date-time" }, "processedOn": { "type": "string", "format": "date-time" } } }, "AddUserResponse": { "properties": { "user": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "account": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" } } } } } } }, "VideoUploadRequestCommon": { "properties": { "name": { "description": "Video name", "type": "string", "example": "What is PeerTube?", "minLength": 3, "maxLength": 120 }, "channelId": { "description": "Channel id that will contain this video", "type": "integer", "example": 3, "minimum": 1 }, "privacy": { "$ref": "#/components/schemas/VideoPrivacySet" }, "category": { "$ref": "#/components/schemas/VideoCategorySet" }, "licence": { "$ref": "#/components/schemas/VideoLicenceSet" }, "language": { "$ref": "#/components/schemas/VideoLanguageSet" }, "description": { "description": "Video description", "type": "string", "example": "**[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": { "description": "Whether or not we wait transcoding before publish the video", "type": "boolean" }, "generateTranscription": { "description": "**PeerTube >= 6.2** If enabled by the admin, automatically generate a subtitle of the video", "type": "boolean" }, "support": { "description": "A text tell the audience how to support the video creator", "example": "Please support our work on https://soutenir.framasoft.org/en/ <3", "type": "string" }, "nsfw": { "description": "Whether or not this video contains sensitive content", "type": "boolean" }, "nsfwSummary": { "description": "More information about the sensitive content of the video" }, "nsfwFlags": { "$ref": "#/components/schemas/NSFWFlag" }, "tags": { "description": "Video tags (maximum 5 tags each between 2 and 30 characters)", "type": "array", "minItems": 1, "maxItems": 5, "uniqueItems": true, "example": [ "framasoft", "peertube" ], "items": { "type": "string", "minLength": 2, "maxLength": 30 } }, "commentsPolicy": { "$ref": "#/components/schemas/VideoCommentsPolicySet" }, "downloadEnabled": { "description": "Enable or disable downloading for this video", "type": "boolean" }, "originallyPublishedAt": { "description": "Date when the content was originally published", "type": "string", "format": "date-time" }, "scheduleUpdate": { "$ref": "#/components/schemas/VideoScheduledUpdate" }, "thumbnailfile": { "description": "Video thumbnail file", "type": "string", "format": "binary" }, "previewfile": { "description": "Deprecated in PeerTube v8.1, use thumbnailfile instead", "deprecated": true, "type": "string", "format": "binary" }, "videoPasswords": { "$ref": "#/components/schemas/AddVideoPasswords" } }, "required": [ "channelId", "name" ] }, "VideoUploadRequestLegacy": { "allOf": [ { "$ref": "#/components/schemas/VideoUploadRequestCommon" }, { "type": "object", "required": [ "videofile" ], "properties": { "videofile": { "description": "Video file", "type": "string", "format": "binary" } } } ] }, "VideoUploadRequestResumable": { "allOf": [ { "$ref": "#/components/schemas/VideoUploadRequestCommon" }, { "type": "object", "required": [ "filename" ], "properties": { "filename": { "description": "Video filename including extension", "type": "string", "format": "filename", "example": "what_is_peertube.mp4" }, "thumbnailfile": { "description": "Video thumbnail file", "type": "string", "format": "binary" }, "previewfile": { "description": "Deprecated in PeerTube v8.1, use thumbnailfile instead", "deprecated": true, "type": "string", "format": "binary" } } } ] }, "VideoUploadResponse": { "properties": { "video": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/Video/properties/id" }, "uuid": { "$ref": "#/components/schemas/Video/properties/uuid" }, "shortUUID": { "$ref": "#/components/schemas/Video/properties/shortUUID" } } } } }, "VideoReplaceSourceRequestResumable": { "properties": { "filename": { "description": "Video filename including extension", "type": "string", "format": "filename", "example": "what_is_peertube.mp4" } } }, "UserImportResumable": { "properties": { "filename": { "description": "Archive filename including extension", "type": "string", "format": "filename", "example": "user-export-6-2024-02-09T10_12_11.682Z" } } }, "CommentThreadResponse": { "properties": { "total": { "type": "integer", "description": "Total threads (included deleted ones) on this video" }, "totalNotDeletedComments": { "type": "integer", "description": "Total not-deleted threads (included deleted ones) on this video" }, "data": { "type": "array", "maxItems": 100, "items": { "$ref": "#/components/schemas/VideoComment" } } } }, "CommentThreadPostResponse": { "properties": { "comment": { "$ref": "#/components/schemas/VideoComment" } } }, "VideoTokenResponse": { "properties": { "files": { "type": "object", "properties": { "token": { "type": "string" }, "expires": { "type": "string", "format": "date-time" } } } } }, "VideoListResponse": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "maxItems": 100, "items": { "$ref": "#/components/schemas/Video" } } } }, "ChannelActivityListResponse": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "account": { "nullable": true, "description": "The account may have been deleted", "$ref": "#/components/schemas/AccountSummary" }, "action": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/VideoChannelActivityAction" }, "label": { "type": "string" } } }, "targetType": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/VideoChannelActivityTarget" }, "label": { "type": "string" } } }, "details": { "type": "object", "additionalProperties": true }, "createdAt": { "type": "string", "format": "date-time" }, "channel": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "name": { "type": "string" }, "displayName": { "type": "string" }, "url": { "type": "string", "format": "url" } } }, "video": { "nullable": true, "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "name": { "type": "string" }, "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "shortUUID": { "$ref": "#/components/schemas/shortUUID" }, "url": { "type": "string", "format": "url" }, "isLive": { "type": "boolean" } } }, "videoImport": { "nullable": true, "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "name": { "type": "string" }, "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "shortUUID": { "$ref": "#/components/schemas/shortUUID" }, "url": { "type": "string", "format": "url" }, "targetUrl": { "type": "string", "format": "uri" } } }, "playlist": { "nullable": true, "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "name": { "type": "string" }, "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "shortUUID": { "$ref": "#/components/schemas/shortUUID" }, "url": { "type": "string", "format": "url" } } }, "channelSync": { "nullable": true, "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "externalChannelUrl": { "type": "string", "format": "uri" } } } } } } } }, "UserNotificationSettings": { "properties": { "abuseAsModerator": { "$ref": "#/components/schemas/NotificationSettingValue" }, "videoAutoBlacklistAsModerator": { "$ref": "#/components/schemas/NotificationSettingValue" }, "newUserRegistration": { "$ref": "#/components/schemas/NotificationSettingValue" }, "newVideoFromSubscription": { "$ref": "#/components/schemas/NotificationSettingValue" }, "blacklistOnMyVideo": { "$ref": "#/components/schemas/NotificationSettingValue" }, "myVideoPublished": { "$ref": "#/components/schemas/NotificationSettingValue" }, "myVideoImportFinished": { "$ref": "#/components/schemas/NotificationSettingValue" }, "commentMention": { "$ref": "#/components/schemas/NotificationSettingValue" }, "newCommentOnMyVideo": { "$ref": "#/components/schemas/NotificationSettingValue" }, "newFollow": { "$ref": "#/components/schemas/NotificationSettingValue" }, "newInstanceFollower": { "$ref": "#/components/schemas/NotificationSettingValue" }, "autoInstanceFollowing": { "$ref": "#/components/schemas/NotificationSettingValue" }, "abuseStateChange": { "$ref": "#/components/schemas/NotificationSettingValue" }, "abuseNewMessage": { "$ref": "#/components/schemas/NotificationSettingValue" }, "newPeerTubeVersion": { "$ref": "#/components/schemas/NotificationSettingValue" }, "newPluginVersion": { "$ref": "#/components/schemas/NotificationSettingValue" }, "myVideoStudioEditionFinished": { "$ref": "#/components/schemas/NotificationSettingValue" }, "myVideoTranscriptionGenerated": { "$ref": "#/components/schemas/NotificationSettingValue" } } }, "User": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "username": { "$ref": "#/components/schemas/username" }, "email": { "type": "string", "format": "email", "description": "The user email" }, "emailVerified": { "type": "boolean", "description": "Has the user confirmed their email address?" }, "emailPublic": { "type": "boolean", "description": "Has the user accepted to display the email publicly?" }, "nsfwPolicy": { "$ref": "#/components/schemas/NSFWPolicy" }, "nsfwFlagsDisplayed": { "$ref": "#/components/schemas/NSFWFlag" }, "nsfwFlagsHidden": { "$ref": "#/components/schemas/NSFWFlag" }, "nsfwFlagsWarned": { "$ref": "#/components/schemas/NSFWFlag" }, "nsfwFlagsBlurred": { "$ref": "#/components/schemas/NSFWFlag" }, "adminFlags": { "$ref": "#/components/schemas/UserAdminFlags" }, "autoPlayNextVideo": { "type": "boolean", "description": "Automatically start playing the upcoming video after the currently playing video" }, "autoPlayNextVideoPlaylist": { "type": "boolean", "description": "Automatically start playing the video on the playlist after the currently playing video" }, "autoPlayVideo": { "type": "boolean", "description": "Automatically start playing the video on the watch page" }, "p2pEnabled": { "type": "boolean", "description": "whether to enable P2P in the player or not" }, "videosHistoryEnabled": { "type": "boolean", "description": "whether to keep track of watched history or not" }, "videoLanguages": { "type": "array", "items": { "type": "string" }, "description": "list of languages to filter videos down to" }, "language": { "type": "string", "description": "default language for this user" }, "videoQuota": { "type": "integer", "description": "The user video quota in bytes", "example": -1 }, "videoQuotaDaily": { "type": "integer", "description": "The user daily video quota in bytes", "example": -1 }, "role": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/UserRole" }, "label": { "type": "string", "enum": [ "User", "Moderator", "Administrator" ] } } }, "theme": { "type": "string", "description": "Theme enabled by this user" }, "account": { "$ref": "#/components/schemas/Account" }, "notificationSettings": { "$ref": "#/components/schemas/UserNotificationSettings" }, "videoChannels": { "type": "array", "items": { "$ref": "#/components/schemas/VideoChannel" } }, "blocked": { "type": "boolean" }, "blockedReason": { "type": "string" }, "noInstanceConfigWarningModal": { "type": "boolean" }, "noAccountSetupWarningModal": { "type": "boolean" }, "noWelcomeModal": { "type": "boolean" }, "createdAt": { "type": "string" }, "pluginAuth": { "type": "string", "description": "Auth plugin to use to authenticate the user" }, "lastLoginDate": { "type": "string", "format": "date-time" }, "twoFactorEnabled": { "type": "boolean", "description": "Whether the user has enabled two-factor authentication or not" }, "newFeaturesInfoRead": { "type": "number", "description": "New features information the user has read" } } }, "UserWithStats": { "allOf": [ { "$ref": "#/components/schemas/User" }, { "properties": { "videosCount": { "type": "integer", "description": "Count of videos published" }, "abusesCount": { "type": "integer", "description": "Count of reports/abuses of which the user is a target" }, "abusesAcceptedCount": { "type": "integer", "description": "Count of reports/abuses created by the user and accepted/acted upon by the moderation team" }, "abusesCreatedCount": { "type": "integer", "description": "Count of reports/abuses created by the user" }, "videoCommentsCount": { "type": "integer", "description": "Count of comments published" } } } ] }, "AddUser": { "properties": { "username": { "$ref": "#/components/schemas/username" }, "password": { "$ref": "#/components/schemas/password" }, "email": { "type": "string", "format": "email", "description": "The user email" }, "videoQuota": { "type": "integer", "description": "The user video quota in bytes", "example": -1 }, "videoQuotaDaily": { "type": "integer", "description": "The user daily video quota in bytes", "example": -1 }, "channelName": { "$ref": "#/components/schemas/usernameChannel" }, "role": { "$ref": "#/components/schemas/UserRole" }, "adminFlags": { "$ref": "#/components/schemas/UserAdminFlags" } }, "required": [ "username", "password", "email", "role" ] }, "UpdateUser": { "properties": { "email": { "description": "The updated email of the user", "allOf": [ { "$ref": "#/components/schemas/User/properties/email" } ] }, "emailVerified": { "type": "boolean", "description": "Set the email as verified" }, "videoQuota": { "type": "integer", "description": "The updated video quota of the user in bytes" }, "videoQuotaDaily": { "type": "integer", "description": "The updated daily video quota of the user in bytes" }, "pluginAuth": { "type": "string", "nullable": true, "description": "The auth plugin to use to authenticate the user", "example": "peertube-plugin-auth-saml2" }, "role": { "$ref": "#/components/schemas/UserRole" }, "adminFlags": { "$ref": "#/components/schemas/UserAdminFlags" }, "password": { "$ref": "#/components/schemas/password" } } }, "UpdateMe": { "properties": { "password": { "$ref": "#/components/schemas/password" }, "currentPassword": { "$ref": "#/components/schemas/password" }, "email": { "description": "new email used for login and service communications", "allOf": [ { "$ref": "#/components/schemas/User/properties/email" } ] }, "displayName": { "type": "string", "description": "new name of the user in its representations", "minLength": 3, "maxLength": 120 }, "nsfwPolicy": { "type": "string", "description": "new NSFW display policy", "enum": [ "true", "false", "both" ] }, "nsfwFlagsDisplayed": { "$ref": "#/components/schemas/NSFWFlag" }, "nsfwFlagsHidden": { "$ref": "#/components/schemas/NSFWFlag" }, "nsfwFlagsWarned": { "$ref": "#/components/schemas/NSFWFlag" }, "nsfwFlagsBlurred": { "$ref": "#/components/schemas/NSFWFlag" }, "p2pEnabled": { "type": "boolean", "description": "whether to enable P2P in the player or not" }, "autoPlayVideo": { "type": "boolean", "description": "new preference regarding playing videos automatically" }, "autoPlayNextVideo": { "type": "boolean", "description": "new preference regarding playing following videos automatically" }, "autoPlayNextVideoPlaylist": { "type": "boolean", "description": "new preference regarding playing following playlist videos automatically" }, "videosHistoryEnabled": { "type": "boolean", "description": "whether to keep track of watched history or not" }, "videoLanguages": { "type": "array", "items": { "type": "string" }, "description": "list of languages to filter videos down to" }, "language": { "type": "string", "description": "default language for this user" }, "theme": { "type": "string" }, "noInstanceConfigWarningModal": { "type": "boolean" }, "noAccountSetupWarningModal": { "type": "boolean" }, "noWelcomeModal": { "type": "boolean" } } }, "GetMeVideoRating": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "rating": { "type": "string", "enum": [ "like", "dislike", "none" ], "description": "Rating of the video" } }, "required": [ "id", "rating" ] }, "VideoRating": { "properties": { "video": { "$ref": "#/components/schemas/Video" }, "rating": { "type": "string", "enum": [ "like", "dislike", "none" ], "description": "Rating of the video" } }, "required": [ "video", "rating" ] }, "RegisterUser": { "properties": { "username": { "description": "immutable name of the user, used to find or mention its actor", "allOf": [ { "$ref": "#/components/schemas/username" } ] }, "password": { "$ref": "#/components/schemas/password" }, "email": { "type": "string", "format": "email", "description": "email of the user, used for login or service communications" }, "displayName": { "type": "string", "description": "editable name of the user, displayed in its representations", "minLength": 1, "maxLength": 120 }, "channel": { "type": "object", "description": "channel base information used to create the first channel of the user", "properties": { "name": { "$ref": "#/components/schemas/usernameChannel" }, "displayName": { "type": "string" } } } }, "required": [ "username", "password", "email" ] }, "UserRegistrationRequest": { "allOf": [ { "$ref": "#/components/schemas/RegisterUser" }, { "type": "object", "properties": { "registrationReason": { "type": "string", "description": "reason for the user to register on the instance" } }, "required": [ "registrationReason" ] } ] }, "UserRegistrationAcceptOrReject": { "type": "object", "properties": { "moderationResponse": { "type": "string", "description": "Moderation response to send to the user" }, "preventEmailDelivery": { "type": "boolean", "description": "Set it to true if you don't want PeerTube to send an email to the user" } }, "required": [ "moderationResponse" ] }, "UserRegistration": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "state": { "type": "object", "properties": { "id": { "type": "integer", "enum": [ 1, 2, 3 ], "description": "The registration state (Pending = `1`, Rejected = `2`, Accepted = `3`)" }, "label": { "type": "string" } } }, "registrationReason": { "type": "string" }, "moderationResponse": { "type": "string", "nullable": true }, "username": { "type": "string" }, "email": { "type": "string", "format": "email" }, "emailVerified": { "type": "boolean" }, "accountDisplayName": { "type": "string" }, "channelHandle": { "type": "string" }, "channelDisplayName": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "user": { "type": "object", "nullable": true, "description": "If the registration has been accepted, this is a partial user object created by the registration", "properties": { "id": { "$ref": "#/components/schemas/id" } } } } }, "OAuthClient": { "properties": { "client_id": { "type": "string", "pattern": "/^[a-z0-9]$/", "maxLength": 32, "minLength": 32, "example": "v1ikx5hnfop4mdpnci8nsqh93c45rldf" }, "client_secret": { "type": "string", "pattern": "/^[a-zA-Z0-9]$/", "maxLength": 32, "minLength": 32, "example": "AjWiOapPltI6EnsWQwlFarRtLh4u8tDt" } } }, "OAuthToken-password": { "allOf": [ { "$ref": "#/components/schemas/OAuthClient" }, { "type": "object", "properties": { "grant_type": { "type": "string", "enum": [ "password" ] }, "username": { "$ref": "#/components/schemas/User/properties/username" }, "password": { "$ref": "#/components/schemas/password" }, "externalAuthToken": { "type": "string", "description": "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." } } } ], "required": [ "client_id", "client_secret", "grant_type", "username" ] }, "OAuthToken-refresh_token": { "allOf": [ { "$ref": "#/components/schemas/OAuthClient" }, { "type": "object", "properties": { "grant_type": { "type": "string", "enum": [ "refresh_token" ] }, "refresh_token": { "type": "string", "example": "2e0d675df9fc96d2e4ec8a3ebbbf45eca9137bb7" } } } ], "required": [ "client_id", "client_secret", "grant_type", "refresh_token" ] }, "VideoChannel": { "allOf": [ { "$ref": "#/components/schemas/Actor" }, { "type": "object", "properties": { "displayName": { "type": "string", "description": "editable name of the channel, displayed in its representations", "example": "Videos of Framasoft", "minLength": 1, "maxLength": 120 }, "description": { "type": "string", "nullable": true, "example": "Videos made with <3 by Framasoft", "minLength": 3, "maxLength": 1000 }, "support": { "type": "string", "nullable": true, "description": "text shown by default on all videos of this channel, to tell the audience how to support it", "example": "Please support our work on https://soutenir.framasoft.org/en/ <3", "minLength": 3, "maxLength": 1000 }, "isLocal": { "type": "boolean" }, "updatedAt": { "type": "string", "format": "date-time" }, "banners": { "type": "array", "items": { "$ref": "#/components/schemas/ActorImage" } }, "ownerAccount": { "$ref": "#/components/schemas/Account" } } } ] }, "VideoChannelEdit": { "properties": { "displayName": { "description": "Channel display name" }, "description": { "description": "Channel description" }, "support": { "description": "How to support/fund the channel" } } }, "VideoChannelCreate": { "allOf": [ { "$ref": "#/components/schemas/VideoChannelEdit" }, { "properties": { "name": { "description": "username of the channel to create", "allOf": [ { "$ref": "#/components/schemas/usernameChannel" } ] } } } ], "required": [ "name", "displayName" ] }, "VideoChannelUpdate": { "allOf": [ { "$ref": "#/components/schemas/VideoChannelEdit" }, { "properties": { "bulkVideosSupportUpdate": { "type": "boolean", "description": "Update the support field for all videos of this channel" } } } ] }, "VideoChannelList": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "allOf": [ { "$ref": "#/components/schemas/VideoChannel" }, { "$ref": "#/components/schemas/Actor" } ] } } } }, "ImportVideosInChannelCreate": { "type": "object", "properties": { "externalChannelUrl": { "type": "string", "example": "https://youtube.com/c/UC_myfancychannel" }, "videoChannelSyncId": { "type": "integer", "description": "If part of a channel sync process, specify its id to assign video imports to this channel synchronization" } }, "required": [ "externalChannelUrl" ] }, "VideoChannelSync": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "state": { "type": "object", "properties": { "id": { "type": "integer", "example": 2 }, "label": { "type": "string", "example": "PROCESSING" } } }, "externalChannelUrl": { "type": "string", "example": "https://youtube.com/c/UC_myfancychannel" }, "createdAt": { "type": "string", "format": "date-time" }, "lastSyncAt": { "type": "string", "format": "date-time", "nullable": true }, "channel": { "$ref": "#/components/schemas/VideoChannel" } } }, "VideoChannelSyncList": { "type": "object", "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "allOf": [ { "$ref": "#/components/schemas/VideoChannelSync" } ] } } } }, "VideoChannelSyncCreate": { "type": "object", "properties": { "externalChannelUrl": { "type": "string", "example": "https://youtube.com/c/UC_myfancychannel" }, "videoChannelId": { "$ref": "#/components/schemas/id" } } }, "MRSSPeerLink": { "type": "object", "xml": { "name": "media:peerLink" }, "properties": { "href": { "type": "string", "xml": { "attribute": true } }, "type": { "type": "string", "enum": [ "application/x-bittorrent" ], "xml": { "attribute": true } } } }, "MRSSGroupContent": { "type": "object", "xml": { "name": "media:content" }, "properties": { "url": { "type": "string", "format": "url", "xml": { "attribute": true } }, "fileSize": { "type": "integer", "xml": { "attribute": true } }, "type": { "type": "string", "xml": { "attribute": true } }, "framerate": { "type": "integer", "xml": { "attribute": true } }, "duration": { "type": "integer", "xml": { "attribute": true } }, "height": { "type": "integer", "xml": { "attribute": true } }, "lang": { "type": "string", "xml": { "attribute": true } } } }, "VideoCommentsForXML": { "type": "array", "xml": { "wrapped": true, "name": "channel" }, "items": { "type": "object", "xml": { "name": "item" }, "properties": { "link": { "type": "string", "format": "url" }, "guid": { "type": "string" }, "pubDate": { "type": "string", "format": "date-time" }, "content:encoded": { "type": "string" }, "dc:creator": { "type": "string" } } } }, "VideosForXML": { "type": "array", "xml": { "wrapped": true, "name": "channel" }, "items": { "type": "object", "xml": { "name": "item" }, "properties": { "link": { "type": "string", "format": "url", "description": "video watch page URL" }, "guid": { "type": "string", "description": "video canonical URL" }, "pubDate": { "type": "string", "format": "date-time", "description": "video publication date" }, "description": { "type": "string", "description": "video description" }, "content:encoded": { "type": "string", "description": "video description" }, "dc:creator": { "type": "string", "description": "publisher user name" }, "media:category": { "type": "integer", "description": "video category (MRSS)" }, "media:community": { "type": "object", "description": "see [media:community](https://www.rssboard.org/media-rss#media-community) (MRSS)", "properties": { "media:statistics": { "type": "object", "properties": { "views": { "type": "integer", "xml": { "attribute": true } } } } } }, "media:embed": { "type": "object", "properties": { "url": { "type": "string", "format": "url", "description": "video embed path, relative to the canonical URL domain (MRSS)", "xml": { "attribute": true } } } }, "media:player": { "type": "object", "properties": { "url": { "type": "string", "format": "url", "description": "video watch path, relative to the canonical URL domain (MRSS)", "xml": { "attribute": true } } } }, "media:thumbnail": { "type": "object", "properties": { "url": { "type": "string", "format": "url", "xml": { "attribute": true } }, "height": { "type": "integer", "xml": { "attribute": true } }, "width": { "type": "integer", "xml": { "attribute": true } } } }, "media:title": { "type": "string", "description": "see [media:title](https://www.rssboard.org/media-rss#media-title) (MRSS). We only use `plain` titles." }, "media:description": { "type": "string" }, "media:rating": { "type": "string", "enum": [ "nonadult", "adult" ], "description": "see [media:rating](https://www.rssboard.org/media-rss#media-rating) (MRSS)" }, "enclosure": { "type": "object", "description": "main streamable file for the video", "properties": { "url": { "type": "string", "format": "url", "xml": { "attribute": true } }, "type": { "type": "string", "enum": [ "application/x-bittorrent" ], "xml": { "attribute": true } }, "length": { "type": "integer", "xml": { "attribute": true } } } }, "media:group": { "type": "array", "description": "list of streamable files for the video. see [media:peerLink](https://www.rssboard.org/media-rss#media-peerlink) and [media:content](https://www.rssboard.org/media-rss#media-content) or (MRSS)", "items": { "anyOf": [ { "$ref": "#/components/schemas/MRSSPeerLink" }, { "$ref": "#/components/schemas/MRSSGroupContent" } ] } } } } }, "NotificationSettingValue": { "type": "integer", "description": "Notification type. One of the following values, or a sum of multiple values:\n- `0` NONE\n- `1` WEB\n- `2` EMAIL\n" }, "NotificationType": { "type": "integer", "enum": [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22 ], "description": "Notification type. One of the following values:\n\n - `1` NEW_VIDEO_FROM_SUBSCRIPTION\n\n - `2` NEW_COMMENT_ON_MY_VIDEO\n\n - `3` NEW_ABUSE_FOR_MODERATORS\n\n - `4` BLACKLIST_ON_MY_VIDEO\n\n - `5` UNBLACKLIST_ON_MY_VIDEO\n\n - `6` MY_VIDEO_PUBLISHED\n\n - `7` MY_VIDEO_IMPORT_SUCCESS\n\n - `8` MY_VIDEO_IMPORT_ERROR\n\n - `9` NEW_USER_REGISTRATION\n\n - `10` NEW_FOLLOW\n\n - `11` COMMENT_MENTION\n\n - `12` VIDEO_AUTO_BLACKLIST_FOR_MODERATORS\n\n - `13` NEW_INSTANCE_FOLLOWER\n\n - `14` AUTO_INSTANCE_FOLLOWING\n\n - `15` ABUSE_STATE_CHANGE\n\n - `16` ABUSE_NEW_MESSAGE\n\n - `17` NEW_PLUGIN_VERSION\n\n - `18` NEW_PEERTUBE_VERSION\n\n - `19` MY_VIDEO_STUDIO_EDITION_FINISHED\n\n - `20` NEW_USER_REGISTRATION_REQUEST\n\n - `21` NEW_LIVE_FROM_SUBSCRIPTION\n\n - `22` MY_VIDEO_TRANSCRIPTION_GENERATED\n" }, "NewFeatureInfoType": { "type": "integer", "enum": [ 1 ], "description": "Represent a new feature that can be displayed to inform users. One of the following values:\n\n - `1` CHANNEL_COLLABORATION\n" }, "Notification": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "type": { "$ref": "#/components/schemas/NotificationType" }, "read": { "type": "boolean" }, "video": { "nullable": true, "allOf": [ { "$ref": "#/components/schemas/VideoInfo" }, { "type": "object", "properties": { "channel": { "$ref": "#/components/schemas/ActorInfo" } } } ] }, "videoImport": { "nullable": true, "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "video": { "nullable": true, "allOf": [ { "$ref": "#/components/schemas/VideoInfo" } ] }, "torrentName": { "type": "string", "nullable": true }, "magnetUri": { "$ref": "#/components/schemas/VideoImport/properties/magnetUri" }, "targetUri": { "type": "string", "format": "uri", "nullable": true } } }, "comment": { "nullable": true, "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "threadId": { "type": "integer" }, "video": { "$ref": "#/components/schemas/VideoInfo" }, "account": { "$ref": "#/components/schemas/ActorInfo" }, "heldForReview": { "type": "boolean" } } }, "videoAbuse": { "nullable": true, "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "video": { "allOf": [ { "$ref": "#/components/schemas/VideoInfo" } ] } } }, "videoBlacklist": { "nullable": true, "type": "object", "properties": { "id": { "$ref": "#/components/schemas/id" }, "video": { "allOf": [ { "$ref": "#/components/schemas/VideoInfo" } ] } } }, "account": { "nullable": true, "allOf": [ { "$ref": "#/components/schemas/ActorInfo" } ] }, "actorFollow": { "type": "object", "nullable": true, "properties": { "id": { "$ref": "#/components/schemas/id" }, "follower": { "$ref": "#/components/schemas/ActorInfo" }, "state": { "type": "string", "enum": [ "pending", "accepted" ] }, "following": { "type": "object", "properties": { "type": { "type": "string", "enum": [ "account", "channel", "instance" ] }, "name": { "type": "string" }, "displayName": { "type": "string" }, "host": { "type": "string", "format": "hostname" } } } } }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }, "NotificationListResponse": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "maxItems": 100, "items": { "$ref": "#/components/schemas/Notification" } } } }, "Plugin": { "properties": { "name": { "type": "string", "example": "peertube-plugin-auth-ldap" }, "type": { "type": "integer", "description": "- `1`: PLUGIN\n- `2`: THEME\n", "enum": [ 1, 2 ] }, "latestVersion": { "type": "string", "example": "0.0.3" }, "version": { "type": "string", "example": "0.0.1" }, "enabled": { "type": "boolean" }, "uninstalled": { "type": "boolean" }, "peertubeEngine": { "type": "string", "example": "2.2.0" }, "description": { "type": "string" }, "homepage": { "type": "string", "format": "url", "example": "https://framagit.org/framasoft/peertube/official-plugins/tree/master/peertube-plugin-auth-ldap" }, "settings": { "type": "object", "additionalProperties": true }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }, "PluginResponse": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "maxItems": 100, "items": { "$ref": "#/components/schemas/Plugin" } } } }, "LiveVideoUpdate": { "properties": { "saveReplay": { "type": "boolean" }, "replaySettings": { "$ref": "#/components/schemas/LiveVideoReplaySettings" }, "permanentLive": { "description": "User can stream multiple times in a permanent live", "type": "boolean" }, "latencyMode": { "description": "User can select live latency mode if enabled by the instance", "allOf": [ { "$ref": "#/components/schemas/LiveVideoLatencyMode" } ] }, "schedules": { "type": "array", "items": { "$ref": "#/components/schemas/LiveSchedule" } } } }, "LiveVideoResponse": { "properties": { "rtmpUrl": { "type": "string", "description": "Included in the response if an appropriate token is provided" }, "rtmpsUrl": { "type": "string", "description": "Included in the response if an appropriate token is provided" }, "streamKey": { "type": "string", "description": "RTMP stream key to use to stream into this live video. Included in the response if an appropriate token is provided" }, "saveReplay": { "type": "boolean" }, "replaySettings": { "$ref": "#/components/schemas/LiveVideoReplaySettings" }, "permanentLive": { "description": "User can stream multiple times in a permanent live", "type": "boolean" }, "latencyMode": { "description": "User can select live latency mode if enabled by the instance", "allOf": [ { "$ref": "#/components/schemas/LiveVideoLatencyMode" } ] }, "schedules": { "type": "array", "items": { "$ref": "#/components/schemas/LiveSchedule" } } } }, "LiveSchedule": { "properties": { "startAt": { "type": "string", "format": "date-time", "description": "Date when the stream is scheduled to air at" } } }, "TokenSession": { "properties": { "id": { "type": "integer" }, "currentSession": { "type": "boolean", "description": "Is this session the current one?" }, "loginDevice": { "type": "string", "description": "Device used to login" }, "loginIP": { "type": "string", "format": "ipv4", "description": "IP address used to login" }, "loginDate": { "type": "string", "format": "date-time", "description": "Date of the login" }, "lastActivityDevice": { "type": "string" }, "lastActivityIP": { "type": "string", "format": "ipv4" }, "lastActivityDate": { "type": "string", "format": "date-time" }, "createdAt": { "type": "string", "format": "date-time" } } }, "RequestTwoFactorResponse": { "properties": { "otpRequest": { "type": "object", "properties": { "requestToken": { "type": "string", "description": "The token to send to confirm this request" }, "secret": { "type": "string", "description": "The OTP secret" }, "uri": { "type": "string", "description": "The OTP URI" } } } } }, "VideoStudioCreateTask": { "type": "array", "items": { "anyOf": [ { "title": "cut", "type": "object", "properties": { "name": { "type": "string", "enum": [ "cut" ] }, "options": { "type": "object", "properties": { "start": { "type": "integer" }, "end": { "type": "integer" } } } } }, { "title": "add-intro", "type": "object", "properties": { "name": { "type": "string", "enum": [ "add-intro" ] }, "options": { "type": "object", "properties": { "file": { "type": "string", "format": "binary" } } } } }, { "title": "add-outro", "type": "object", "properties": { "name": { "type": "string", "enum": [ "add-outro" ] }, "options": { "type": "object", "properties": { "file": { "type": "string", "format": "binary" } } } } }, { "title": "add-watermark", "type": "object", "properties": { "name": { "type": "string", "enum": [ "add-watermark" ] }, "options": { "type": "object", "properties": { "file": { "type": "string", "format": "binary" } } } } } ] } }, "LiveVideoSessionResponse": { "properties": { "id": { "type": "integer" }, "startDate": { "type": "string", "format": "date-time", "description": "Start date of the live session" }, "endDate": { "type": "string", "format": "date-time", "nullable": true, "description": "End date of the live session" }, "error": { "type": "integer", "enum": [ 1, 2, 3, 4, 5 ], "nullable": true, "description": "Error type if an error occurred during the live session:\n - `1`: Bad socket health (transcoding is too slow)\n - `2`: Max duration exceeded\n - `3`: Quota exceeded\n - `4`: Quota FFmpeg error\n - `5`: Video has been blacklisted during the live\n" }, "replayVideo": { "type": "object", "description": "Video replay information", "properties": { "id": { "type": "number" }, "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "shortUUID": { "$ref": "#/components/schemas/shortUUID" } } } } }, "PlaybackMetricCreate": { "properties": { "playerMode": { "type": "string", "enum": [ "p2p-media-loader", "web-video" ] }, "resolution": { "type": "number", "description": "Current player video resolution" }, "fps": { "type": "number", "description": "Current player video fps" }, "p2pEnabled": { "type": "boolean" }, "p2pPeers": { "type": "number", "description": "P2P peers connected (doesn't include WebSeed peers)" }, "resolutionChanges": { "type": "number", "description": "How many resolution changes occurred since the last metric creation" }, "bufferStalled": { "type": "number", "description": "How many times buffer has been stalled since the last metric creation" }, "errors": { "type": "number", "description": "How many errors occurred since the last metric creation" }, "downloadedBytesP2P": { "type": "number", "description": "How many bytes were downloaded with P2P since the last metric creation" }, "downloadedBytesHTTP": { "type": "number", "description": "How many bytes were downloaded with HTTP since the last metric creation" }, "uploadedBytesP2P": { "type": "number", "description": "How many bytes were uploaded with P2P since the last metric creation" }, "videoId": { "oneOf": [ { "$ref": "#/components/schemas/id" }, { "$ref": "#/components/schemas/UUIDv4" }, { "$ref": "#/components/schemas/shortUUID" } ] } }, "required": [ "playerMode", "resolutionChanges", "errors", "downloadedBytesP2P", "downloadedBytesHTTP", "uploadedBytesP2P", "p2pEnabled", "videoId" ] }, "RunnerRegistrationToken": { "properties": { "id": { "type": "integer" }, "registrationToken": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" }, "registeredRunnersCount": { "type": "integer" } } }, "Runner": { "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "description": { "type": "string" }, "ip": { "type": "string" }, "updatedAt": { "type": "string", "format": "date-time" }, "createdAt": { "type": "string", "format": "date-time" }, "lastContact": { "type": "string", "format": "date-time" } } }, "RunnerJobType": { "type": "string", "enum": [ "vod-web-video-transcoding", "vod-hls-transcoding", "vod-audio-merge-transcoding", "live-rtmp-hls-transcoding" ] }, "RunnerJobState": { "type": "integer", "enum": [ 1, 2, 3, 4, 5, 6, 7, 8 ], "description": "The runner job state:\n - `1` Pending\n - `2` Processing\n - `3` Completed\n - `4` Errored\n - `5` Waiting for a parent job\n - `6` Cancelled\n - `7` Parent had an error\n - `8` Parent has been cancelled\n" }, "RunnerJobStateConstant": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/RunnerJobState" }, "label": { "type": "string", "example": "Processing" } } }, "RunnerJobPayload": { "anyOf": [ { "type": "object", "title": "VOD web video transcoding", "properties": { "input": { "type": "object", "properties": { "videoFileUrl": { "type": "string" } } }, "output": { "type": "object", "properties": { "resolution": { "type": "number" }, "fps": { "type": "number" } } } } }, { "type": "object", "title": "VOD HLS transcoding", "properties": { "input": { "type": "object", "properties": { "videoFileUrl": { "type": "string" } } }, "output": { "type": "object", "properties": { "resolution": { "type": "number" }, "fps": { "type": "number" } } } } }, { "type": "object", "title": "VOD audio merge transcoding", "properties": { "input": { "type": "object", "properties": { "audioFileUrl": { "type": "string" }, "previewFileUrl": { "type": "string" } } }, "output": { "type": "object", "properties": { "resolution": { "type": "number" }, "fps": { "type": "number" } } } } } ] }, "RunnerJob": { "properties": { "uuid": { "$ref": "#/components/schemas/UUIDv4" }, "type": { "$ref": "#/components/schemas/RunnerJobType" }, "state": { "$ref": "#/components/schemas/RunnerJobStateConstant" }, "payload": { "$ref": "#/components/schemas/RunnerJobPayload" }, "failures": { "type": "integer", "description": "Number of times a remote runner failed to process this job. After too many failures, the job in \"error\" state" }, "error": { "nullable": true, "type": "string", "description": "Error message if the job is errored" }, "progress": { "type": "integer", "description": "Percentage progress" }, "priority": { "type": "integer", "description": "Job priority (less has more priority)" }, "updatedAt": { "type": "string", "format": "date-time" }, "createdAt": { "type": "string", "format": "date-time" }, "startedAt": { "type": "string", "format": "date-time" }, "finishedAt": { "type": "string", "format": "date-time" }, "parent": { "nullable": true, "description": "If job has a parent job", "type": "object", "properties": { "type": { "$ref": "#/components/schemas/RunnerJobType" }, "state": { "$ref": "#/components/schemas/RunnerJobStateConstant" }, "uuid": { "$ref": "#/components/schemas/UUIDv4" } } }, "runner": { "nullable": true, "description": "If job is associated to a runner", "properties": { "id": { "type": "number" }, "name": { "type": "string" }, "description": { "type": "string" } } } } }, "RunnerJobAdmin": { "allOf": [ { "$ref": "#/components/schemas/RunnerJob" }, { "type": "object", "properties": { "privatePayload": { "type": "object" } } } ] }, "WatchedWordsLists": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "listName": { "type": "string" }, "words": { "type": "array", "items": { "type": "string" } }, "updatedAt": { "type": "string", "format": "date-time", "example": "2021-05-04T08:01:01.502Z" }, "createdAt": { "type": "string", "format": "date-time", "example": "2021-05-04T08:01:01.502Z" } } }, "VideoPassword": { "properties": { "id": { "$ref": "#/components/schemas/id" }, "password": { "type": "string", "minLength": 2 }, "videoId": { "$ref": "#/components/schemas/id" } } }, "VideoPasswordList": { "properties": { "total": { "type": "integer", "example": 1 }, "data": { "type": "array", "items": { "$ref": "#/components/schemas/VideoPassword" } } } }, "AddVideoPasswords": { "type": "array", "items": { "$ref": "#/components/schemas/VideoPassword/properties/password" }, "uniqueItems": true }, "PlayerTheme": { "type": "string", "enum": [ "galaxy", "lucide" ], "description": "The player theme to use" }, "PlayerThemeChannelSetting": { "type": "string", "enum": [ "instance-default", "galaxy", "lucide" ], "description": "Player theme setting for a channel:\n - `instance-default` Use the instance default theme\n - `galaxy` Use the galaxy theme\n - `lucide` Use the lucide theme\n" }, "PlayerThemeVideoSetting": { "type": "string", "enum": [ "channel-default", "instance-default", "galaxy", "lucide" ], "description": "Player theme setting for a video:\n - `channel-default` Use the channel default theme\n - `instance-default` Use the instance default theme\n - `galaxy` Use the galaxy theme\n - `lucide` Use the lucide theme\n" }, "PlayerVideoSettings": { "type": "object", "properties": { "theme": { "$ref": "#/components/schemas/PlayerThemeVideoSetting" } }, "description": "Player settings for a video" }, "PlayerChannelSettings": { "type": "object", "properties": { "theme": { "$ref": "#/components/schemas/PlayerThemeChannelSetting" } }, "description": "Player settings for a channel" }, "PlayerVideoSettingsUpdate": { "type": "object", "properties": { "theme": { "$ref": "#/components/schemas/PlayerThemeVideoSetting" } }, "required": [ "theme" ], "description": "Player settings update for a video" }, "PlayerChannelSettingsUpdate": { "type": "object", "properties": { "theme": { "$ref": "#/components/schemas/PlayerThemeChannelSetting" } }, "required": [ "theme" ], "description": "Player settings update for a channel" }, "FileStorage": { "type": "integer", "enum": [ 0, 1 ], "description": "The file storage type:\n - `0` File system\n - `1` Object storage\n" }, "VideoChannelCollaborator": { "type": "object", "description": "Representation of a channel collaboration", "properties": { "id": { "$ref": "#/components/schemas/id" }, "account": { "$ref": "#/components/schemas/AccountSummary" }, "state": { "type": "object", "properties": { "id": { "$ref": "#/components/schemas/VideoChannelCollaboratorState" }, "label": { "type": "string" } } }, "createdAt": { "type": "string", "format": "date-time" }, "updatedAt": { "type": "string", "format": "date-time" } } }, "VideoChannelCollaboratorState": { "type": "integer", "enum": [ 1, 2 ], "description": "The user import state:\n - `1`: Pending\n - `2`: Accepted\n" } } } }