block.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "$schema": "https://schemas.wp.org/trunk/block.json",
  3. "apiVersion": 2,
  4. "name": "core/video",
  5. "title": "Video",
  6. "category": "media",
  7. "description": "Embed a video from your media library or upload a new one.",
  8. "keywords": [ "movie" ],
  9. "textdomain": "default",
  10. "attributes": {
  11. "autoplay": {
  12. "type": "boolean",
  13. "source": "attribute",
  14. "selector": "video",
  15. "attribute": "autoplay"
  16. },
  17. "caption": {
  18. "type": "string",
  19. "source": "html",
  20. "selector": "figcaption"
  21. },
  22. "controls": {
  23. "type": "boolean",
  24. "source": "attribute",
  25. "selector": "video",
  26. "attribute": "controls",
  27. "default": true
  28. },
  29. "id": {
  30. "type": "number"
  31. },
  32. "loop": {
  33. "type": "boolean",
  34. "source": "attribute",
  35. "selector": "video",
  36. "attribute": "loop"
  37. },
  38. "muted": {
  39. "type": "boolean",
  40. "source": "attribute",
  41. "selector": "video",
  42. "attribute": "muted"
  43. },
  44. "poster": {
  45. "type": "string",
  46. "source": "attribute",
  47. "selector": "video",
  48. "attribute": "poster"
  49. },
  50. "preload": {
  51. "type": "string",
  52. "source": "attribute",
  53. "selector": "video",
  54. "attribute": "preload",
  55. "default": "metadata"
  56. },
  57. "src": {
  58. "type": "string",
  59. "source": "attribute",
  60. "selector": "video",
  61. "attribute": "src"
  62. },
  63. "playsInline": {
  64. "type": "boolean",
  65. "source": "attribute",
  66. "selector": "video",
  67. "attribute": "playsinline"
  68. },
  69. "tracks": {
  70. "type": "array",
  71. "items": {
  72. "type": "object"
  73. },
  74. "default": []
  75. }
  76. },
  77. "supports": {
  78. "anchor": true,
  79. "align": true
  80. },
  81. "editorStyle": "wp-block-video-editor",
  82. "style": "wp-block-video"
  83. }