2020-07-01 14:29:03 +02:00
|
|
|
{
|
2022-04-12 17:12:47 +02:00
|
|
|
"$schema": "https://schemas.wp.org/trunk/block.json",
|
2020-10-20 15:36:16 +02:00
|
|
|
"apiVersion": 2,
|
2020-07-01 14:29:03 +02:00
|
|
|
"name": "core/video",
|
2021-05-19 17:09:27 +02:00
|
|
|
"title": "Video",
|
2020-07-01 14:29:03 +02:00
|
|
|
"category": "media",
|
2021-05-19 17:09:27 +02:00
|
|
|
"description": "Embed a video from your media library or upload a new one.",
|
|
|
|
"keywords": [ "movie" ],
|
|
|
|
"textdomain": "default",
|
2020-07-01 14:29:03 +02:00
|
|
|
"attributes": {
|
|
|
|
"autoplay": {
|
|
|
|
"type": "boolean",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "video",
|
|
|
|
"attribute": "autoplay"
|
|
|
|
},
|
|
|
|
"caption": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "html",
|
|
|
|
"selector": "figcaption"
|
|
|
|
},
|
|
|
|
"controls": {
|
|
|
|
"type": "boolean",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "video",
|
|
|
|
"attribute": "controls",
|
|
|
|
"default": true
|
|
|
|
},
|
|
|
|
"id": {
|
|
|
|
"type": "number"
|
|
|
|
},
|
|
|
|
"loop": {
|
|
|
|
"type": "boolean",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "video",
|
|
|
|
"attribute": "loop"
|
|
|
|
},
|
|
|
|
"muted": {
|
|
|
|
"type": "boolean",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "video",
|
|
|
|
"attribute": "muted"
|
|
|
|
},
|
|
|
|
"poster": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "video",
|
|
|
|
"attribute": "poster"
|
|
|
|
},
|
|
|
|
"preload": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "video",
|
|
|
|
"attribute": "preload",
|
|
|
|
"default": "metadata"
|
|
|
|
},
|
|
|
|
"src": {
|
|
|
|
"type": "string",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "video",
|
|
|
|
"attribute": "src"
|
|
|
|
},
|
|
|
|
"playsInline": {
|
|
|
|
"type": "boolean",
|
|
|
|
"source": "attribute",
|
|
|
|
"selector": "video",
|
|
|
|
"attribute": "playsinline"
|
2020-10-20 15:36:16 +02:00
|
|
|
},
|
|
|
|
"tracks": {
|
|
|
|
"type": "array",
|
|
|
|
"items": {
|
|
|
|
"type": "object"
|
|
|
|
},
|
|
|
|
"default": []
|
2020-07-01 14:29:03 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"supports": {
|
2020-07-07 16:43:35 +02:00
|
|
|
"anchor": true,
|
2020-10-20 15:36:16 +02:00
|
|
|
"align": true
|
2021-01-28 03:04:13 +01:00
|
|
|
},
|
|
|
|
"editorStyle": "wp-block-video-editor",
|
|
|
|
"style": "wp-block-video"
|
2020-07-01 14:29:03 +02:00
|
|
|
}
|