--- id: django-embed-video version: "1.4.10" license: unclear license_treatment: permissive maintenance: active --- # django-embed-video — Django app for easy embedding YouTube and Vimeo videos and music from SoundCloud. License: permissive · Maintenance: active · Downloads: 77.1K/mo ## What it is and what it does django-embed-video is a Django app that simplifies embedding video and audio content from YouTube, Vimeo, and SoundCloud into web pages. It provides template tags and model fields that parse media URLs, extract metadata like thumbnails, and generate the appropriate embed code—eliminating the need to manually construct iframe tags or handle different platform APIs. The package works by accepting video URLs in templates or model fields, automatically detecting the source platform, and rendering embeds with configurable dimensions. It handles multiple URL formats for each platform, including mobile URLs and platform-specific variations, and can lazy-load embeds to improve page performance. Installation requires adding it to Django's INSTALLED_APPS and optionally configuring the request context processor. Use it for: - Add a video field to a Django model and render embedded videos in templates without writing custom iframe code. - Build a content management system where editors paste YouTube or Vimeo URLs and the app automatically generates responsive embeds. - Extract and display video thumbnails alongside links in a media gallery or blog post. - Support multiple video platforms (YouTube, Vimeo, SoundCloud) in a single template without platform-specific logic. - Lazy-load video embeds on a page with many videos to reduce initial load time. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides Django template tags and model fields to embed YouTube, Vimeo, and SoundCloud media directly into web pages with automatic URL parsing and thumbnail extraction. Yes. The package is stable (Production/Stable status), actively maintained, has no known vulnerabilities, and solves a common Django need with low install friction. Use it if your Django project needs to embed videos from YouTube, Vimeo, or SoundCloud—it eliminates boilerplate and handles URL parsing and platform detection automatically. ## Install pip install django-embed-video uv add django-embed-video poetry add django-embed-video ## Installing django-embed-video Before you install: Low friction install with three straightforward runtime dependencies. Maintained actively with recent releases; last commit in April 2026 and version 1.4.10 from May 2024 show ongoing support. License in practice: MIT license (permissive) means you can use, modify, and distribute this package freely in commercial and private projects with minimal restrictions. Quickstart: pip install django-embed-video # In Django settings.py, add to INSTALLED_APPS: INSTALLED_APPS = [ 'embed_video', # ... ] # In template: {% load embed_video_tags %} {% video "https://www.youtube.com/watch?v=dQw4w9WgXcQ" "800x600" %} Requires Django to be installed and configured; the request context processor must be set in TEMPLATES settings if you need HTTP/S detection in template tags. Verify before relying: - Whether the package handles all current YouTube, Vimeo, and SoundCloud URL formats reliably in production. - Performance characteristics when processing many video URLs or thumbnails in a single page render. ## Package facts - License: not declared (permissive) - Python support: unspecified - Install friction: low - Maintenance: active - Downloads: 77.1K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags django video embedding, youtube vimeo django integration, embed video template tags, soundcloud django app, django media player, video iframe generator django, django-plugin, video-embedding, template-tags [View on SkillFed](https://skillfed.io/packages/django-embed-video) · [View on PyPI](https://pypi.org/project/django-embed-video/)