- Install this repository via yarn
- Run
react-native link react-native-audio-transcoder
No additional steps required
- Add the
AVMediaFoundationlibrary to your root react native project
import{transcode}from'react-native-audio-transcoder'constmyFilePath=getFilePath()constmyNewFile=myFilePath.replace('aac','mp3')transcode(myFilePath,myNewFile).then(()=>console.log('Party!'))