Given a youtube url (can copy and paste right from the browser) turns the url into an embedded video.
If you put this in your app's templatetags/filters.py, you can do the following
{{ object.youtube_url|youtube }}
and it would embed the youtube video.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | from django.template.defaultfilters import stringfilter
from django import template
import re
register = template.Library()
@register.filter
@stringfilter
def youtube(url):
regex = re.compile(r"^(http://)?(www\.)?(youtube\.com/watch\?v=)?(?P<id>[A-Za-z0-9\-=_]{11})")
match = regex.match(url)
if not match: return ""
video_id = match.group('id')
return """
<object width="425" height="344">
<param name="movie" value="http://www.youtube.com/watch/v/%s"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/watch/v/%s" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed>
</object>
""" % (video_id, video_id)
youtube.is_safe = True # Don't escape HTML
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
does youtube already support OEmbed?
#
it does today :)
#
Thank for this useful filter. I tried to embed some youtube video, but i couldn't do it. When i insert the link, i see the link again. It doesn't convert to embeded video.
I tried this on a blog which has tinymce within the entry. Thank you for your help.
#
Please login first before commenting.