audio_waveforms
audio_waveforms copied to clipboard
Use this plugin to generate waveforms while recording audio in any file formats supported by given encoders or from audio files. We can use gestures to scroll through the waveforms or seek to any posi...
audio_waveforms/AudioPlayer.swift:23: Fatal error: 'try!' expression unexpectedly raised an error: Error Domain=NSOSStatusErrorDomain Code=1685348671 "(null)" Lost connection to device.
I've noticed this strange behaviour where I can only begin with a swipe-right gesture to scroll through the waveform. I can swipe left but only if I begin the gesture...
At first we would just add normalizationFactor to decibel. As decibel is a relative value. This was very inefficient way to normalize. With this, waves will be scaled against maximum...
Fixed (Class 'AudioRecorder' is not abstract and does not implement abstract member public abstract fun onRequestPermissionsResult(p0: Int, p1: Array, p2: IntArray): Boolean defined in io.flutter.plugin.common.PluginRegistry.RequestPermissionsResultListener) for Android. Added bitRate feature...
My code: ```dart @override void initState() { super.initState(); _recorderController = RecorderController(); _recorderController.record(); } ... AudioWaveforms( size: const Size(230, 50), recorderController: _recorderController, waveStyle: const WaveStyle( waveColor: Colors.pink, spacing: 8.0, extendWaveform: true,...
Hey guys, I love this project, could you explain me how to generate waves from an http audio url? I can't find any doc or example in the pub.dev link...
I'm recording interview sessions, each lasting more than 60 minutes. Displaying the whole waveform is to inaccurate to skim through the interview. Is there any way to scroll vertically with...
My code: ```dart @override void initState() { super.initState(); _recorderController = RecorderController(); _recorderController.record(); } ... AudioWaveforms( size: const Size(230, 50), recorderController: _recorderController, waveStyle: const WaveStyle( waveColor: Colors.pink, spacing: 8.0, extendWaveform: true,...
Hello, seekTo function is not working, Could you please check? This is how I have used it _currentPlayerController?.seekTo(Duration(seconds: double.parse(p0).truncate()).inMilliseconds); Thanks