Reputation: 147
I have been searching for the ways about it, but seems like there is not much support for generating tone as of right now, or needs to go through the process of generating a tone file, which then is played right after.
Is there a way to generate song then plays next, without the process of generating the file then plays this file?
Upvotes: 4
Views: 2696
Reputation: 3842
I don't even think Flutter provides an out-of-the-box way to play sounds. You need to rely on packages :
If you're looking to trigger native "beep" sounds from the OS : flutter_beep
If you want to generate a soundwave : sound_generator
Upvotes: 4