Courses/Design & Technique-Essential Web Design/Q2/06

From Publication Station
Revision as of 15:53, 23 December 2015 by Andre (talk | contribs) (Created page with "=audio and video in HTML5= HMTL5 includes a standard way to embed audio and video tags, without the use of flash. It playing audio and video quite easy and opens up a lot of...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

audio and video in HTML5

HMTL5 includes a standard way to embed audio and video tags, without the use of flash. It playing audio and video quite easy and opens up a lot of possibilities audio-visual interaction and manipulation.

Let's see how.

requirements

files

Video files such as .avi .mp4 .ogv .mkv are just container formats. Just like a ZIP file can contain any sort of file within it, video container formats only define how to store things within them, not the kinds of data are stored. [1]

Each of the container formats has a corresponding audio and video codec. A codec defines the way (the algorithm) by which a audio or video stream is encoded. [2]

  • container
    • medium
    • audio codec
    • video codec - H.264, Theora
    • browser

CREATE TABLE

video codecs

H264

  • can be embedded in mp4 container
  • is patent-encumbered

=Theora

  • royalty-free codec
  • cane be embedded in any codec, but is most common in .ogv container


audio codecs

tags

event listeners

  1. http://diveintohtml5.info/video.html
  2. Note: a lossy audio and video compression codecs try to store the max amount of information in the smallest amount of space. One technique use to achieve this goal in video is the use of key frames instead of sequence of frames. In a second there only two or three key frames are used to create the illusion of movement, the remaining frames are filled with inbetweens, changes og pixel color. When a drastic change to the image occurs a key frame must be created.