Wednesday, July 3, 2024
HomeLanguagesJavascriptp5.js | loadSound() Function

p5.js | loadSound() Function

The p5.loadSound is an inbuilt function of p5.sound library that contains the path to the object that will playable as web audio. You can easily attach any file that supports the client’s browsers. So be careful to choose, better is to make an array of the file format that will be imported as the client’s browsers supported the format. Like mp3, ogg and wav, etc.

Syntax:

p5.loadSound(path, [successCallback], [errorCallback], [whileLoadingCallback])

Parameters: This function accepts four parameters as mentioned above and described below:

  • path: This parameter holds the path of the file as a string, you can add multiple files.
  • successCallback: This parameter holds the function when the file loads it is an optional parameter.
  • errorCallback: This parameter holds the function of error if the function you want to call by the previous parameter was a failure. If the performable function can’t be called this parameter will handle this matter and inform what was wrong. It is also an optional parameter.
  • whileLoadingCallback: This parameter holds the function that you want to call while the page is loading, and it’s optional also.

Below example illustrate the p5.loadSound() function in JavaScript:

Example:




var sound;
   
function preload() {
  
    // Initialize sound
    sound = loadSound("pfivesound.mp3");
}
   
function setup() {
  
    // Playing the preloaded sound
    sound.play();


Online editor: https://editor.p5js.org/
Environment Setup: https://www.neveropen.co.za/p5-js-soundfile-object-installation-and-methods/

Supported Browsers: The browsers are supported by p5.loadSound function are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Safari
  • Opera
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Thapelo Manthata
I’m a desktop support specialist transitioning into a SharePoint developer role by day and Software Engineering student by night. My superpowers include customer service, coding, the Microsoft office 365 suite including SharePoint and power platform.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments