We are currently working on providing the user with the ability to download MP3 files. We are developing an application that fully runs on the local system that a server is not required.
But downloading mp3 files does not work in most browsers. It is opened by built-in media players in most browsers.
We tested the solutions for this as we get answers like setting a "content-disposition" using a server-side header or using PHP or ASP scripts to make it downloadable.
I also checked the jquery filedownload.js plugin. which also had a section, such as setting content and set-cookie.
So, I want to know if it is possible to create a link to download files (for MP3) *, compatible for all browsers using only client scripts like Javascript or jQuery.
Important Note:
In fact, the process does not download the file from the server, but from the client system itself.
This MP3 file must be copied from one place (Directory) to another place in the client system.
source share