rn-wav-to-mp3
v0.1.4
Published
React Native Wav to mp3
Readme
react-native-wav-to-mp3
Convert .wav audio files to .mp3 format in React Native (Android only), using libmp3lame.
⚙️ Installation
npm install react-native-wav-to-mp3import { convert } from 'react-native-wav-to-mp3';
const wavPath = '/sdcard/input.wav';
const mp3Path = '/sdcard/output.mp3';
convert(wavPath, mp3Path)
.then((resultPath) => {
console.log('MP3 saved to:', resultPath);
})
.catch((error) => {
console.error('Conversion error:', error);
});Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT
