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

p5.js | currentTime() Function

The currentTime() function is an inbuilt function in p5.js library. This function is used to return the current time of a sound file in second format which is playing that time on the web. If the reverseBuffer has been called then the current time will start the count backwards.
Syntax:

currentTime()

Note: All the sound-related functions only work when the sound library is included in the head section of the index.html file.

Parameter: This function does not accept any parameter.
Return Values: This function return the current time of playing sound file.

Below examples illustrates the p5.js currentTime() function in JavaScript:
Example 1: In this example the current time will be 0, calling the current time after hust play() function that is the reason.




var sound; 
var crntm;
     
function preload() { 
     
    // Initialize sound 
    sound = loadSound("pfivesound.mp3"); 
     
function setup() { 
     
    // Playing the preloaded sound 
    sound.play();
  
    //checking the current time 
    crntm = sound.currentTime();
    console.log(crntm);


Example 2: In this example the current time will be displayed when you click the button that assign for the current time. The button trigger the currentTime() function.




var sound; 
var crntm;   
  
function preload() { 
      
    // Initialize sound 
    sound = loadSound("song.mp3"); 
      
function setup() { 
      
    // Playing the preloaded sound 
    sound.play();
     
    //Creating button
    crntm = createButton("Current Time");
    crntm.mousePressed(Currenttime);
  
function Currenttime() {
  
    //will display the current time by button 
    var crrnt = sound.currentTime();
    console.log(crrnt);
}


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.js currentTime() 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!

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments