# social.coves.embed.video

> Published by [coves.social](https://lexicon.garden/identity/did:web:coves.social)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.embed.video)
- [Documentation](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.embed.video/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:coves.social/social.coves.embed.video/examples)

## Definitions

### `social.coves.embed.video`

**Type**: `object`

Video embed with metadata

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `alt` | `string` | No | Alt text describing video content |
| `video` | `blob` | Yes | Video blob reference |
| `duration` | `integer` | No | Duration in seconds |
| `thumbnail` | `blob` | No | Video thumbnail image |

## Raw Schema

```json
{
  "id": "social.coves.embed.video",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "video"
      ],
      "properties": {
        "alt": {
          "type": "string",
          "maxLength": 10000,
          "description": "Alt text describing video content",
          "maxGraphemes": 1000
        },
        "video": {
          "type": "blob",
          "accept": [
            "video/mp4",
            "video/webm"
          ],
          "maxSize": 100000000,
          "description": "Video blob reference"
        },
        "duration": {
          "type": "integer",
          "minimum": 0,
          "description": "Duration in seconds"
        },
        "thumbnail": {
          "type": "blob",
          "accept": [
            "image/png",
            "image/jpeg",
            "image/webp"
          ],
          "maxSize": 1000000,
          "description": "Video thumbnail image"
        }
      },
      "description": "Video embed with metadata"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
