Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝(content) Add LumaFusion Beta announcement post #499

Merged
merged 18 commits into from
Nov 9, 2022
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions site/_data/contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,17 @@ const contributors = {
title: 'Director of Engineering',
},
},
zalcorn: {
name: {
given: 'Zach',
family: 'Alcorn',
},
work: {
company: 'Google',
org: 'ChromeOS',
title: 'Product Manager',
},
},
};

module.exports = () => contributors; // By making this a function, it'll force Eleventy to reevaluate it every time it gets recompiled
10 changes: 5 additions & 5 deletions site/en/posts/announcing-lumafusion-beta-for-chromeos.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Announcing LumaFusion Beta for ChromeOS
metadesc: We're very excited today to announce the open beta of LumaFusion for ChromeOS and Android!
title: Announcing LumaFusion beta for ChromeOS
metadesc: LumaFusion beta is now available for ChromeOS and Android.
tags:
- announcement
- android
Expand All @@ -18,11 +18,11 @@ authors:
date: 2022-10-24
---

We're very excited today to announce the open beta of LumaFusion for ChromeOS and Android! This is an important milestone in our long-held goal of bringing professional and accessible video editing and effects to an incredibly wide range of content creators around the world.
We're very excited today to announce the open beta of LumaFusion for ChromeOS and Android. This is an important milestone in our long-held goal of bringing professional and accessible video editing and effects to an incredibly wide range of content creators around the world.

Developing LumaFusion for ChromeOS and Android devices presented us with new opportunities. The development team built LumaFusion for ChromeOS from the ground up, taking great strides to recreate the signature LumaFusion experience and ensure users enjoy the same workflow on any device they choose. We think Chromebooks are a natural fit for LumaFusion because they’re easy to set up and are always ready to use with great battery life and no long boot up or update times. We think our users will love the flexibility and power their large screens and both touch and keyboard interfaces will bring to how they work. That same ease of use and complete control has always been a hallmark of LumaFusion.
Developing LumaFusion for larger screens such as ChromeOS, tablets and foldables presented us with new opportunities. The development team built LumaFusion for ChromeOS from the ground up, taking great strides to recreate the signature LumaFusion experience and ensure users enjoy the same workflow on any device they choose. We think Chromebooks are a natural fit for LumaFusion because they’re easy to set up and are always ready to use with great battery life and no long boot up or update times. We think our users will love the flexibility and power their large screens and both touch and keyboard interfaces will bring to how they work. That same ease of use and complete control has always been a hallmark of LumaFusion.

When creating LumaFusion for ChromeOS and Android, one of our biggest challenges was developing the engine to playback and export the multitrack video and audio compositions that LumaFusion makes possible. After multiple iterations, our team created an engine that directly manages multiple [`MediaCodec`s](https://developer.android.com/reference/kotlin/android/media/MediaCodec) with a central clock to manage synchronization between various video and audio sources, and an [OpenGLES](https://developer.android.com/develop/ui/views/graphics/opengl) renderer that composites multiple video sources, still images, and rendered titles into output frames. The result? They perfectly reproduced dozens of video filters as OpenGLES shaders for ChromeOS and Android.
When creating LumaFusion for large-screen devices, one of our biggest challenges was developing the engine to playback and export the multitrack video and audio compositions that LumaFusion makes possible. After multiple iterations, our team created an engine that directly manages multiple [`MediaCodec`s](https://developer.android.com/reference/kotlin/android/media/MediaCodec) with a central clock to manage synchronization between various video and audio sources, and an [OpenGLES](https://developer.android.com/develop/ui/views/graphics/opengl) renderer that composites multiple video sources, still images, and rendered titles into output frames. The result? They perfectly reproduced dozens of video filters as OpenGLES shaders for ChromeOS and Android.

During the development process, we collaborated with ChromeOS and Android to help provide the best performance possible. The learning went both ways and other developers should benefit from platform improvements made to improve the resource intensive task of multi-track asset manipulation in Android.

Expand Down
4 changes: 2 additions & 2 deletions site/sass/components/_banner-interstitial.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
&__eyebrow,
&__title,
&__copy {
color: inherit;
color: var(--hero-theme-color, inherit);
}

&__copy {
Expand All @@ -60,7 +60,7 @@

&__cta {
border-color: currentColor;
color: inherit;
color: var(--hero-theme-color, inherit);
display: inline-flex;
margin-top: 1.75rem;
}
Expand Down
7 changes: 6 additions & 1 deletion site/sass/components/_themes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
--hero-theme-background: var(--blue-850);
--hero-theme-cta-background: transparent;

background-image: radial-gradient(circle farthest-corner at 97% 97%, var(--blue-200) 175px, transparent 175px), radial-gradient(circle farthest-corner at calc(97% + 53px) calc(97% + 53px), var(--blue-300) 250px, transparent 250px);
--center: 97%;
--offset: 74px;
--small: 25%;
--large: calc(25% + 5rem);

background-image: radial-gradient(circle farthest-corner at var(--center) var(--center), var(--blue-200) var(--small), transparent var(--small)), radial-gradient(circle farthest-corner at calc(var(--center) + var(--offset)) calc(var(--center) + var(--offset)), var(--blue-300) var(--large), transparent var(--large));
}
}