feat: support Streamable embeds

This commit is contained in:
Paul Makles 2023-01-29 17:34:07 +00:00
parent 34ce1d1a86
commit 95d4f61d7f
No known key found for this signature in database
GPG key ID: 5059F398521BB0F6
2 changed files with 12 additions and 1 deletions

View file

@ -67,7 +67,8 @@ export default function Embed({ embed }: Props) {
break;
}
case "Twitch":
case "Lightspeed": {
case "Lightspeed":
case "Streamable": {
mw = 1280;
mh = 720;
break;

View file

@ -92,6 +92,16 @@ export default function EmbedMedia({ embed, width, height }: Props) {
/>
);
}
case "Streamable": {
return (
<iframe
src={`https://streamable.com/e/${embed.special.id}?loop=0`}
seamless
loading="lazy"
style={{ height }}
/>
);
}
default: {
if (embed.video) {
const url = embed.video.url;