Background
I have javascript libraries that I used with asp.net for recording audio in a browser, converting it to .mp3 format, and then uploading it. I'm moderately certain I'll still be able to use those with JS Interop in Blazor.
My Question
What would be the best way to transfer a file from the client to the server? I'm considering:
SignalR, perhaps after some kind of transfer speed test, then transcoding to .mp3 there.FTP to upload (seems a little unsafe to me)HTTP file transfer through an APIC# object of some kindmciSendString and using a C# FTP library for the upload to serverIdeas / comments?