User Controls
Testing
-
2024-10-09 at 2:40 PM UTC[video]https://streamable.com/kxdm45[//][/video]
-
2024-10-09 at 2:41 PM UTC
-
2024-10-09 at 2:41 PM UTC
-
2024-10-09 at 2:42 PM UTCFuck off
-
2024-10-09 at 2:55 PM UTC
if url.netloc in ('www.youtube.com', 'youtube.com', 'm.youtube.com'):
return _embed_youtube(url)
elif url.netloc in ('youtu.be',):
return _embed_youtube_shortcode(url)
elif url.netloc in ('bitchute.com', 'www.bitchute.com'):
return _embed_bitchute(url)
elif url.netloc in ('www.tiktok.com', 'm.tiktok.com'):
return _embed_tiktok(url)
elif ext in ('webm', 'mp4'):
return _embed_html5_video(url)
else:
raise EmbeddingNotSupportedException('Unrecognized service.')