react-native-audio-waveform
react-native-audio-waveform copied to clipboard
React Native component to show audio waveform with ease in react native application ✨
Can you add feature tap to change audio current progress?
the onDidFinishPlayingAudio never fire because of the currentProgress always less than songDuration
I noticed you set a fixed scale value for candle height to 3. Could you add a prop to change this value? And if possible, could you also add a...
Hello, I'm attempting to display an audio waveform for downloaded audio files. However, the waveform loading process takes some time, and there's currently no indication of when the loading is...
I need the hook of `useAudioPlayer` in src/hooks/useAudioPlayer.tsx they have `extractWaveformData` what i need is the hook can be accessed via import like this ``` import { useAudioPlayer } from...
I found this library and gave it a try to test on my chat screen. Following the doc I setup the recorder as follows ```ts ref.current?.startRecord({ encoder: 3, updateFrequency: UpdateFrequency.high,...
const [candles, setCandels] = useState([]); const data = useAudioPlayer(); console.log(VM); useEffect(() => { (async () => { const candles = await data.extractWaveformData({ noOfSamples, playerKey: 'bb', path: VM.uri, }); setCandels(candles[0]); })();...
We are using the waveform in static mode, which is excellent. The only use case I'm having trouble working around is when scrolling in my `` of `react-native-gesture-handler', the waveform...
``` Exception 'error 1885563711' was thrown while invoking extractWaveformData on target AudioWaveform with params ( { noOfSamples = 24; path = "/Users/anatooly/Library/Developer/CoreSimulator/Devices/34A5BD58-2E22-47D5-8CD8-16A95B7F7F1A/data/Containers/Data/Application/5D69B40A-CA5C-48DF-8859-A5D48189D519/tmp//307e6156d0c02dd36803866ba43f.m4a"; playerKey = "PlayerFor/Users/anatooly/Library/Developer/CoreSimulator/Devices/34A5BD58-2E22-47D5-8CD8-16A95B7F7F1A/data/Containers/Data/Application/5D69B40A-CA5C-48DF-8859-A5D48189D519/tmp//307e6156d0c02dd36803866ba43f.m4a"; }, 3706, 3707 ) callstack:...