RKP
RKP

Reputation: 880

Fetch video meta information - GCP

I have video contents uploaded in GCP buckets.

Is there a way by which I can get video meta data(height, width, duration) from any of gcp api / class.

Upvotes: 0

Views: 53

Answers (1)

Shri Hari L
Shri Hari L

Reputation: 4894

You can use stat command in gsutil tool.
Example:

gsutil stat gs://[BUCKET_NAME]/[OBJECT_NAME]

There are also other ways to obtain metadata.
Further Reference: https://cloud.google.com/storage/docs/viewing-editing-metadata

Upvotes: 1

Related Questions