😱3 online photo editing 🔥website 🪩

Опубликовано: 04 Август 2026
на канале: Chhota Sarkar 99
244
like

😱3 online photo editing 🔥website 🪩#edit
‪@chhotasarkar99‬

#videoediting

#premierepro

#finalcutpro

#adobevideo

#sonyvegas

#davinciresolve

#aftereffects

#youtubevideo

#youtubetips

#youtubemarketing

#contentcreation

#vlog

#filmmaking

#videography

#motiongraphics

#animation

#sounddesign



function createVideoWithText() {
// Set the dimensions of the video
var width = 640;
var height = 360;

// Create a new video
var video = SlidesApp.createVideo(width, height);

// Get the first slide of the presentation
var slide = SlidesApp.getActivePresentation().getSlides()[0];

// Set the background of the slide to black
slide.getBackground().setSolidFill("#000000");

// Add a text box to the slide
var textBox = slide.insertTextBox("Your Text Here");

// Format the text box
textBox.setTop(100);
textBox.setLeft(100);
textBox.setWidth(400);
textBox.setHeight(100);
textBox.getText().getTextStyle().setForegroundColor("#FFFFFF");
textBox.getText().getTextStyle().setBold(true);
textBox.getText().getTextStyle().setFontSize(24);

// Export the video
var videoUrl = video.getBlob().setContentType("video/mp4").setName("My Video").getUrl();
Logger.log("Video URL: " + videoUrl);
}