Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
February 23, 2021 06:23 pm GMT

Making a virtual credits sequence for your video calls with OBS and CodePen

I saw Scott Hanselman make this tweet the other day about adding credits at the end of meetings:

I love this idea and decided to make one myself!

The Code

First, I went over to CodePen and threw together an array of text to scroll. I used a list of blog posts that I've written on the Netlify Blog.

let posts = [  "An Incredibly Serious Discussion about Next.js at Reactathon",  "Enabling AMP in your Next.js projects",  "Adding Babel presets and plugins in Next.js",  "React Children: The misunderstood prop",  "Query an API at both build time and runtime with Next.js",  "How to turn off telemetry in Next.js",  "Add Web Monetization to your sites with Snippet Injection",  "Logging in Next.js",  ...]
Enter fullscreen mode Exit fullscreen mode

From there, I made a small function to add each of these into a <div>, which I add into an existing container on my page.

(() => {  posts.map((p) => {    document.querySelector('.container').innerHTML += `<div>${p}</div>`  })})()
Enter fullscreen mode Exit fullscreen mode

In the CSS, I made the background limegreen and did some animations to scroll it. I also added a custom font and stuff, this part you can just do to your heart's desire.

Here's the final Pen for you to try out:

Feel free to fork this if you'd like to customize it!

OBS

OBS (Open Broadcaster Software) is a free program that works across operating systems that we can use for making a "virtual camera".

Download OBS, and make a new Scene. There's a Scenes panel in the bottom right of the app:

Add a Scene

Click the + sign in the bottom left corner of and name it whatever you'd like. As you can see, I named mine "Scene", because I am not clever.

In the panel next to Scenes, there's a Sources panel. We're going to add two Sources to our Scene by clicking that + sign again.

First, add a Video Capture Device, and choose your webcam.

Choose a camera

Then, add a Browser, and put in your CodePen's URL. I personally used my Pen in Live View, but you can also use Full Page View.

Adding a Pen

Yours will probably still have the green background. Let's remove that! In the Sources panel, right click on your Browser and click "Filters".

Under Effect Filters, click the + and add a Color Key filter. Make the Key Color Type Green, and adjust the levels until all of the green is transparent on your Pen in the preview, like so:

Color key selector

Close this window when you're happy with it, and now it's time for the final adjustments.

Inside of the main preview window in OBS, you can drag around your camera and text until you're happy with it. For example, I made my browser slightly wider than the preview itself, so that the scrollbar wouldn't appear in the frame.

Preview window

And you're done! Click "Start Virtual Camera" on the bottom right so that you can use it in other applications:

Virtual Camera button

Use it!

Now whenever you're in a Zoom, a Google Meet, a conference, livestreaming, or anything else, you can choose this virtual camera that you've made instead of your normal webcam!

Cassidy dancing with credits

You can do more than just a credits sequence, too. You could add diagrams, fun popups, animations, and moooore. Go forth and create!


Original Link: https://dev.to/cassidoo/making-a-virtual-credits-sequence-for-your-video-calls-with-obs-and-codepen-3dco

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To