Embedding Videos Into Django Project

Have you ever tried to embed a video into your Django website so find that it wouldn’t work?

Well, I have.

Let’s go over the solution I found to this problem.

The problem

I’ve been making an app for some other people that I mentor. I decided it would be easier on me and more beneficial to my mentees if I answered their questions in video instead of writing; speeds things along and I can increase my output while conveying my non-verbal communication.

I expected to just hold a Vimeo URL in the database and plug it into a set embed code in my template.

Long story short: that didn’t work. So I went searching for a new answer.

Answer: django-embed-video

I found the solution in a lovely plugin package, django-embed-video.

Install the package

pip install django-embed-video

Change settings.py

INSTALLED_APPS = (
    ...
    'embed_video',
)

Add the field to your model

# app_name/models.py
from django.db import models
from embed_video.fields import EmbedVideoField

class ModelName(models.Model):
    video = EmbedVideoField(blank=True) # an empty field is fine for me

Load the tags at the top of your template

{# for me, this was app_name/model_name_detail.html #}
{% load embed_video_tags %}

Call the video in the template

{# still app_name/model_name_detail.html #}
{# the string at the end is the size of the video #}
{# options: tiny, small, medium, large, huge #}
{% video model_name.video 'medium' %}

Other features

You can also add your new model field to the Django admin and customize the video backends.

Plus, you can embed audio from SoundCloud if video isn’t your thing.

My favorite part about it is that it will auto-detect which backend to use based on the link. Super simple in case I end up switching from Vimeo to YouTube.

Alternative Solutions?

That’s it! If you’ve ever solved this problem, tell us a story in the comments below. I’d love to hear what other solutions are out there.

Likewise, if you’ve ever written your own custom backend, share the tale!

9 Comments

Everything works. But when I play the video on my website, it won’t play. It says, video unavailable. But the youtube video plays well when I clicked on the new tab.

I have had some of that in the past as well. It’s either been one of two things:

  1. The video is not yet done encoding.
  2. The video is private or domain-restricted.

Maybe that’s the case for you? Check it out in your video settings on Vimeo.

thanks but it did not work for me. I got it on my admin but i cannot render it on my template. any solutions .

Hi! I’m using this package but I’m having the following weird problem: https://github.com/jazzband/django-embed-video/issues/132

I’m not getting any response from github issue, so I would like to ask you if you don’t mind to give me a hand on that.

Brief summary:
It works on my local machine but when I upload to my AWS servers it just does not work. It’s been working for awhile, but suddenly stopped working without making any update on the code.
When I check the HTML code on my AWS server seems to be creating the iframe correctly, but is not showing any video.

Thank you!

Super weird! Just some things I might try: Does the iframe have size in your CSS? Can you replace the video with another video link in dev tools?

Hello, how do I use this so that user can embed from a form on the front-end?

I have no problem embedding youtube via backend, however it will return a 404 error stating “The current path, 403.shtml, didn’t match any of these.” when I embed in the form textfield.

Leave a Reply