embed nitter
This commit is contained in:
parent
fd0833a8ae
commit
1695a075f3
1 changed files with 2 additions and 0 deletions
|
@ -39,6 +39,8 @@ class Event(models.Model):
|
||||||
url = self.media
|
url = self.media
|
||||||
if 'youtube.com/watch' in url:
|
if 'youtube.com/watch' in url:
|
||||||
url = url.replace('/watch?v=', '/embed/')
|
url = url.replace('/watch?v=', '/embed/')
|
||||||
|
elif 'twitter.com/' in url:
|
||||||
|
url = ur.replace('twitter.com', 'nitter.net')
|
||||||
html += '<iframe src="%s" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>' % url
|
html += '<iframe src="%s" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>' % url
|
||||||
if self.media_caption:
|
if self.media_caption:
|
||||||
html = '<figure>%s<figcaption>%s</figcaption></figure>' % (html, self.media_caption)
|
html = '<figure>%s<figcaption>%s</figcaption></figure>' % (html, self.media_caption)
|
||||||
|
|
Loading…
Reference in a new issue