HTML | DOM Audio currentTime Property
The Audio currentTime property is used for setting or returning the current position of the audio playback. The Audio currentTime property returns the audio playback position in the form of seconds.
The playback jumps to the specified position when this property is set.
Syntax:
- Return the currentTime property:
audioObject.currentTime
- Set the currentTime property:
audioObject.currentTime = seconds
- seconds :It is used to specify the position for the playback of the video in seconds.
- Before clicking the button:
- After clicking the button:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Apple Safari
Property Values:
Below program illustrates the Audio currentTime Property :
Example: Setting time position to 50 seconds.
<!DOCTYPE html> < html > < head > < title > Audio currentTime Property </ title > </ head > < body style = "text-align: center" > < h1 style = "color: green" > GeeksforGeeks </ h1 > < h2 style = "font-family: Impact" > Audio currentTime Property </ h2 > < br > < audio id = "Test_Audio" controls autoplay> < source src = "sample1.ogg" type = "audio/ogg" > < source src = "sample1.mp3" type = "audio/mpeg" > </ audio > < p >To changing the current playback position, double click the "Change Playback Position" button.</ p > < br > < button ondblclick = "My_Audio()" > Change Playback Position </ button > < p id = "test" ></ p > < script > var a = document.getElementById("Test_Audio"); function My_Audio() { a.currentTime = 50; } </ script > </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers: The browser supporte by HTML | DOM Audio currentTime Property are listed below: