Allows nexrender to interact with a Google Cloud Storage (GCS) bucket.
Refer to @google-cloud/storage for information regarding general abilities and usage.
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.
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]
Upload via GCS can be done using @nexrender/action-upload
Basic params info:
bucket
required argument, the GCS bucketitem
required argument, the item IDcontentType
optional argument, the content-type of the upload, which will be set as metadata oncacheControl
optional argument, the cache-control of the upload, which will be set as metadata on the bucket item
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"
}
}
]
}
}