Play wav files
System.Media.SoundPlayer player = new SoundPlayer(); player.SoundLocation = "c:\\test.wav"; player.LoadAsync(); player.PlayLooping(); //asynchronous (loop)playing in new thread Thread.Sleep(5000); player.Stop();
12110 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
System.Media.SoundPlayer player = new SoundPlayer(); player.SoundLocation = "c:\\test.wav"; player.LoadAsync(); player.PlayLooping(); //asynchronous (loop)playing in new thread Thread.Sleep(5000); player.Stop();
package org.jmf.example; import javax.swing.JDialog; import javax.swing.JFrame; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; import javax.swing.plaf.metal.MetalLookAndFeel; public class ExampleJMF { public static void main(String[] args) { JFrame.setDefaultLookAndFeelDecorated(true); JDialog.setDefaultLookAndFeelDecorated(true); try { UIManager.setLookAndFeel(new MetalLookAndFeel()); } catch(UnsupportedLookAndFeelException e) { e.printStackTrace(); } new exampleFrame(); } }
package org.jmf.example; import java.awt.Toolkit; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import javax.swing.JFrame; public class exampleFrame extends JFrame { private static final long serialVersionUID = 1L; public exampleFrame() { super("JMF - Example..."); setSize(400, 300); setLocation((Toolkit.getDefaultToolkit().getScreenSize().width - getWidth())/2, (Toolkit.getDefaultToolkit().getScreenSize().height - getHeight())/2); addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent evt) { System.exit(0); } }); setContentPane(new examplePanel()); setVisible(true); } }
package org.jmf.example; import java.awt.Component; import java.awt.Graphics; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.IOException; import java.net.MalformedURLException; import java.net.URL; import javax.media.ControllerEvent; import javax.media.ControllerListener; import javax.media.Manager; import javax.media.NoPlayerException; import javax.media.Player; import javax.media.RealizeCompleteEvent; import javax.swing.JPanel; public class examplePanel extends JPanel implements ActionListener, ControllerListener { private static final long serialVersionUID = 1L; private Component visualComponent; private Player player; public examplePanel() { try { player = Manager.createPlayer(new URL("file:///tmp/a.mpg")); player.addControllerListener(this); player.start(); } catch(NoPlayerException e) { e.printStackTrace(); } catch(MalformedURLException e) { e.printStackTrace(); } catch(IOException e) { e.printStackTrace(); } } public void paintComponent(Graphics g) { super.paintComponent(g); } public void actionPerformed(ActionEvent e) { } public void controllerUpdate(ControllerEvent c) { if(player == null) return; if(c instanceof RealizeCompleteEvent) { if((visualComponent = player.getVisualComponent()) != null) add(visualComponent); } } }
package Multimedia; import javax.swing.JDialog; import javax.swing.JFrame; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; import javax.swing.plaf.metal.MetalLookAndFeel; public class AudioSystem { public static void main(String[] args) { JFrame.setDefaultLookAndFeelDecorated(true); JDialog.setDefaultLookAndFeelDecorated(true); try { UIManager.setLookAndFeel(new MetalLookAndFeel()); } catch(UnsupportedLookAndFeelException e) { e.printStackTrace(); } new AudioGUI(); } }
package Multimedia; import java.awt.Container; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowEvent; import java.awt.event.WindowListener; import java.io.File; import javax.swing.JButton; import javax.swing.JFileChooser; import javax.swing.JFrame; import javax.swing.JPanel; public class AudioGUI extends JFrame implements WindowListener { public AudioGUI() { this.setTitle("AudioSystem"); this.setSize(240, 100); this.setResizable(false); this.addWindowListener(this); Container gc = this.getContentPane(); gc.add(new AudioGUIPan()); this.setVisible(true); } public void windowOpened(WindowEvent e) { } public void windowClosing(WindowEvent e) { System.exit(0); } public void windowClosed(WindowEvent e) { } public void windowIconified(WindowEvent e) { } public void windowDeiconified(WindowEvent e) { } public void windowActivated(WindowEvent e) { } public void windowDeactivated(WindowEvent e) { } } class AudioGUIPan extends JPanel implements ActionListener { private JButton play; private JButton stop; private JButton loop; private JButton open; private JButton close; private JFileChooser jfc; private String file; private AudioDevice ad; public AudioGUIPan() { play = new JButton("Play"); play.addActionListener(this); stop = new JButton("Stop"); stop.addActionListener(this); open = new JButton("Open"); open.addActionListener(this); close = new JButton("Close"); close.addActionListener(this); this.add(stop); this.add(play); this.add(open); this.add(close); } public void actionPerformed(ActionEvent e) { if(e.getSource() == close) { System.exit(0); } else if(e.getSource() == open) { jfc = new JFileChooser(); jfc.setFileFilter(new AudioFilter()); if(jfc.showOpenDialog(this) != JFileChooser.CANCEL_OPTION) { file = jfc.getSelectedFile().getAbsolutePath(); ad = new AudioDevice(new File(file)); } } else if(e.getSource() == play) { if(ad != null) ad.play(); } else if(e.getSource() == stop) { if(ad != null) ad.stop(); } } }
package Multimedia; import java.io.File; import javax.swing.filechooser.FileFilter; public class AudioFilter extends FileFilter { public boolean accept(File f) { return f.getName().toLowerCase().endsWith(".wav") || f.isDirectory(); } public String getDescription() { return "Audio File *.wav"; } }
package Multimedia; import java.applet.Applet; import java.applet.AudioClip; import java.io.File; import java.net.MalformedURLException; public class AudioDevice implements AudioClip { private AudioClip ac; public AudioDevice(File f) { try { ac = Applet.newAudioClip(f.toURL()); } catch(MalformedURLException e) { e.printStackTrace(); } } public void play() { ac.play(); } public void stop() { ac.stop(); } public void loop() { } }