Reference+
Name
duration()
Class
SoundFile
Description
Returns the duration of the soundfile in seconds.
Examples
import processing.sound.*; SoundFile file; void setup() { size(640, 360); background(255); // Load a soundfile from the data folder of the sketch and get the duration of the file file = new SoundFile(this, "sample.mp3"); println("Duration= " + file.duration() + " seconds"); } void draw() { }
Syntax
soundfile.duration()
Return
float
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.