How do I create animated background for Google Meet?

CK1820 
Created at Dec 21, 2023 03:38:51
Updated at Mar 28, 2024 11:05:02 
323   0   0   0  

You may want to have your own google Meet theme based on the animation.

I tried making my own background based on the video and I am going to share the options I tried today. Its result will be like below:

How do I create animated background for Google Meet?

 

In general, Google Meet allows image files - it will be something like jpeg, gif, png and etc.

Before you create your own animated background, you should have ffmpeg.

In CentOS, you can install it as below if you have admin permission

sudo yum install ffmpeg

In Mac, you can install it as below if you have brew

brew install ffmpeg

 

If you are ready to go, you can create video files in mp4 with no audio stream like below:

ffmpeg -i {source file} -an -c:v libx264 -pix_fmt yuv420p -r 25 {target_filename}

From the above script, the audio track should be removed, so the option -an  do that function.

 

Below is the example:

ffmpeg -i odk_ceo_room.mov -an -c:v libx264 -vf hflip -pix_fmt yuv420p -r 25 fullerton.mp4

 

If you want to flip left and right, you can use below script

ffmpeg -i {source file} -an -c:v libx264 -vf hflip -pix_fmt yuv420p -r 25 {target_filename}

 

 

The only action you should do is to select your animated video if you have the created mp4 file on your hard disk

  • When you select at Google meet, you should change the file format to select all the formats including mp4.

How do I create animated background for Google Meet?

If everything goes fine, now you have your own video conference environment.



Tags: Google Meet Google Meet Custom Animated Background Google Meet Custom Video Background ffmpeg Share on Facebook Share on X

◀ PREVIOUS
File conversion to UTF in Schell Script
  Comments 0
Login for comment
OTHER POSTS IN THE SAME CATEGORY

File conversion to UTF in Schell Script (created at Jan 19, 2009)

Server status checking by Shell Script (created at Apr 01, 2008)

UPDATES

Creating a Pinterest-Style Card Layout with Bootstrap and Masonry (created at Apr 24, 2024)

Mastering Excel Data Importation in PHP (updated at Apr 24, 2024)

JSON format control in PHP (updated at Apr 24, 2024)

Equal Height Blocks in Bootstrap with JavaScript (created at Apr 22, 2024)

How to convert integer to text string ? (updated at Apr 22, 2024)

Checking similarity between two strings in PHP (updated at Apr 21, 2024)

Create Blob Image in HTML based on the given Text, Width and Height in the Center of the Image without saving file (updated at Apr 21, 2024)

How do I determine the client IP type (IPv4/IPv6) in PHP (updated at Apr 16, 2024)

How do I determine the client IP type in Python - IPv4 or IPv6 (updated at Apr 13, 2024)

Getting Started with PyTorch: A Beginner's Guide to Building Your First Neural Network (updated at Apr 09, 2024)

Predicting Buyer Preferences with PyTorch: A Deep Learning Approach (updated at Apr 09, 2024)

Forecasting the Weather with PyTorch: A Beginner's Guide to Temperature Prediction (created at Apr 09, 2024)

PyTorch example to Forcast Stock Price based on 10 days Dataset (created at Apr 09, 2024)

Mastering Model Persistence: Saving and Loading Trained Machine Learning Models in Python (created at Apr 08, 2024)

Harnessing the Power of Random Forest Algorithm in Python (created at Apr 08, 2024)

Understanding and Implementing K-Nearest Neighbors (KNN) Algorithm in Python (created at Apr 08, 2024)

Forecasting with Linear Regression and KNN Regression in Python (updated at Apr 07, 2024)

What is 302 Found Redirection in HTTP 1.1? (created at Apr 04, 2024)

Mastering Random Forest Regression: A Comprehensive Guide with Python Examples (updated at Apr 01, 2024)

Python Implementation of Linear Regression (updated at Apr 01, 2024)

Mastering Supervised Machine Learning with Python: A Comprehensive Guide (created at Apr 01, 2024)

Mastering AI: A Beginner's Guide to Python Programming and Beyond (created at Apr 01, 2024)

Building a Simple DNS Server in Delphi with TTL Support (created at Mar 16, 2024)

How to force cookies, disable php sessid in URL ? (updated at Mar 16, 2024)

Implementing a Versatile DNS Server in PHP: Handling A, AAAA, CNAME, and TXT Records (updated at Mar 16, 2024)

Implementing a Versatile DNS Server in Python: Handling A, AAAA, CNAME, and TXT Records (created at Mar 16, 2024)

Building a Basic DNS Server in PHP/Python: A Beginner's Guide (updated at Mar 15, 2024)

Dynamic DNS Made Easy: Building a Python-Based Solution (created at Mar 15, 2024)

Exploring the Depths of Data Transfer: sendfile vs. kTLS (created at Mar 15, 2024)

How Netflix Ensures Smooth Streaming with Open Connect CDN (updated at Mar 15, 2024)