Hi everyone,
Let’s say I have a webapp that takes a video input, converts it to audio and just sends that audio to an api to get a transcript. I was wondering whether I should be using S3 storage or a similar approach for such a use case. Thing is I don’t need the video file beyond getting the transcription, and there aren’t any regulatory things in which I do need to keep the video files. So it does feel like storing it in a S3 might be overkill, since we simply delete the video afterwards. I was wondering what the best/most efficient way to tackle this problem would be.
I apologize if this is a stupid question, I’ve just started creating webapps and want to learn about general design patterns and architecture/approaches.
Thanks