Tag audio

DVD Player Norauto NS-16309HIR

NS-16309HIR, NS-VID 16309 or Norauto Sound NS-16309HIR is a DVD player that is sold in Norauto car repair shop, that is a popular chain store set in many European countries and Argentina and that belongs to the French group Mobivia.…

Play sound clip from local file in Java

This solution works only for .wav files. Source code: public void playSound() { try { AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File(“”).getAbsoluteFile()); Clip clip = AudioSystem.getClip(); clip.open(audioInputStream); clip.start(); } catch(Exception ex) { System.out.println(“Error with playing sound.”); ex.printStackTrace(); } } External References “Playing…