youtube-video.mdx 278 B

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