I'm looking to extend my Firebase project to app engine to help with cpu heavy file processing, specifically video transcoding.
App engine standard seems like a good fit because it can scale rapidly and to zero, however, after watching this GCP video (~0:40), it mentions that you have to use app engine flexible to write to the file system. Is this true? In the firebase documentation, it mentions app engine standard for something like this:
The Firebase SDKs for Cloud Storage use the Google App Engine default bucket...This is useful for performing audio encoding, video transcoding, and image transformations...The Java, Python, and go Standard environments for Google App Engine include the GAE Images API (Java, Python, which can resize, rotate, flip, and crop an image, as well as return an image serving URL which allows for client side transformations
Can app engine standard be used with Firebase Storage to download, process, and upload files to storage?