音質はちょっとわかりませんが、なにもしなければ音量は100%で鳴ります。
音量を絞ってみてください。
Processing
1import processing.sound.*;
2
3SoundFile soundfile;
4
5void setup() {
6 soundfile = new SoundFile(this, "groove.mp3");
7 soundfile.amp(0.5); // 音量 0~1
8 soundfile.play();
9}
10void draw() {
11}
Processing
1import ddf.minim.*;
2
3Minim minim;
4AudioPlayer audioPlayer;
5
6void setup() {
7 minim = new Minim(this);
8 audioPlayer = minim.loadFile("groove.mp3");
9
10 // 「=== Volume is not supported.」とエラーが出たら未サポート ゲインで試す
11 audioPlayer.setVolume(0.5); // 音量 0~1
12
13 // ↓で「Master Gain, which has a range of 6.0206 to -80.0」のような表示が出る
14 audioPlayer.printControls();
15 audioPlayer.setGain(-10); // ↑の範囲内で
16
17 audioPlayer.play();
18}
19void draw() {
20}
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。