You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 not decode the files one after the other?
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 not decode the files one after the other?
final fileNames = ['file1.mp3', 'file2.mp3', 'file3.mp3'];
for (var fn in fileNames) {
awaitJustWaveform.extract(audioInFile:File(fn), audioOutFile:File('$fn.wave')).last;
}
That's the basic idea, anyway, modify it as needed to get the audio files from different input locations and store the waveform files in different output locations.
If trying extract few files in same time, progress will commit last file progress.
I think, need to make a each progress for each instance
The text was updated successfully, but these errors were encountered: