Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to generate tone from flutter?

Tags:

flutter

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?

like image 758
jae Avatar asked Oct 27 '25 07:10

jae


1 Answers

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

like image 72
MickaelHrndz Avatar answered Oct 29 '25 00:10

MickaelHrndz