Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
924 views
in Technique[技术] by (71.8m points)

input - a function that returns false as soon as there is a sound detected from the mic (java)

I wanted to know if there is a way to make a function in java that returns false as soon as there is no sound coming from your mic.

I wanted to use it inside a while loop like this :

long timeStart = System.nanoTime();
while (!soundFromMic()) {


                    long timeEnd = System.nanoTime();
                     if (timeEnd - timeStart >= 2000000000) {
                        System.out.println("Time ended and there was no sound detected from mic");
                        break;

                    }

                }
.....

How I think the function would look like:


public static boolean soundFromMic() {
        if (there is sound) {
            return true;
        } else
            return false;

    }
question from:https://stackoverflow.com/questions/65834088/a-function-that-returns-false-as-soon-as-there-is-a-sound-detected-from-the-mic

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...