Installation & Setup

Installation

The simpliest way is to use pip to install package:

pip install django-embed-video

If you want latest version, you may use Git. It is fresh, but unstable.

pip install git+https://github.com/yetty/django-embed-video.git

Setup

Add embed_video to INSTALLED_APPS in your Django settings.

INSTALLED_APPS = (
    ...

    'embed_video',
)

To detect HTTP/S you must use request context processor:

TEMPLATE_CONTEXT_PROCESSORS = (
    ...
    'django.core.context_processors.request',
)