13 lines
235 B
Plaintext
13 lines
235 B
Plaintext
---
|
|
title: '📺 Youtube Video'
|
|
---
|
|
|
|
To add any youtube video to your app, use the data_type as `youtube_video`. Eg:
|
|
|
|
```python
|
|
from embedchain import App
|
|
|
|
app = App()
|
|
app.add('a_valid_youtube_url_here', data_type='youtube_video')
|
|
```
|