HTML 5 basics audio and video

HTML5 provides a standard for playing audio.

Audio on the Web

Until now, there was no standard for playing audio on web pages.

Today, most audio is played through plug-ins (such as Flash). However, not all browsers have the same plugins.

HTML5 specifies a standard way to include audio through the audio element.

The audio element can play sound files or audio streams.

Audio formats

Currently, the audio element supports three audio formats:

1.png

How it works

To play audio in HTML5, all you need is:

<audio src="song.ogg" controls="controls"></audio>

Note: The control attribute is used to add play, pause and volume controls.

Let’s write an example below: By writing the address of mp3, we can listen to music on the web page. The code is as follows

<article>
<header>
<meta charset="utf-8">
</header>
    <audio src="/asset/1.mp3" controls="controls"></audio>
</article>

HTML5 Video(video)

Many sites Videos are used everywhere. HTML5 provides a standard for displaying videos.

Look at the following piece of code

<article>
<header>
<meta charset="utf-8">
</header> ;
                                                                                                                                                               "video/ogg">
</video>
</article>

We can put the address of the video you need to watch in src, so that you can watch the video

Continuing Learning
||
<article> <header> <meta charset="utf-8"> </header> <audio src="/asset/1.mp3" controls="controls"></audio> </article>
submitReset Code