Multimedia Signal Processing
Fundamentals and Applications
Thorsten Thormählen
April 22, 2024
Part 2, Chapter 2
Thorsten Thormählen
April 22, 2024
Part 2, Chapter 2
This is the print version of the slides.
Advance slides with the → key or
by clicking on the right border of the slide
Slides can also be advanced by clicking on the left or right border of the slide.
| Male Voice | Concert |
| Male Voice | Concert |
| Male Voice | Concert |
| Male Voice | Concert |
| Male Voice | Concert |
<audio> and <video> tag
<video> or <audio> tag allows to specify several alternative sources<audio> / <video> Tag
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Audio and Video</title>
</head>
<body>
<h1>Video</h1>
<video preload controls>
<source src="./bunny.ogv" type='video/ogg; codecs="theora, vorbis"'>
<source src="./bunny.webm" type='video/webm; codecs="vp8, vorbis"'>
<source src="./bunny.mp4" type='video/mp4; codecs="avc1.58A01E, mp4a.40.2"'>
<p> HTML5 video tag not supported </p>
</video>
<h1>Audio</h1>
<audio controls>
<source src="./song.m4a" type="audio/x-aac" />
<source src="./song.mp3" type="audio/mpeg" />
<source src="./song.ogg" type="audio/ogg" />
<p> HTML5 audio tag not supported </p>
</audio>
</body>
</html>
Please notify me by e-mail if you have questions, suggestions for improvement, or found typos: Contact