【发布时间】:2016-03-10 22:28:41
【问题描述】:
所以我试图播放这个声音,但它不起作用。我收到这条消息
Error: Soundfile doesn't exist. Pleae check path
A library relies on native code that's not available.
Or only works properly when the sketch is run as a 32-bit application.
and A library used by this sketch is not installed properly
我不知道我哪里错了
这是代码
SoundFile file;
void setup(){
size (300,300);
background(100,150,0);
file= new SoundFile(this,"Deadmau5.mp3");
file.play();
}
void draw(){
}
是不是它没有在正确的目录中查找文件? 谁能帮我分解一下? 谢谢
【问题讨论】:
标签: java audio this processing