Star-Dust Expert Licensed User Longtime User Jul 29, 2020 #1 In B4a the audio library exists and can do this instruction to perform a sound with a specific frequency and a specific duration. B4X: Dim b As Beeper b.Initialize(300, 500) b.Beep Is there something similar in B4J?
In B4a the audio library exists and can do this instruction to perform a sound with a specific frequency and a specific duration. B4X: Dim b As Beeper b.Initialize(300, 500) b.Beep Is there something similar in B4J?
Erel B4X founder Staff member Licensed User Longtime User Jul 29, 2020 #2 I've posted code that creates the raw audio data needed to create a "beep". You might be able to use it together with jAudioTrack. Upvote 0
I've posted code that creates the raw audio data needed to create a "beep". You might be able to use it together with jAudioTrack.
Star-Dust Expert Licensed User Longtime User Jul 30, 2020 #3 Does not work. I solved it by creating a class by writing some java code. [SOLVED] AudioStreamer In B4A there is the audio library that makes the AudioStramer class available. Thus it is possible to send supine in byte format. Dim Data() as Byte AudioStreamer.Write(Data) Is there anything similar for B4J? www.b4x.com Upvote 0
Does not work. I solved it by creating a class by writing some java code. [SOLVED] AudioStreamer In B4A there is the audio library that makes the AudioStramer class available. Thus it is possible to send supine in byte format. Dim Data() as Byte AudioStreamer.Write(Data) Is there anything similar for B4J? www.b4x.com