播放短(少于 0:00:500 秒)的声音片段
Play short (less than 0:00:500 sec) sound clip
我在使用 java 播放短声音片段时遇到了问题。有什么建议吗?
public static void playAll(String note, String beat, String chord) {
try {
AudioInputStream audioInputSoloNote = AudioSystem.getAudioInputStream(new File(
"C:/java_support/solo_sound/"+note+"_"+beat+".wav").getAbsoluteFile());
AudioFormat formatNote = audioInputSoloNote.getFormat();
AudioInputStream audioInputSoloChord = AudioSystem.getAudioInputStream(new File(
"C:/java_support/solo_chord/"+chord+".wav").getAbsoluteFile());
Clip clipSolo = AudioSystem.getClip();
clipSolo.open(audioInputSoloNote);
clipSolo.start();
Clip clipChord = AudioSystem.getClip();
clipChord.open(audioInputSoloChord);
clipChord.start();
long frames = audioInputSoloNote.getFrameLength();
double durationInSeconds = ((frames + 0.0) / formatNote.getFrameRate());
sleep((long) durationInSeconds * 1000);
clipSolo.stop();
clipChord.stop();
} catch(Exception ex) {
System.out.println("Error with playing sound.");
ex.printStackTrace();
}
}
问题:我正在编写一个关于 "AI" 在古典音乐创作中实施的研究应用程序。有 3 个不同的音符(从持续时间的角度来看)——二分音符(1.2 秒)、四分音符(0.6 秒)和八分音符(0.3 秒)。此代码以正确的方式播放 Half 和 Querter 音符,但是,当涉及八分音符时,它只是跳过它们。
即:
C Quarter C --> play (0.6sec duration)
F Eighth F --> skip (0.3sec)
E Eighth C --> skip (0.3sec)
F Quarter F --> play (0.6sec)
F Quarter Dm --> play (0.6sec)
C Half F --> play (1.2sec)
... ... ...
我可能会增加 durationInSeconds 的解决方案,但是,它会延长所有声音,我不想这样做。
我还想了解对 android 的改编:
即我想按顺序播放 7 个短音。
private void playNotes (ArrayList<Data> list) {
SoundPool sp = new SoundPool(5, AudioManager.STREAM_MUSIC, 0);
for (int i = 0; i < list.size(); i++) {
String note = list.get(i).getNote().toLowerCase()+"_eighth";
int resID = getResources().getIdentifier(note, "raw",
getPackageName());
int soundId = sp.load(this, resID, 1);
sp.play(soundId);
MediaPlayer mPlayer = MediaPlayer.create(this, resID);
mPlayer.start();
}
}
我得到的是同时播放所有声音片段。如何解决?
已找到解决办法。不知道它是否是损坏的代码,但是,因为我的项目完美运行
try
{
Thread.sleep(1000);
}
catch(InterruptedException ex)
{
Thread.currentThread().interrupt();
}
我在使用 java 播放短声音片段时遇到了问题。有什么建议吗?
public static void playAll(String note, String beat, String chord) {
try {
AudioInputStream audioInputSoloNote = AudioSystem.getAudioInputStream(new File(
"C:/java_support/solo_sound/"+note+"_"+beat+".wav").getAbsoluteFile());
AudioFormat formatNote = audioInputSoloNote.getFormat();
AudioInputStream audioInputSoloChord = AudioSystem.getAudioInputStream(new File(
"C:/java_support/solo_chord/"+chord+".wav").getAbsoluteFile());
Clip clipSolo = AudioSystem.getClip();
clipSolo.open(audioInputSoloNote);
clipSolo.start();
Clip clipChord = AudioSystem.getClip();
clipChord.open(audioInputSoloChord);
clipChord.start();
long frames = audioInputSoloNote.getFrameLength();
double durationInSeconds = ((frames + 0.0) / formatNote.getFrameRate());
sleep((long) durationInSeconds * 1000);
clipSolo.stop();
clipChord.stop();
} catch(Exception ex) {
System.out.println("Error with playing sound.");
ex.printStackTrace();
}
}
问题:我正在编写一个关于 "AI" 在古典音乐创作中实施的研究应用程序。有 3 个不同的音符(从持续时间的角度来看)——二分音符(1.2 秒)、四分音符(0.6 秒)和八分音符(0.3 秒)。此代码以正确的方式播放 Half 和 Querter 音符,但是,当涉及八分音符时,它只是跳过它们。
即:
C Quarter C --> play (0.6sec duration)
F Eighth F --> skip (0.3sec)
E Eighth C --> skip (0.3sec)
F Quarter F --> play (0.6sec)
F Quarter Dm --> play (0.6sec)
C Half F --> play (1.2sec)
... ... ...
我可能会增加 durationInSeconds 的解决方案,但是,它会延长所有声音,我不想这样做。
我还想了解对 android 的改编: 即我想按顺序播放 7 个短音。
private void playNotes (ArrayList<Data> list) {
SoundPool sp = new SoundPool(5, AudioManager.STREAM_MUSIC, 0);
for (int i = 0; i < list.size(); i++) {
String note = list.get(i).getNote().toLowerCase()+"_eighth";
int resID = getResources().getIdentifier(note, "raw",
getPackageName());
int soundId = sp.load(this, resID, 1);
sp.play(soundId);
MediaPlayer mPlayer = MediaPlayer.create(this, resID);
mPlayer.start();
}
}
我得到的是同时播放所有声音片段。如何解决?
已找到解决办法。不知道它是否是损坏的代码,但是,因为我的项目完美运行
try
{
Thread.sleep(1000);
}
catch(InterruptedException ex)
{
Thread.currentThread().interrupt();
}