MiniVideoEncoder icon indicating copy to clipboard operation
MiniVideoEncoder copied to clipboard

Using s3 as storage

Open Zonalds opened this issue 5 years ago • 1 comments

I am having a hard time integrating s3 into the WorkflowEngine, Encoder, and Packager mostly because I can't seem to know how to do so - new to Nodejs from Python.

I understand the nodejs built-in module 'fs' is in use when I run in my local environment. Any idea how to substitute this for S3?

Zonalds avatar Nov 07 '20 12:11 Zonalds

Hi, I haven't worked with S3 before, so I don't know any specifics. If you can mount S3 as a drive and you run the encoder on a VM, it should work with the fs module. If not, you have to download the content from S3, encode it, and upload it again to S3.

There probably are a lot of nodejs module which can help with interacting with Amazon S3. For example, https://www.npmjs.com/search?q=Amazon%20S3

PatrickKalkman avatar Nov 09 '20 07:11 PatrickKalkman