Devashish Dixit
Devashish Dixit

Reputation: 1193

Convert a mp3 to wav using javascript on a browser

How can I convert a .mp3 file to .wav file using javascript on a browser?

Upvotes: 2

Views: 6825

Answers (1)

EasierSaidThanDone
EasierSaidThanDone

Reputation: 1897

Are you looking for something like this?

MP3.js - a JavaScript MP3 decoder based on JSMad

MP3.js is a refactored version of JSMad designed to run in ofmlabs Aurora audio framework. It supports all of the features of JSMad and is released under the same GPLv2 license. The code was reorganized a bit, and now uses all typed arrays for decoding at better performance.

https://github.com/devongovett/mp3.js

Upvotes: 2

Related Questions