https://github.com/realorangeone/wagtail-lite-youtube-embed
A Wagtail embed finder to use lite-youtube to embed YouTube videos
https://github.com/realorangeone/wagtail-lite-youtube-embed
embed wagtail youtube
Last synced: about 2 months ago
JSON representation
A Wagtail embed finder to use lite-youtube to embed YouTube videos
- Host: GitHub
- URL: https://github.com/realorangeone/wagtail-lite-youtube-embed
- Owner: RealOrangeOne
- License: bsd-3-clause
- Created: 2023-10-27T14:02:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-03-11T14:35:36.000Z (about 2 months ago)
- Last Synced: 2025-03-11T15:45:14.571Z (about 2 months ago)
- Topics: embed, wagtail, youtube
- Language: Python
- Homepage: https://pypi.org/project/wagtail-lite-youtube-embed/
- Size: 30.3 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wagtail Lite YouTube Embed



A Wagtail embed finder to use [`lite-youtube`](https://github.com/paulirish/lite-youtube-embed) for more efficient and private YouTube embeds.
## Installation
```
pip install wagtail-lite-youtube-embed
```Then, configure `WAGTAILEMBEDS_FINDERS` to use `LiteYouTubeEmbedFinder` before the default OEmbed finder:
```python
WAGTAILEMBEDS_FINDERS = [
{
"class": "lite_youtube_embed.LiteYouTubeEmbedFinder",
},
{
"class": "wagtail.embeds.finders.oembed",
},
]
```Note: This library does not configure your frontend to use `lite-youtube` - you will need to install and load this yourself.