alnitak / flutter_soloud

Flutter low-level audio plugin using SoLoud C++ library and FFI
MIT License
156 stars 15 forks source link

feat: WaveForm for complete Audiofile #75

Open synchronisator opened 2 months ago

synchronisator commented 2 months ago

Description

Its currently not possible to create a waveform of a complete audiofile. This is an example of Audacity: grafik

To create something like this, there has to be a method to get all values from the file. At the moment there is only a way to get small parts of the currently playing audiopart.

Thanks

alnitak commented 2 months ago

Currently is not possible. You can get audio data while playing, but this is not convenient and does not guarantee that all audio chunks will be retrieved.

I plan to add this feature later on and it is somehow related to #27