# ai-builder/2.2.3/assets/JSON-Blocks/video.js

AI Builder – Generate pages, blocks, images &amp; translate with AI, version 2.2.3. 59 lines.

- Page: https://pluginprobe.com/plugins/ai-builder/2.2.3/code/assets/JSON-Blocks/video.js
- Raw: https://pluginprobe.com/plugins/ai-builder/2.2.3/raw/assets/JSON-Blocks/video.js
- Modified: 2025-08-23T08:19:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ai-builder/2.2.3/code/assets/JSON-Blocks/video.js#L10-L20`.

```javascript
const videoBlocks = [
  {
    id: "video-01",
    jsonBlocks: {
      blockName: "core/group",
      attrs: {
        align: "center",
        className: "video-container",
        style: {
          color: {
            background: "#ffffff",
          },
        },
      },
      innerBlocks: [
        {
          blockName: "core/heading",
          attrs: {
            content: "Watch Our Video",
            level: 2,
            className: "video-title",
            textAlign: "center",
          },
        },
        {
          blockName: "core/paragraph",
          attrs: {
            content: "Check out our latest video content",
            className: "video-description ai-text-block",
            align: "center",
          },
        },
        {
          blockName: "core/video",
          attrs: {
            className: "video-player",
            controls: true,
            autoplay: false,
            loop: false,
            muted: false,
            playsInline: true,
            preload: "metadata",
          },
        },
        {
          blockName: "core/paragraph",
          attrs: {
            content: "Click the play button to start watching",
            className: "video-info ai-text-block",
            align: "center",
          },
        },
      ],
    },
  },
];

export default videoBlocks;

```
