react-native-audio-video-tools icon indicating copy to clipboard operation
react-native-audio-video-tools copied to clipboard

React-native library that allows performing some advanced operation on audios and videos

Results 5 react-native-audio-video-tools issues
Sort by recently updated
recently updated
newest added

import {AudioTools} from 'react-native-audio-video-tools'; const audioTools = new AudioTools("https://www.learningcontainer.com/wp-content/uploads/2020/02/Kalimba.mp3"); let res = await audioTools.compress({quality: "medium"}); console.log(res); //an error while getting input It throws the error with local/remote path. If i...

I'm using following code to compress video. ImagePicker.openPicker({ mediaType: "video" }).then(images => { let uri = images.path const videoTools = new VideoTools(uri); videoTools.compress({ quality: 'low' }).then(details => { }); })...

Hi, I installed react-native-audio-video-tools to use cut() for audio I have this output in the logs: ![Screenshot 2021-06-25 at 6 13 25 PM](https://user-images.githubusercontent.com/68984852/123441438-7c0d1980-d5f1-11eb-8454-fa69a2ddadf7.png) it happens while I try to cut...

Working

Hi, sorry if I'm opening the second issue today . However I have successfully installed the library in these steps: - install react-native-audio-video-tools - install react-native-ffmpeg - added in pod...