I am currently developing a streaming music application, using Angular and hosting it on Firebase Hosting. The application's functionality involves placing MP3 files in Firebase Storage. Following that, there is a function code (in Angular) to convert from MP3 to M3U8 format. The resulting M3U8 output will be shared through an API.
Based on what I've seen on the internet, many tutorials use FFmpeg, but they seem to apply only when using a self-hosted server (often executed through the console, CMIIW). This approach may not be directly applicable to Firebase Hosting. Can Firebase Hosting run Ffmpeg or do you have any other suggestions? I would appreciate your guidance.