HTML | <audio> preload Attribute
The HTML audio preload Attribute is used to specify the way the author thinks the audio should be loaded when the page loads. The audio preload attribute allows the author to portray to the browser about the way the user experience of a website should be implemented.
Syntax:
<audio preload="auto | metadata | none">
Attribute Values:
- auto: It is used to specify that the browser should load the entire video when the page loads.
- metadata: It is used to specify that the browser should load only metadata when the page loads.
- none: It is used to specify that the browser should NOT load the video when the page loads.
Example:
<!DOCTYPE html> < html > < head > < title > HTML Audio preload Attribute </ title > </ head > < body style = "text-align: center" > < h1 style = "color: green" > GeeksforGeeks </ h1 > < h2 style = "font-family: Impact" > HTML Audio preload Attribute </ h2 > < br > < audio id = "Test_Audio" controls preload = "none" > < source src = "sample1.mp3" type = "audio/mpeg" > </ audio > </ body > </ html > |
chevron_right
filter_none
Output:
Supported Browsers: The browsers supported by HTML audio preload Attribute are listed below:
- Google Chrome 4.0
- Internet Explorer 9.0
- Firefox 4.0
- Apple Safari 4.0
- Opera 10.5