youtube-video.mdx 235 B

123456789101112
  1. ---
  2. title: '📺 Youtube Video'
  3. ---
  4. To add any youtube video to your app, use the data_type as `youtube_video`. Eg:
  5. ```python
  6. from embedchain import App
  7. app = App()
  8. app.add('a_valid_youtube_url_here', data_type='youtube_video')
  9. ```