User Controls
Meat emoji triggering vegans 🍖🥓🍗 🥩 🍔 🧆 🌭
-
2023-04-06 at 8:37 PM UTC
-
2023-04-07 at 12:53 AM UTC
FIX SHORTS LANNY
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.')