User Controls

Meat emoji triggering vegans 🍖🥓🍗 🥩 🍔 🧆 🌭

  1. #1
    scuffed jim carrey Tuskegee Airman
    https://youtube.com/shorts/xmviYej8-rQ?feature=share
  2. #2
    scuffed jim carrey Tuskegee Airman


    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.')
Jump to Top