frames()函數是p5.js庫中的內置函數。此函數用於返回幀數。在samplesRate,持續時間和幀之間有一個簡單的方程式。等式為幀=采樣率*持續時間。
用法:
frames()
注意:僅當index.html文件的開頭部分中包含聲音庫時,所有與聲音相關的函數才起作用。
參數:該函數不接受任何參數。
返回值:此函數返回一個保存幀數的整數。
以下示例說明了JavaScript中的p5.frames()函數:
例:
var sound;
var frm;
function preload() {
// Initialize sound
sound = loadSound("pfivesound.mp3");
}
function setup() {
// Playing the preloaded sound
sound.play();
// will return no of frames
frm = sound.frames();
console.log(frm);
}
輸出:
10201860 // no of frames of the played audio
支持的瀏覽器:下麵列出了p5.js frames()函數支持的瀏覽器:
- 穀歌瀏覽器
- IE瀏覽器
- 火狐瀏覽器
- 蘋果瀏覽器
- Opera
相關用法
- HTML Window frames用法及代碼示例
- PHP next()用法及代碼示例
- CSS var()用法及代碼示例
- PHP pow( )用法及代碼示例
- p5.js day()用法及代碼示例
- PHP each()用法及代碼示例
- CSS url()用法及代碼示例
- p5.js pow()用法及代碼示例
- p5.js second()用法及代碼示例
- PHP pi( )用法及代碼示例
- PHP Ds\Map put()用法及代碼示例
- PHP Ds\Map get()用法及代碼示例
注:本文由純淨天空篩選整理自skyridetim大神的英文原創作品 p5.js | frames() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。