@nexrender/provider-gs

1.48.6 • Public • Published

Provider: GCS

Allows nexrender to interact with a Google Cloud Storage (GCS) bucket.

Refer to @google-cloud/storage for information regarding general abilities and usage.

Installation

npm i @nexrender/provider-gs -g

You most likely need to authenticate to interact with a GCS bucket. This provider uses Application Default Credentials. Refer to the Google Cloud Documentation for more information on authentication.

Usage (download)

To download assets from a GCS bucket, you can use the gs:// prefix in the value of the src attribute.

{
    "assets": [
        {
            "src": "gs://mybucket/background.jpg",
            "type": "image",
            "layerName": "background.png"
        },
        {
            "src": "gs://myotherbucket/audio.mp3",
            "type": "audio",
            "layerName": "theme.mp3"
        }
    ]
}

Uri follows this scheme:

gs://[BUCKET]/[ITEM]

Usage (upload)

Upload via GCS can be done using @nexrender/action-upload

Basic params info:

  • bucket required argument, the GCS bucket
  • item required argument, the item ID
  • contentType optional argument, the content-type of the upload, which will be set as metadata on
  • cacheControl optional argument, the cache-control of the upload, which will be set as metadata on the bucket item
  • resumable boolean, optional argument, disables resumable (true by default) google storage documentation

Example:

{
    "actions": {
        "postrender": [
            {
                "module": "@nexrender/action-upload",
                "input": "result.mp4",
                "provider": "gs",
                "params": {
                    "bucket": "name-of-your-bucket",
                    "item": "folder/output.mp4",
                    "contentType": "video/mp4",
                    "cacheControl": "public, max-age=3600",
                    "resumable": false
                }
            }
        ]
    }
}

Readme

Keywords

none

Package Sidebar

Install

npm i @nexrender/provider-gs

Weekly Downloads

189

Version

1.48.6

License

none

Unpacked Size

6.12 kB

Total Files

5

Last publish

Collaborators

  • inlife