Java audio 🔊

Publicado el: 18 octubre 2020
en el canal de: Bro Code
119,854
3.7k

Java audio sound music player tutorial explained

#java #audio #sound #music

import java.io.File;
import java.io.IOException;
import java.util.Scanner;
import javax.sound.sampled.*;

public class Main {

public static void main(String[] args) throws UnsupportedAudioFileException, IOException, LineUnavailableException{

Scanner scanner = new Scanner(System.in);

File file = new File("Level_Up.wav");
AudioInputStream audioStream = AudioSystem.getAudioInputStream(file);
Clip clip = AudioSystem.getClip();
clip.open(audioStream);

String response = "";


while(!response.equals("Q")) {
System.out.println("P = play, S = Stop, R = Reset, Q = Quit");
System.out.print("Enter your choice: ");

response = scanner.next();
response = response.toUpperCase();

switch(response) {
case ("P"): clip.start();
break;
case ("S"): clip.stop();
break;
case ("R"): clip.setMicrosecondPosition(0);
break;
case ("Q"): clip.close();
break;
default: System.out.println("Not a valid response");
}

}
System.out.println("Byeeee!");
}
}


En esta página del sitio puede ver el video en línea Java audio 🔊 de Duración hora minuto segunda en buena calidad , que subió el usuario Bro Code 18 octubre 2020, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 119,854 veces y le gustó 3.7 mil a los espectadores. Disfruta viendo!