The createAudio() function is used to create an audio element in the DOM. The audio is created as a p5.MediaElement, which has methods for controlling the media and its playback.
Syntax:
javascript
Output:
Example 2:
javascript
createAudio(src, callback)Parameters: This function accept two parameters as mentioned above and described below:
- src: It is a string or an array of strings that specified path of the audio file. The array of strings can be used to specify multiple paths for the support of various browsers.
- callback: It is a callback function that would be fired when the 'canplaythrough' event fires. This event is fired when the audio has completed loading and does not require any additional buffering. It is an optional parameter.
function setup() {
createCanvas(300, 300);
text("Click on the buttons below to"+
"play/pause the audio", 20, 20);
audioElement = createAudio("sample_audio.wav");
audioElement.position(20, 50);
audioElement.size(300);
// Show the audio controls
audioElement.showControls();
}
Example 2:
function setup() {
createCanvas(300, 300);
text("Loading the audio...", 20, 20);
audioElement = createAudio("sample_audio.mp3", afterLoad);
audioElement.position(20, 20);
audioElement.size(300);
playBtn = createButton("Play Audio");
playBtn.position(30, 80);
playBtn.mouseClicked(playAudio);
pauseBtn = createButton("Pause Audio");
pauseBtn.position(150, 80);
pauseBtn.mouseClicked(pauseAudio);
}
function afterLoad() {
text("The audio has finished loading and"+
" can now be played!", 20, 40);
}
function playAudio() {
audioElement.play();
}
function pauseAudio() {
audioElement.pause();
}
Output:
Online editor: https://editor.p5js.org/
Environment Setup: https://www.geeksforgeeks.org/javascript/p5-js-soundfile-object-installation-and-methods/
Reference: https://p5js.org/reference/#/p5/createAudio
Online editor: https://editor.p5js.org/
Environment Setup: https://www.geeksforgeeks.org/javascript/p5-js-soundfile-object-installation-and-methods/
Reference: https://p5js.org/reference/#/p5/createAudio