react-native-audio-transcoder
react-native-audio-transcoder copied to clipboard
Transcode audio format in react-native. Supports mp3 🎉
Kept getting "No such file or directory" errors when converting files that had spaces in their path, this edit seems to fix it (for me at least).
``` let newAudioPath = audioPath.replace('.aac', '.mp3') const transcodeResult = await transcode(audioPath, newAudioPath) ``` throws `Cannot write output file` exception. newAudioPath = /Users/user/Library/Developer/CoreSimulator/Devices/6CDD781C-BADC-4630-82E4-D25F76B3BF72/data/Containers/Data/Application/87E2E2CC-0415-48A6-B06A-FE990ADF21E4/Documents/file_1.mp3
Hi there, I'm getting this problem in our project. I would like to convert from caf to m4a ``` Possible Unhandled Promise Rejection (id: 0): Cannot read property 'transcode' of...
Any plans to transcode .aac to an uncompressed format (.wav)?