Home > OS >  Is it possible to get the first frame as image form video store in Firebase storage?
Is it possible to get the first frame as image form video store in Firebase storage?

Time:10-21

As the title it is, is there any way i can get the first frame pic form video store in firebase?

I have been try few way and none of them work out( adding #t=1s in the end of url ...)

CodePudding user response:

If you are asking if there is any way to get only a subset of data for some file in Cloud Storage using a Firebase download URL, that is not possible at all. A download URL is only capable of downloading the entire contents of any file.

If you need some sort of intermediate processing, you'll have to create your own API endpoint that performs the extraction. There is no service provided by Firebase or GCP to do this for you.

  • Related