懒洋君
懒洋君
本周的更新,会支持2.0和nullsafety吧? @asjqkkkk
> +1 别+1了,作者让自己去翻译翻译 ...
按键映射,能开放接口给js端嘛?
I run the code from `record_to_steream_example` However, `recordingDataControl.stream.listen` did not trigger a callback and did not obtain any buf @Larpoux Flutter Sound Version : 9.8.1 OS:Android 13
Thanks, I am looking forward to the upcoming version
Is there any update progress? I used the e.decibels returned by Recorder.onProgress to draw the waveform, but the decibels seems to be inaccurate. @Larpoux On the left are waveforms drawn...
> Note: if you use StartRecorderToStream, you receive the audio data in your StreamSink. You can compute yourself the db level of this stream, using the algorithm that is good...
Btw, can't startRecorder (toStreamInt16) be used now? I can't get the callback, in recorder.onProgress. but toStream can get the callback. flutter_sound: 9.9.2 @Larpoux
``` StreamController recordingDataController = StreamController(); recordingDataSubscription = recordingDataController.stream.listen((Uint8List buffer) { sink.add(buffer); voiceWaveList.addAll(buffer); }); await soundRecorder.startRecorder( toStream: recordingDataController.sink, codec: Codec.pcm16, numChannels: 1, sampleRate: 44100, bufferSize: 8192, ); ``` How can I...
Sorry,I just don't know how to splice two Uint8Lists into an Int16List now I tried to splice it together like this, but the result was not correct ``` stream.listen((Uint8List buffer)...