- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我编写了这两个类来测试如何使用 Java Sound API:
enum SoundEffect
:枚举封装了我使用的所有声音。
Class SoundEffectDemo
:在 Swing 应用程序中测试 SoundEffect 枚举
当我单击 SoundEffectDemo 的任何按钮(调用、响铃、忙碌)时,声音开始播放。当我单击“停止声音”按钮时,声音就会停止。但是当我第二次点击SoundEffectDemo的任意按钮(CALLING、RING、BUSY)时,没有任何声音。
import java.io.*;
import java.net.URL;
import javax.sound.sampled.*;
public enum SoundEffect {
BUSY("resources/phone-busy.wav"),
CALLING("resources/phone-calling.wav"),
DISCONNECT("resources/phone-disconnect.wav"),
RING("resources/telephone-ring.wav");
// Each sound effect has its own clip, loaded with its own sound file.
private Clip clip;
private URL url;
private AudioInputStream audioInputStream;
// Constructor to construct each element of the enum with its own sound file.
SoundEffect(String soundFileName) {
try {
// Use URL (instead of File) to read from disk and JAR.
this.url = this.getClass().getClassLoader().getResource(soundFileName);
// Set up an audio input stream piped from the sound file.
this.audioInputStream = AudioSystem.getAudioInputStream(url);
// Get a clip resource.
clip = AudioSystem.getClip();
// Open audio clip and load samples from the audio input stream.
clip.open(audioInputStream);
clip.addLineListener( new LineListener() {
public void update(LineEvent evt) {
if (evt.getType() == LineEvent.Type.STOP) {
evt.getLine().close();
}
}
});
} catch (UnsupportedAudioFileException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (LineUnavailableException e) {
e.printStackTrace();
}
}
// Play or Re-play the sound effect from the beginning, by rewinding.
public void play() {
clip.loop(Clip.LOOP_CONTINUOUSLY);
}
public void stop(){
clip.stop(); // Stop the player if it is still running
}
// Optional static method to pre-load all the sound files.
static void init() {
values(); // calls the constructor for all the elements
}
public boolean isActive(){
return clip.isActive();
}
public boolean isOpen() {
return clip.isOpen();
}
public void setFramePosition() {
clip.setFramePosition(0);
}
}
import java.awt.*;
import java.awt.event.*;
import javax.sound.sampled.LineEvent;
import javax.swing.*;
// Testing the SoundEffect enum in a Swing application
@SuppressWarnings("serial")
public class SoundEffectDemo extends JFrame {
// Constructor
public SoundEffectDemo() {
// Pre-load all the sound files
// Set up UI components
Container cp = this.getContentPane();
cp.setLayout(new FlowLayout(FlowLayout.CENTER, 10, 10));
JButton btnSound1 = new JButton("CALLING");
btnSound1.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
SoundEffect.CALLING.play();
}
});
cp.add(btnSound1);
JButton btnSound2 = new JButton("RING");
btnSound2.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
SoundEffect.RING.play();
}
});
cp.add(btnSound2);
JButton btnSound3 = new JButton("BUSY");
btnSound3.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
SoundEffect.BUSY.play();
}
});
cp.add(btnSound3);
JButton btnSound4 = new JButton("Stop Sound ");
btnSound4.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
for(SoundEffect value : SoundEffect.values()){
if(value.isActive()){
value.stop();
}
}
}
});
cp.add(btnSound4);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setTitle("Test SoundEffct");
this.pack();
this.setVisible(true);
}
public static void main(String[] args) {
new SoundEffectDemo();
}
}
最佳答案
clip.addLineListener( new LineListener() {
public void update(LineEvent evt) {
if (evt.getType() == LineEvent.Type.STOP) {
evt.getLine().close();
}
}
});
这可能不是您想要做的事情,在收到停止事件时关闭线路。关闭剪辑后,您需要重新打开它才能再次播放。
考虑到您正在做的事情,您可能根本不需要关闭线路。调用 close 表示您已经完成了。
参见Line#close
和 AutoCloseable#close
.
对于您的停止事件,更合适的临时操作是 drain
或flush
。如果您想“重置”它,则可以将帧位置设置为 0。
因此删除对 close
的调用并执行类似的操作
public void stop() {
clip.stop();
clip.flush();
clip.setFramePosition(0);
}
顺便说一句,我注意到您没有在事件调度线程上启动 Swing 应用程序。您应该始终initialize your GUI with a call to invokeLater
,例如:
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new SoundEffectDemo();
}
});
}
Swing 的线程安全非常重要,因为不这样做可能会导致难以诊断的细微错误。
关于java - 如何在 Java Sound API 中重新启动播放音频?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23029098/
我见过很多网页都有一个简单的声音开/声音关按钮,当你按下声音时,它会播放音乐或一些 mp3 文件,当你按下声音时,它会关闭。 我该怎么做? 你好,我没打算使用 Flash -- 如果有一个标准插件我可
我正在尝试将 sound.Sound() 函数应用于循环中的 numpy 数组。具体来说,我想循环执行以下操作。 a_wave 到 d_wave 是 numpy 数组。 stim_a = sound.
我有一个项目需要我显示上传声音的波形。声音始终是 MP3,大部分时间是 22.05 kHz 单声道,只有语音。该项目是用 Flex/ActionScript 3 编写的。它旨在在浏览器中运行,但如果有
我正在尝试对 FMOD 库中的 Sound.readData 和 Sound.lock 之间的差异进行排序(我正在使用 C#/C++ 进行编程,但我会使用任何语言来回答!)。最终目标是创建波形 Vie
我在录制我的应用程序播放的系统声音时遇到问题。与“会说话的汤姆猫”iOS 应用程序类似,我的应用程序应录制屏幕视频和声音。屏幕录制和转换为视频,工作正常,问题是使用核心音频录制音频。我是第一次使用 C
我正在使用 Java 声音通过 Clip.start() 方法播放大量声音样本。 鉴于此,控制播放音量的最佳方式是什么? 特别是,我非常希望该解决方案能够跨平台可靠地工作。 最佳答案 FloatCon
我正在尝试实现一个循环播放一系列音调的应用程序。 实际上,我使用 OpenAL 并且我对这种框架的经验是积极的,因为我也可以发出声音。 这是场景: 从 CAF 文件中加载短声音(3 秒) 循环播放该声
我正在尝试使用javax.sound.sampled库中的一些类。但是,即使在我新手看来,文件就在那里,Android Studio也不会导入它们。。是不是有什么东西没放好?。AndroidStudi
当我在游戏中移动时,我的声音不是完整播放,而是循环播放几毫秒。 这是我的代码: using System.Collections; using System.Collections.Generic;
每当我在 Android 设备上的 LibGDX 游戏中播放音效时,游戏都会卡顿。我已经在三款三星设备上尝试过这款游戏: 在 Galaxy S7 Edge (2016, Android 8) 和 Ga
我创建了一个应用程序,它播放小轨道的播放列表,一切正常,直到 Windows Phone 8.1 更新 问题是 -> 轨道结束时有奇怪的滴答声” 所以我尝试在 xbox 音乐播放器中播放轨道它也有相同
我已阅读 How to use selected value of UIPickerView as time interval for notifications?一遍又一遍,但我不知道如何将答案应用
每当我使用 Java 中的 SourceDataLine 类读取构成音频的字节时,我都会在播放时听到烦人的嗡嗡声背景噪音。谁能告诉我如何才能完全摆脱它?提前致谢。 更新:我已经发布了代码,但我的实际目
这感觉像是我在这个网站上提出的第 100 个 Java Sound 相关问题,但我无法在 Java Sound API 或 jsresources.org 的任何地方找到答案。我正在制作一个多轨录音机
我已经使用 Parse.com 在我的应用程序中实现了推送通知系统,一切正常! 我唯一的问题是当通知到达时:它不播放任何声音! 我进入设置(在我的平板电脑中),在通知下,我看到了这个: 如您所见,“声
本文整理了Java中com.bugvm.sound.YSourceDataLine类的一些代码示例,展示了YSourceDataLine类的具体用法。这些代码示例主要来源于Github/Stackov
本文整理了Java中com.bugvm.sound.YTargetDataLine类的一些代码示例,展示了YTargetDataLine类的具体用法。这些代码示例主要来源于Github/Stackov
本文整理了Java中com.bugvm.sound.YNative类的一些代码示例,展示了YNative类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,
本文整理了Java中com.bugvm.sound.YClip类的一些代码示例,展示了YClip类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些
本文整理了Java中com.bugvm.sound.YLine类的一些代码示例,展示了YLine类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些
我是一名优秀的程序员,十分优秀!