Transcode audio natively
npm install react-native-audio-transcoder- Install this repository via yarn
- Run react-native link react-native-audio-transcoder
No additional steps required
- Add the AVMediaFoundation library to your root react native project
``javascript
import { transcode } from 'react-native-audio-transcoder'
const myFilePath = getFilePath()
const myNewFile = myFilePath.replace('aac', 'mp3')
transcode(myFilePath, myNewFile)
.then(() => console.log('Party!'))
``