Larpoux

Results 794 comments of Larpoux

> Are you talking about record to a file and read decibels from files? Seems there is no such API availabe right now. A long time ago, we had an...

> Someone should master what is PCM and code correctly how to get DB level from PCM. This remark was 3 years ago. But during these 3 years, nobody tried...

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 for...

In may, we had a Pull Request for Flutter Web for the db recording level [#1031](https://github.com/Canardoux/flutter_sound/pull/1031). Actually we have a problem because our 3 platforms (Android, iOS and Web) are...

@SheepYang1993 , I expect to work on this point soon. Probably in a few weeks. If you can wait a little bit, it will be certainly better than to implement...

Actually, toStreamInt16 and toStreamFloat32 are only implemented on flutter web. Still not on mobiles. This is one of the many things that I have to do. This is important to...

You can try to get the ByteBuffer of your UInt8List and then get the int16List with `asInt16List()`. Note : I have never tried this. Usually I loop into the UInt8List...

Yes, using the data buffer is probably better. For your information : ```dart Uint8List buf = Uint8List(2 * bufferInt16.length); for (int i = 1; i < bufferInt16.length; ++i) { int...

When you open your audio session, specify ``` focus: AudioFocus.requestFocusAndDuckOthers ```

Thank you @BenEppers for the link. This seems very interesting. Do not hesitate to do a Pull Request, I will be very glad to look to it very carefully.