# place.stream.playback.whep

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

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.playback.whep)
- [Documentation](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.playback.whep/docs)
- [Examples](https://lexicon.garden/lexicon/did:web:stream.place/place.stream.playback.whep/examples)

## Definitions

### `place.stream.playback.whep`

**Type**: `procedure`

Play a stream over WebRTC using WHEP.

#### Input

**Encoding**: `*/*`

#### Output

**Encoding**: `*/*`

#### Errors

- **Unauthorized**: This user may not play this stream.

## Raw Schema

```json
{
  "id": "place.stream.playback.whep",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": null,
        "encoding": "*/*"
      },
      "errors": [
        {
          "name": "Unauthorized",
          "description": "This user may not play this stream."
        }
      ],
      "output": {
        "schema": null,
        "encoding": "*/*"
      },
      "parameters": {
        "type": "params",
        "required": [
          "streamer",
          "rendition"
        ],
        "properties": {
          "streamer": {
            "type": "string",
            "description": "The DID of the streamer to play."
          },
          "rendition": {
            "type": "string",
            "description": "The rendition of the stream to play."
          }
        }
      },
      "description": "Play a stream over WebRTC using WHEP."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
