Hi guys,
I’m having a problem trying to load sound files via URLs. I’m trying to load this specific sound:
and i’m coding it in setup() like so:
sound.loadSound(“http://www.freesound.org/data/previews/235/235801_1272172-hq.mp3”, true)
and sending a call to play() the sound when the mouse is clicked, however, I am getting no sound at all.
to further investigate I ran an if statement to see if the file is loading at all, and it isn’t. My question is, is it possible to load sounds directly from a url or would I have to work around by attempting to download the sound and play it back once it has downloaded?