Uploading videos to db

Greeting!
I want to implement such function as uploading video from camera roll to google drive or something like that.
Can somebody please give me an idea how i can do it? I completely have no idea…
I can’t use nodejs environment(for ios) inside expo, so, i can’t use node.js api for different services.
Thanks for your attention.

Generally you would save your video raw data, probably as a base64 string, and then save that to some database (either local SQLite or some remote DB)

1 Like

Many thanks for the idea!