ankit
ankit

Reputation: 1529

Write a set of images to a Video file on Google Drive

I have a folder containing multiple images, i want to write these images as a video file on Google drive. Is there any way to achieve this?

I cannot write the images to video file in local system and then upload to Google Drive, because of space constraint.

Upvotes: 1

Views: 59

Answers (1)

Linda Lawton - DaImTo
Linda Lawton - DaImTo

Reputation: 116978

The google drive api is a file store api. It contains information about the files it contains and it will allow you to upload new files. To some extent it can covert one file type to another. For example it can covert an excel file to a google sheets file and back and forth.

The google drive api does not have the ablity to allow you to upload two images and have them coverted into a video.

You will need to encode the video locally on your machine and then upload the video after.

Upvotes: 1

Related Questions