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

p5.js | isPlaying() Function

The isPlaying() function is an inbuilt function of p5.sound library that verifies that the play() function performed successfully, if that play was successful then this function will return true else false. That means it returns a Boolean value.
Syntax: 

isPlaying()

Note: All the sound-related functions only work when the sound library is included in the head section of the index.html file.
Parameters: This function does not accept any parameter.
Return Values: This function return the Boolean value of play true or false, true means audio is playing and false means not.
Below examples illustrates the p5.isPlaying() function in JavaScript: 
Example 1: Before the play() function will calling isPlaying() function. 

javascript




var sound;
var ply;
function preload() {
  
    // Initialize sound
    sound = loadSound("pfivesound.mp3");
}
  
function setup() {
          
    //Checking playing or not
    var ply = sound.isPlaying();
    console.log(ply);
     
    // Playing the preloaded sound
    sound.play();
}


Output: 

false

Example 2: After the play() function will calling isPlaying() function.  

javascript




var sound;
var ply;
function preload() {
  
    // Initialize sound
    sound = loadSound("pfivesound.mp3");
}
  
function setup() {
     
    // Playing the preloaded sound
    sound.play();
 
    //Checking playing or not
    var ply = sound.isPlaying();
    console.log(ply);
}


Output: 

true

Online editor: https://editor.p5js.org/ 
Environment Setup: https://www.neveropen.co.za/p5-js-soundfile-object-installation-and-methods/
Supported Browsers: The browsers supported by p5.isPlaying() 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!

Calisto Chipfumbu
Calisto Chipfumbuhttp://cchipfumbu@gmail.com
I have 5 years' worth of experience in the IT industry, primarily focused on Linux and Database administration. In those years, apart from learning significant technical knowledge, I also became comfortable working in a professional team and adapting to my environment, as I switched through 3 roles in that time.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments