So, I'm working on the request of video files (using axios). I made the requests w/ the responseType: blob and wait for the response to create the video player with the window.URL.createObjectUrl(). But I've a button too, when the user click he can download the file.
The problem is: most files has big sizes, 150MB+, which turns out to be terrible for the user to wait for the blob response and start downloading.
There's a better way to do that? Without waiting for the response and making the browser handle the request?