ryanheise
ryanheise
The Android side of "skip silence" is now implemented in `dev` via PR #234 . The volume boost feature needs some further thought on the API design front. iOS can...
The plan is now to implement volume boost as part of #398 .
#398 is now complete, with two initial AudioEffect implementations on the Android side: `LoudnessEnhancer` (can be used for volume boosting) and `Equalizer`. There are many other Android audio effects that...
The Android implementation is now published in release 0.8.0.
That could be a good idea, although I doubt it is a good idea to be decoding multiple files at the same time since it is very resource intensive. Why...
You could try something like this: ```dart final fileNames = ['file1.mp3', 'file2.mp3', 'file3.mp3']; for (var fn in fileNames) { await JustWaveform.extract(audioInFile: File(fn), audioOutFile: File('$fn.wave')).last; } ``` That's the basic idea,...
Yes, write the data to a file, then you can pass the file into this API.
As I don't personally have Windows, that would have to be a contribution if anyone is willing (although first I'd have to move to the federated plugin model). But for...
Going forward, I wonder whether it would be better to generate a unique ID for each instance rather than use the file name. The plan is to eventually include partial...
Before you do that, I haven't actually thought it through completely, just thinking out aloud. This may be like a job ID.