1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-18 15:05:32 -04:00

offload videos to vercel blob storage

This commit is contained in:
2025-03-19 16:14:10 -04:00
parent c134ae76fd
commit d714e6e99b
47 changed files with 204 additions and 418 deletions

View File

@@ -17,7 +17,14 @@ const Page = () => {
<>
<PageTitle canonical="/birthday">1996.mov</PageTitle>
<Video src={["/static/birthday/birthday.webm", "/static/birthday/birthday.mp4"]} poster={thumbnail.src} />
<Video
src={[
"https://bcm6wnmyyzj1p5ls.public.blob.vercel-storage.com/videos/birthday/birthday-9HG65MrSNWJjzg679VtirX7MLPpAaV.webm",
"https://bcm6wnmyyzj1p5ls.public.blob.vercel-storage.com/videos/birthday/birthday-8iayCEy1jfEHpNGZkdBPvxPFOuGz0g.mp4",
]}
poster={thumbnail.src}
crossOrigin="anonymous"
/>
</>
);
};