How to do audio streaming using vapor as a server side ? Any suggestions?

I am developing a application using swift,xcode . Server side I am using vapor. Is there a way where I can just post any audio file to the server by consuming the api which is written using vapor and stream it from the machine without actually storing it ?

hello @Vinolin did you find any information about streaming an audio file ?

You can use the FileMiddleware to stream an audio file but it does need to be stored somewhere

2 Likes

Thanks @0xTim