SlideShare a Scribd company logo
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page1Chapter 5.1: Documents and Hypermedia
Chapter 2: Basics
Chapter 3: Multimedia Systems – Communication Aspects and Services
Chapter 4: Multimedia Systems – Storage Aspects
Chapter 5: Multimedia Usage and Applications
• Documents and Hypermedia
• Multimedia User Interfaces
• Abstractions for Programming
• Multimedia Applications
5.1: Documents and Hypermedia
• Multimedia Documents
• Hypertext, Hypermedia and
SGML
• WWW and HyperText
Markup Language (HTML)
• Multimedia and Hypermedia
Information Coding Expert
Group (MHEG)
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page2Chapter 5.1: Documents and Hypermedia
Multimedia Applications
Needed for Multimedia:
• Encoding of multimedia data
• Protocols for multimedia communication, network and system resources, synchronization
• Data storage on hard disk, CD, databases
Now: how to design and work with multimedia applications?
• Multimedia documents: How to describe, structure and access documents containing
several media in an appropriate way?
• Design of multimedia system interfaces: How to design good interfaces for a human user
to access the applications?
• Programming: How to ease the way of constructing multimedia applications?
First: multimedia documents
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page3Chapter 5.1: Documents and Hypermedia
Presentation
Model
Manipulation
Model
Representation
Model
Content
Structure
Multimedia Documents
Exchanging documents requires that the
document architecture is known. This
requires a definition of an architecture:
• Content: multi-/mono-media information
• Structure: spatial and temporal relations
between information
• Manipulation Model: definition of
operations for creation, change and
deletion of information
• Representation Model: exchange protocol
and data format
• Presentation Model: rules for document
presentation
A multimedia document then is a document which
comprises at least one continuous (time-dependent)
medium and one discrete (time-independent) medium
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page4Chapter 5.1: Documents and Hypermedia
Mono-media Document Example: Hypertext
Hypertext System
• A system that allows to read several related textual documents nonlinearly
Node-Link Hypertext Model:
• Individually chunks of (textual) information (also called nodes) are set in relation by
means of hyperlinks
• Hyperlink: relation between two or more nodes, defining a structure
• Hypertext Document: distinct set of nodes and links which constitutes a logical entity
• Hyperweb: distinct set of hyperlinks
Linear text
Hypertext
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page5Chapter 5.1: Documents and Hypermedia
Multimedia Documents: Hypermedia
• Hypermedia is the generalization of hypertext to include additional media like
graphics, photos, audio clips, video sequences, animations
• Synchronization and linking of these media elements to other elements must be
possible
• Hypermedia systems allow interactive, integrated and synchronized presentation of
multimedia information
Multimedia Hypermedia Hypertext
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page6Chapter 5.1: Documents and Hypermedia
Hypermedia
Presentation and user interface
Based on a given structure and user’s display, it is decided:
• which data to present
• how the data are presented
Hypermedia abstract machine
• Determine the structure of the document
• Knowledge about references, data structures, attributes
Database
• Storage of data as objects without semantics or structure definitions
• Storage management: consistency for multi-user access, persistency, fault
tolerance, …
3 Layers of different functionalities:
Description of hypermedia documents is possible e.g. with SGML, HTML/XML, or MHEG
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page7Chapter 5.1: Documents and Hypermedia
Standard Generalized Markup Language (SGML)
SGML was evolved from an IBM internal project, and was strongly supported by
American publishers:
• Authors define titles, tables, etc. inside a document in a uniform way, without any
description of the actual representation
• Publisher determines layout
Basic ideas:
• Author uses tags (markups) to mark parts of the text to be e.g. a title or a table
• SGML determines how tags have to look like
• User groups agree on the meaning of the tags
• Formatter generates document layout from tags
SGML defines a syntax, not semantics!
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page8Chapter 5.1: Documents and Hypermedia
SGML: Concept
Relationship between:
• Document
Data content
Tags (markups)
• Document Type Definition (DTD):
Set of markup declarations, define
• Element types
• Attributes of elements
• Hierarchical relationships between elements
• Procedures
Specify the document processing
Correspond to functions of the formatter
Example:
<title>Multimedia Systems</title>
<author>Otto Spaniol</author>
<site>RWTH Aachen</site>
<summary>In multimedia systems, …
</summary>
…
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page9Chapter 5.1: Documents and Hypermedia
SGML: Tag Categories
Descriptive Tags:
• Define the structure of the document in the form <tag> text </tag>
Entity Reference:
• For symbol substitution and file, data set, and variable embedding; the actual
content can be inserted later at the corresponding place
• Example: &Ae.rger ... means ... Ärger
Processing instructions:
• Instructions used by other programs, e.g. a formatter
• E.g. for the embedding of different media
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page10Chapter 5.1: Documents and Hypermedia
SGML: Tag Categories
Tag declaration:
• Can define the entities referred to by the entity references, e.g.
<!ELEMENT Ae (...)>
• Can define rules for the structure of the document, e.g.
<!Element paper (preamble, body, postamble)>
<!Element preamble (title, author, side)>
<!Element title (#CDATA)> --character data
<!Element body (...)>
...
paper
postamblebodypreamble
title author address
characters
chapter 1
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page11Chapter 5.1: Documents and Hypermedia
SGML and Multimedia
Embedding of multimedia data:
• As external document parts from separate files
• Originally embedded as CGM (Computer Graphics Metafile) graphic
Concrete data referred by using NDATA
Example:
<!ATTLIST video id ID #IMPLIED>
<!ATTLIST video synch #IMPLIED>
<!ELEMENT video (audio, movpic)>
<!ELEMENT audio (#NDATA)> -- non-text media
<!ELEMENT movpic (#NDATA)> -- non-text media
...
<!ELEMENT story (preamble, body, postamble)>
• Used now: HTML
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page12Chapter 5.1: Documents and Hypermedia
SGML Conformant Languages
HTML
• HyperText Markup Language
• For description of hypertext / hypermedia in the World Wide Web (WWW)
• Most used SGML-language today
HyTime
• ISO standard for structured presentation of hypermedia information
SMDL
• Standard Music Description Language
XML
• eXtensible Markup Language
• Driven by W3C consortium (XML working group)
• Designed to enable the use of SGML on the WWW
• “Meta language”: lets you design your own markup language
• Conforms better to SGML as HTML does – “format of the future”
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page13Chapter 5.1: Documents and Hypermedia
The World Wide Web (WWW)
• WWW: Internet-wide distributed hypermedia information retrieval system, provides
access to large universe of documents
• Client-server model:
Clients: (Web browsers) collection of programs which can send requests for
documents to WWW servers
Servers: programs that, after they receive requests, send back the appropriate
answers - either documents or error messages
• Major WWW standards:
HTTP: HyperText Transfer Protocol
(transmission of documents)
URL: Uniform Resource Locator
(address of document)
HTML: HyperText Markup Language
(document format)
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page14Chapter 5.1: Documents and Hypermedia
The World Wide Web – Functional Model
• Proxy breaks up the connection into client/proxy and proxy/server requests and responses
• Allows for
Caching
Prefetching (proxy prefetches the links included in the last requested document)
Usage of dedicated (transport) protocols between client/proxy and server/proxy
Conversion of transferred content to meet the client requirements and transfer
medium (e.g. low bandwidth transfer medium like wireless access)
Set of WWW Servers
Client (Browser)
Request Response
Request
Response
Proxy
(optional)
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page15Chapter 5.1: Documents and Hypermedia
Proxy/Cache Approaches
Autonomous Caching
• Each proxy itself decides whether to cache or to
displace a document
• No additional management overhead
Hierarchical Caching
• Information about requests is forwarded “upwards”
• Central management
Cooperative Caching
• Groups of proxies may exchange documents
• Even documents that are retrieved very often don’t need to
be stored everywhere (allows for better scalability)
• Group management needed
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page16Chapter 5.1: Documents and Hypermedia
Hypertext in the WWW
Nodes
• Hypertext documents represented by HyperText Markup Language (HTML) or
arbitrary information objects referenced by means of an URL
Hyperlinks
• Embedded in HTML documents, directional point-to-point
Source anchors
• Text portions or images regions included in HTML documents
Destination anchors
• Either information objects addressable through an URL or specific parts of HTML
documents
Link type
• Always a reference for further reading
• Further information in addition to the pure link between two nodes
• Example: differentiation between different kinds of destination nodes
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page17Chapter 5.1: Documents and Hypermedia
HTML is a SGML Document Type Definition (DTD), giving syntax and semantics of
hypertext documents by defining tags for
• describing the text structure (not the layout)
• creating hyperlinks
• embedding objects like graphics
• describing tables
• ...
Coding
• HTML Documents are usually stored as text files
Browsers
• Can understand tags
• Can convert them into page layout
Hypertext Markup Language (HTML)
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page18Chapter 5.1: Documents and Hypermedia
Hypertext Markup Language
Source document
Parser
Formatter
Target document
HTML
Rules
Document
type
Semantics of
attributes
The basic definitions of HTML support only the representation of hypertext documents.
Numerous extensions exist that move HTML to more interactive documents and
hypermedia.
Drawback: documents that use extensions maybe are tailored to particular browsers
stored on
the server
done by the
browser
presented
to the user
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page19Chapter 5.1: Documents and Hypermedia
Document: Internal Representation
Some HTML tags:
<HEAD>...</HEAD>: Page header
<B>...</B>: Bold text
<P>: New paragraph
<IMG SRC=“...”>: Inclusion of picture
<A HREF=“...”>...</A>: Link to another document
<HEAD>My Page</HEAD>
<BODY>
This is my own web page.
<P><B>Ain’t it nice?</B>
<P>Here’s my picture: <IMG SRC=“myself.jpg”>
<P><A HREF=“http://www.me.info/myself.html”>Here</A>
you can find further information about me.
</BODY>
Example:
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page20Chapter 5.1: Documents and Hypermedia
Forms and CGI (Common Gateway Interface)
Forms are used to convey information from client to server:
HTML representation:
...
<FORM ACTION=“http://www.info.com/cgi-bin/order“ METHOD=POST>
<P>Please send me more information!
<P>Name <INPUT NAME=“customer“ SIZE=30>
<P>Street <INPUT NAME=“street“ SIZE=30>
<P>Name <INPUT NAME=“city“ SIZE=30>
<INPUT TYPE=SUBMIT VALUE=“Send!“>
</FORM>
...
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page21Chapter 5.1: Documents and Hypermedia
Forms and CGI
The <FORM> tag specifies
• Transmission method
GET: get document from URL
POST: in this case, a document is sent to the server, e.g.
customer=Bill+Clinton&street=The+White+House&city=Washington
• Action to be taken by server, e.g. execution of a CGI script
CGI: Common Gateway Interface
• CGI script: a program which is
executed at the server
on behalf of clients’ request (as defined by transmitted parameters)
e.g. a database query
• Output of the CGI script is returned to client, e.g. newly generated WWW page
• Addressing of scripts via URLs, usually in directory cgi-bin
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page22Chapter 5.1: Documents and Hypermedia
Enhanced Client-Server Interaction
Problem with CGI scripts: client interactions are limited - programs are executed on the
server
Solution: execute scripts/programs on client side
Main idea
• URL on a page points to small program
• Program is called applet
• When clicked: browser downloads applet to the client and executes it there
Advantages:
• WWW pages become more interactive
• Browser capabilities can be extended on-the-fly
• E.g. loading of new viewers when needed
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page23Chapter 5.1: Documents and Hypermedia
Java: Fundamentals
Java:
• Programming language to write applets
• Originated from Sun Microsystems
Inclusion of applets into HTML documents by new tag <APPLET>
• E.g. <APPLET CODE=game.class WIDTH=100 HEIGHT=200></APPLET>
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page24Chapter 5.1: Documents and Hypermedia
Applet Lifecycle
import java.applet.*;
public class myApplet extends Applet {
public void init()
{
... // called on first startup
}
public void start()
{
... // called when page entered (again)
}
public void stop()
{
... // called when page left
}
public void destroy()
{
... // called when browser/runtime environment is finally left
}
public void myMethod(){
... // do something
}
}
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page25Chapter 5.1: Documents and Hypermedia
The World Wide Web – Problems
The WWW with HTML in combination with scripts and applets serves as a basis for
presenting multimedia content. But:
• Users can get “lost in hyperspace” because documents are arbitrarily structured, no
overview is possible
• Difficult to find information (search engines have scalability problems)
• No version control of documents (detection of outdated information)
• No support for document authoring
• No link consistency: dangling links are created by the deletion of one link end
• Low performance and high network load (solution: proxy servers)
• No linking between dynamic media possible (no real hypermedia)
• ... much more
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page26Chapter 5.1: Documents and Hypermedia
Multimedia and Hypermedia Information Coding
Expert Group (MHEG)
MHEG is an “umbrella standard” for multimedia objects. It provides a language for
control of delivery of multimedia objects:
• Exchange format and representation for composed (time-dependent) multimedia
information
• Provides a structures for interactive, spatial and temporal related information
• Suitable for real-time (distributed) multimedia/hypermedia applications (no complex
parsing and interpretation required)
• Platform independent description
• Typical application: devices with small resources like point-of-sales terminals, video
on demand set-top boxes (MHEG is e.g. used in DVB), ...
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page27Chapter 5.1: Documents and Hypermedia
MHEG Family
Outdated standards:
• MHEG-1: MHEG Object Representation, Base Notation (ASN.1)
• MHEG-2: MHEG Alternate Notation (SGML)
• MHEG-3: MHEG Extension for Scripting Language Support
• MHEG-4: Registration Procedures for Format Identifiers
Current standards:
• MHEG-5: Support for Base-Level Interactive Applications
• MHEG-6: Support for Enhanced Interactive Applications: JavaVM
• MHEG-7: Conformance Testing
• MHEG-8: XML
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page28Chapter 5.1: Documents and Hypermedia
MHEG-5: Objects, Events, Links
Multimedia applications can be described using MHEG as collection of scenes. Both
contain objects and links; on the happening of certain events for an object (mouse
movement, clicks, …) the effects of the corresponding link are processed.
Objects
Events
Links
MHEG application
MHEG scene
MHEG scene
MHEG scene
Objects
Links
Objects
Links
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page29Chapter 5.1: Documents and Hypermedia
MHEG
Formatter
MHEG Engine
MHEG
Object
Storage
Information input
(e.g. web of hypermedia documents)
MHEG
Parser
MHEG Engine
MHEG
Object
Storage
Object Transfer
Object Request
Interactive presentation
MHEG Objects
MHEG standard: data structures and binary representation of MHEG objects
(not: retrieval protocol or MHEG Engine)
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page30Chapter 5.1: Documents and Hypermedia
MHEG Object Classes
MHEG objects are defining
• contents (Content Class)
• user Interaction (Interaction Class)
• presentation attributes (Behavior Class)
• …
Instances can be created from all leaves
of this MHEG class hierarchy tree.
Instances cannot be created from
internal nodes of the tree.
MH Object
Behavior Descriptor Component Macro
Action Link Script Content Interaction Composite
Selection Modification
e.g. “push Stop button“
e.g. “edit a data input file“
e.g. graphics, text, ...e.g. “start“
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page31Chapter 5.1: Documents and Hypermedia
MHEG Objects Examples
Complex MHEG Objects include several other MHEG objects that determine
• the content (output objects)
• the user interaction (input objects)
• the presentation (action objects)
• the relations between the different objects (link objects)
Input Objects
(user Interaction)
Button A (start)
Button B (stop)
Slider A
(Volume)
Menu A
(Control)
Output Objects
Picture A
(e.g. JPEG)
Video 1
(e.g. MPEG)
Text A
Text B
Action Objects
Action 1
Volume = 50%
Action 2
Pos. = (100,200)
Action 3
Pos. = (250,100)
Link Objects
LINK Action 1
TO Video 1
LINK Action 2
TO Picture A
Action 3
START
Action 4
START Script 1
LINK Action 3
TO Button A
IF Button A =
CLICKED
LINK Action 3
TO Video 1
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page32Chapter 5.1: Documents and Hypermedia
MHEG Presentable Object Example
Structural information included in MHEG objects allows to determine the presentation of
the object:
MHEG Hypermedia Object
Presentation
Video
start stop
Video 1
(e.g. MPEG)
Button A (start)
Button B (stop)
Text A
Action 1
Pos. = (100,200)
Action 2
Pos. = (100,180)
IF Button A =
CLICKED
LINK Action 3
TO Video 1
LINK Action 1
TO Video 1
presentation as described
by the included set of link,
action and script objects
external references
MHEG Objects may be distributed
MHEG Objects
MHEG ObjectsMHEG ObjectsMHEG Objects
Text A
Action 3
...
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page33Chapter 5.1: Documents and Hypermedia
MHEG Scheduling of Objects
MHEG supports real-time hypermedia presentations by allowing to add time
dependent object preparation and presentation attributes (time stamps)
Video
Audio
Text A Text B
Sec.
0 5 10 15 20 25
prepare audio
prepare text A
prepare text B
timestamps and actions stored
in the MHEG-Object
Presentation
The PREPARE action triggers the retrieval and initialization of the MHEG object.
Problem: delays cannot be exactly predicted by the MHEG engine.
Lehrstuhl für Informatik 4
Kommunikation und verteilte Systeme
Page34Chapter 5.1: Documents and Hypermedia
Conclusions
Multimedia documents can be represented using several techniques
• SGML provides a description language for “everything”. But: only a theoretical
construct
• HTML as reduced version of SGML for hypertext in the WWW
Different media can be linked in a document
Scripts and applets allow for dynamic content
But: some problems, e.g. no linking of different media possible
• MHEG as description language for multimedia objects
Allows for composing complex objects and specifying time dependencies
Also gives an integration with Java
Newer standards allow for the usage of XML for description

More Related Content

What's hot

Chapter1 151010021348-lva1-app6891
Chapter1 151010021348-lva1-app6891Chapter1 151010021348-lva1-app6891
Chapter1 151010021348-lva1-app6891
Nothando Mandlazi
 
Rm01 introduction --multimedia
Rm01 introduction --multimediaRm01 introduction --multimedia
Rm01 introduction --multimedia
Manuj Chaurasia
 
Introduction To Multimedia
Introduction To MultimediaIntroduction To Multimedia
Introduction To Multimedia
Laili Farhana M.I.
 
Multimedia Products And It's Importance in various Sectors
Multimedia Products And It's Importance in various SectorsMultimedia Products And It's Importance in various Sectors
Multimedia Products And It's Importance in various Sectors
Uma shankar shah Kalwar
 
Chapter 1 introduction to multimedia
Chapter 1 introduction to multimediaChapter 1 introduction to multimedia
Chapter 1 introduction to multimedia
ABDUmomo
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
IIUM
 
Chapter 6
Chapter 6Chapter 6
Chapter 6
Timothy Bryant
 
Ppt (lis 10)
Ppt (lis 10)Ppt (lis 10)
Multimedia an introduction chapter 1
Multimedia an introduction chapter 1Multimedia an introduction chapter 1
Multimedia an introduction chapter 1
Neha Syed
 
Multimedia
MultimediaMultimedia
Multimedia
Gaurav Aggarwal
 
B.sc i bio chem u 3introduction to multimedia
B.sc i bio chem u 3introduction to multimediaB.sc i bio chem u 3introduction to multimedia
B.sc i bio chem u 3introduction to multimedia
Rai University
 
B.sc i cs u 3 introduction to multimedia
B.sc i cs u 3 introduction to multimediaB.sc i cs u 3 introduction to multimedia
B.sc i cs u 3 introduction to multimedia
Rai University
 
Lec1 2 introduction to Multimedia
Lec1 2 introduction to MultimediaLec1 2 introduction to Multimedia
Lec1 2 introduction to Multimedia
Shona Hira
 
Introduction to Multimedia
Introduction to MultimediaIntroduction to Multimedia
Introduction to Multimedia
mandalina landy
 
Multimedia
MultimediaMultimedia
Multimedia
Utchi
 
Presentation on Multimedia
Presentation on MultimediaPresentation on Multimedia
Presentation on Multimedia
RITIKGUNDIYA
 
Multimedia: Making it Happen - Introduction
Multimedia: Making it Happen - IntroductionMultimedia: Making it Happen - Introduction
Multimedia: Making it Happen - Introduction
joelk
 
Multimedia Development and Evaluation
Multimedia Development and EvaluationMultimedia Development and Evaluation
Multimedia Development and Evaluation
Mechelle Tumanda
 

What's hot (18)

Chapter1 151010021348-lva1-app6891
Chapter1 151010021348-lva1-app6891Chapter1 151010021348-lva1-app6891
Chapter1 151010021348-lva1-app6891
 
Rm01 introduction --multimedia
Rm01 introduction --multimediaRm01 introduction --multimedia
Rm01 introduction --multimedia
 
Introduction To Multimedia
Introduction To MultimediaIntroduction To Multimedia
Introduction To Multimedia
 
Multimedia Products And It's Importance in various Sectors
Multimedia Products And It's Importance in various SectorsMultimedia Products And It's Importance in various Sectors
Multimedia Products And It's Importance in various Sectors
 
Chapter 1 introduction to multimedia
Chapter 1 introduction to multimediaChapter 1 introduction to multimedia
Chapter 1 introduction to multimedia
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 
Chapter 6
Chapter 6Chapter 6
Chapter 6
 
Ppt (lis 10)
Ppt (lis 10)Ppt (lis 10)
Ppt (lis 10)
 
Multimedia an introduction chapter 1
Multimedia an introduction chapter 1Multimedia an introduction chapter 1
Multimedia an introduction chapter 1
 
Multimedia
MultimediaMultimedia
Multimedia
 
B.sc i bio chem u 3introduction to multimedia
B.sc i bio chem u 3introduction to multimediaB.sc i bio chem u 3introduction to multimedia
B.sc i bio chem u 3introduction to multimedia
 
B.sc i cs u 3 introduction to multimedia
B.sc i cs u 3 introduction to multimediaB.sc i cs u 3 introduction to multimedia
B.sc i cs u 3 introduction to multimedia
 
Lec1 2 introduction to Multimedia
Lec1 2 introduction to MultimediaLec1 2 introduction to Multimedia
Lec1 2 introduction to Multimedia
 
Introduction to Multimedia
Introduction to MultimediaIntroduction to Multimedia
Introduction to Multimedia
 
Multimedia
MultimediaMultimedia
Multimedia
 
Presentation on Multimedia
Presentation on MultimediaPresentation on Multimedia
Presentation on Multimedia
 
Multimedia: Making it Happen - Introduction
Multimedia: Making it Happen - IntroductionMultimedia: Making it Happen - Introduction
Multimedia: Making it Happen - Introduction
 
Multimedia Development and Evaluation
Multimedia Development and EvaluationMultimedia Development and Evaluation
Multimedia Development and Evaluation
 

Similar to Multimedia system

Hypermedia
HypermediaHypermedia
Hypermedia
Suraj Kumar
 
CS-324-6-2.pdf
CS-324-6-2.pdfCS-324-6-2.pdf
CS-324-6-2.pdf
Rizulthakur2
 
02 From HTML tags to XHTML
02 From HTML tags to XHTML02 From HTML tags to XHTML
02 From HTML tags to XHTML
Rich Dron
 
IWMW 2002: Web standards briefing (session C2)
IWMW 2002: Web standards briefing (session C2)IWMW 2002: Web standards briefing (session C2)
IWMW 2002: Web standards briefing (session C2)
IWMW
 
Digital Libraries
Digital LibrariesDigital Libraries
Digital Libraries
Jack Eapen
 
Digital Libraries
Digital LibrariesDigital Libraries
Digital Libraries
Jack Eapen
 
WT_TOTAL.pdf
WT_TOTAL.pdfWT_TOTAL.pdf
WT_TOTAL.pdf
Nandyala Manoj Sai
 
Building bridges - Plone Conference 2015 Bucharest
Building bridges   - Plone Conference 2015 BucharestBuilding bridges   - Plone Conference 2015 Bucharest
Building bridges - Plone Conference 2015 Bucharest
Andreas Jung
 
Web technologies course, an introduction
Web technologies course, an introductionWeb technologies course, an introduction
Web technologies course, an introduction
Piero Fraternali
 
Reengineering PDF-Based Documents Targeting Complex Software Specifications
Reengineering PDF-Based Documents Targeting Complex Software SpecificationsReengineering PDF-Based Documents Targeting Complex Software Specifications
Reengineering PDF-Based Documents Targeting Complex Software Specifications
Moutasm Tamimi
 
1 module intro
1 module intro1 module intro
1 module intro
Rashath Mohamed
 
Web Design
Web DesignWeb Design
Web Design
Rawshan Ali
 
MetadataTheory: Metadata Tools (7th of 10)
MetadataTheory: Metadata Tools (7th of 10)MetadataTheory: Metadata Tools (7th of 10)
MetadataTheory: Metadata Tools (7th of 10)
Nikos Palavitsinis, PhD
 
Html
HtmlHtml
Html
kousika
 
INTRODUCTION TO INTERNET AND WWW
INTRODUCTION TO INTERNET AND WWWINTRODUCTION TO INTERNET AND WWW
INTRODUCTION TO INTERNET AND WWW
Prof Ansari
 
shobhit training report (3) (4).pdf report
shobhit training report (3) (4).pdf reportshobhit training report (3) (4).pdf report
shobhit training report (3) (4).pdf report
poojaranga2911
 
IBM InterConnect 2015 - IIB Effective Application Development
IBM InterConnect 2015 - IIB Effective Application DevelopmentIBM InterConnect 2015 - IIB Effective Application Development
IBM InterConnect 2015 - IIB Effective Application Development
Andrew Coleman
 
Web Technology
Web Technology Web Technology
Web Technology
Love Kothari
 
Web Technology
Web Technology Web Technology
Web Technology
Love Kothari
 
Unit 6 - Internet and Intranet Systems Development - IT
Unit 6 - Internet and Intranet Systems Development - ITUnit 6 - Internet and Intranet Systems Development - IT
Unit 6 - Internet and Intranet Systems Development - IT
Deepraj Bhujel
 

Similar to Multimedia system (20)

Hypermedia
HypermediaHypermedia
Hypermedia
 
CS-324-6-2.pdf
CS-324-6-2.pdfCS-324-6-2.pdf
CS-324-6-2.pdf
 
02 From HTML tags to XHTML
02 From HTML tags to XHTML02 From HTML tags to XHTML
02 From HTML tags to XHTML
 
IWMW 2002: Web standards briefing (session C2)
IWMW 2002: Web standards briefing (session C2)IWMW 2002: Web standards briefing (session C2)
IWMW 2002: Web standards briefing (session C2)
 
Digital Libraries
Digital LibrariesDigital Libraries
Digital Libraries
 
Digital Libraries
Digital LibrariesDigital Libraries
Digital Libraries
 
WT_TOTAL.pdf
WT_TOTAL.pdfWT_TOTAL.pdf
WT_TOTAL.pdf
 
Building bridges - Plone Conference 2015 Bucharest
Building bridges   - Plone Conference 2015 BucharestBuilding bridges   - Plone Conference 2015 Bucharest
Building bridges - Plone Conference 2015 Bucharest
 
Web technologies course, an introduction
Web technologies course, an introductionWeb technologies course, an introduction
Web technologies course, an introduction
 
Reengineering PDF-Based Documents Targeting Complex Software Specifications
Reengineering PDF-Based Documents Targeting Complex Software SpecificationsReengineering PDF-Based Documents Targeting Complex Software Specifications
Reengineering PDF-Based Documents Targeting Complex Software Specifications
 
1 module intro
1 module intro1 module intro
1 module intro
 
Web Design
Web DesignWeb Design
Web Design
 
MetadataTheory: Metadata Tools (7th of 10)
MetadataTheory: Metadata Tools (7th of 10)MetadataTheory: Metadata Tools (7th of 10)
MetadataTheory: Metadata Tools (7th of 10)
 
Html
HtmlHtml
Html
 
INTRODUCTION TO INTERNET AND WWW
INTRODUCTION TO INTERNET AND WWWINTRODUCTION TO INTERNET AND WWW
INTRODUCTION TO INTERNET AND WWW
 
shobhit training report (3) (4).pdf report
shobhit training report (3) (4).pdf reportshobhit training report (3) (4).pdf report
shobhit training report (3) (4).pdf report
 
IBM InterConnect 2015 - IIB Effective Application Development
IBM InterConnect 2015 - IIB Effective Application DevelopmentIBM InterConnect 2015 - IIB Effective Application Development
IBM InterConnect 2015 - IIB Effective Application Development
 
Web Technology
Web Technology Web Technology
Web Technology
 
Web Technology
Web Technology Web Technology
Web Technology
 
Unit 6 - Internet and Intranet Systems Development - IT
Unit 6 - Internet and Intranet Systems Development - ITUnit 6 - Internet and Intranet Systems Development - IT
Unit 6 - Internet and Intranet Systems Development - IT
 

More from pavishkumarsingh

Xml 2
Xml  2 Xml  2
Xml 1
Xml 1Xml 1
Javascript 2
Javascript 2Javascript 2
Javascript 2
pavishkumarsingh
 
Javascript 1
Javascript 1Javascript 1
Javascript 1
pavishkumarsingh
 
Html 5
Html   5Html   5
Html 4
Html   4Html   4
Html 4
Html   4Html   4
Html 3
Html   3Html   3
Html 2
Html   2Html   2
Html 1
Html 1Html 1
Final action script
Final action scriptFinal action script
Final action script
pavishkumarsingh
 
Visual basic
Visual basicVisual basic
Visual basic
pavishkumarsingh
 
Human - compuTer interaction
Human  -  compuTer interactionHuman  -  compuTer interaction
Human - compuTer interaction
pavishkumarsingh
 
Multimedia system(OPEN DOCUMENT ARCHITECTURE AND INTERCHANGING FORMAT)
Multimedia system(OPEN DOCUMENT ARCHITECTURE AND INTERCHANGING FORMAT)Multimedia system(OPEN DOCUMENT ARCHITECTURE AND INTERCHANGING FORMAT)
Multimedia system(OPEN DOCUMENT ARCHITECTURE AND INTERCHANGING FORMAT)
pavishkumarsingh
 
Authoring metaphors
Authoring metaphorsAuthoring metaphors
Authoring metaphors
pavishkumarsingh
 
Final action script for visual basic
Final action script for visual basicFinal action script for visual basic
Final action script for visual basic
pavishkumarsingh
 
Cognitive aspects in human computer interaction
Cognitive aspects in human computer interactionCognitive aspects in human computer interaction
Cognitive aspects in human computer interaction
pavishkumarsingh
 
list script and flowchart
list script and flowchartlist script and flowchart
list script and flowchart
pavishkumarsingh
 
Networks
Networks   Networks
Networks
pavishkumarsingh
 

More from pavishkumarsingh (19)

Xml 2
Xml  2 Xml  2
Xml 2
 
Xml 1
Xml 1Xml 1
Xml 1
 
Javascript 2
Javascript 2Javascript 2
Javascript 2
 
Javascript 1
Javascript 1Javascript 1
Javascript 1
 
Html 5
Html   5Html   5
Html 5
 
Html 4
Html   4Html   4
Html 4
 
Html 4
Html   4Html   4
Html 4
 
Html 3
Html   3Html   3
Html 3
 
Html 2
Html   2Html   2
Html 2
 
Html 1
Html 1Html 1
Html 1
 
Final action script
Final action scriptFinal action script
Final action script
 
Visual basic
Visual basicVisual basic
Visual basic
 
Human - compuTer interaction
Human  -  compuTer interactionHuman  -  compuTer interaction
Human - compuTer interaction
 
Multimedia system(OPEN DOCUMENT ARCHITECTURE AND INTERCHANGING FORMAT)
Multimedia system(OPEN DOCUMENT ARCHITECTURE AND INTERCHANGING FORMAT)Multimedia system(OPEN DOCUMENT ARCHITECTURE AND INTERCHANGING FORMAT)
Multimedia system(OPEN DOCUMENT ARCHITECTURE AND INTERCHANGING FORMAT)
 
Authoring metaphors
Authoring metaphorsAuthoring metaphors
Authoring metaphors
 
Final action script for visual basic
Final action script for visual basicFinal action script for visual basic
Final action script for visual basic
 
Cognitive aspects in human computer interaction
Cognitive aspects in human computer interactionCognitive aspects in human computer interaction
Cognitive aspects in human computer interaction
 
list script and flowchart
list script and flowchartlist script and flowchart
list script and flowchart
 
Networks
Networks   Networks
Networks
 

Recently uploaded

Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
Dr. Shivangi Singh Parihar
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
Celine George
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
IreneSebastianRueco1
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
sayalidalavi006
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
Israel Genealogy Research Association
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
TechSoup
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
PECB
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
paigestewart1632
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
RitikBhardwaj56
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
History of Stoke Newington
 

Recently uploaded (20)

Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.PCOS corelations and management through Ayurveda.
PCOS corelations and management through Ayurveda.
 
How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17How to Make a Field Mandatory in Odoo 17
How to Make a Field Mandatory in Odoo 17
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
RPMS TEMPLATE FOR SCHOOL YEAR 2023-2024 FOR TEACHER 1 TO TEACHER 3
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
 
The Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collectionThe Diamonds of 2023-2024 in the IGRA collection
The Diamonds of 2023-2024 in the IGRA collection
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat  Leveraging AI for Diversity, Equity, and InclusionExecutive Directors Chat  Leveraging AI for Diversity, Equity, and Inclusion
Executive Directors Chat Leveraging AI for Diversity, Equity, and Inclusion
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
ISO/IEC 27001, ISO/IEC 42001, and GDPR: Best Practices for Implementation and...
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
 
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...The simplified electron and muon model, Oscillating Spacetime: The Foundation...
The simplified electron and muon model, Oscillating Spacetime: The Foundation...
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
The History of Stoke Newington Street Names
The History of Stoke Newington Street NamesThe History of Stoke Newington Street Names
The History of Stoke Newington Street Names
 

Multimedia system

  • 1. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page1Chapter 5.1: Documents and Hypermedia Chapter 2: Basics Chapter 3: Multimedia Systems – Communication Aspects and Services Chapter 4: Multimedia Systems – Storage Aspects Chapter 5: Multimedia Usage and Applications • Documents and Hypermedia • Multimedia User Interfaces • Abstractions for Programming • Multimedia Applications 5.1: Documents and Hypermedia • Multimedia Documents • Hypertext, Hypermedia and SGML • WWW and HyperText Markup Language (HTML) • Multimedia and Hypermedia Information Coding Expert Group (MHEG)
  • 2. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page2Chapter 5.1: Documents and Hypermedia Multimedia Applications Needed for Multimedia: • Encoding of multimedia data • Protocols for multimedia communication, network and system resources, synchronization • Data storage on hard disk, CD, databases Now: how to design and work with multimedia applications? • Multimedia documents: How to describe, structure and access documents containing several media in an appropriate way? • Design of multimedia system interfaces: How to design good interfaces for a human user to access the applications? • Programming: How to ease the way of constructing multimedia applications? First: multimedia documents
  • 3. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page3Chapter 5.1: Documents and Hypermedia Presentation Model Manipulation Model Representation Model Content Structure Multimedia Documents Exchanging documents requires that the document architecture is known. This requires a definition of an architecture: • Content: multi-/mono-media information • Structure: spatial and temporal relations between information • Manipulation Model: definition of operations for creation, change and deletion of information • Representation Model: exchange protocol and data format • Presentation Model: rules for document presentation A multimedia document then is a document which comprises at least one continuous (time-dependent) medium and one discrete (time-independent) medium
  • 4. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page4Chapter 5.1: Documents and Hypermedia Mono-media Document Example: Hypertext Hypertext System • A system that allows to read several related textual documents nonlinearly Node-Link Hypertext Model: • Individually chunks of (textual) information (also called nodes) are set in relation by means of hyperlinks • Hyperlink: relation between two or more nodes, defining a structure • Hypertext Document: distinct set of nodes and links which constitutes a logical entity • Hyperweb: distinct set of hyperlinks Linear text Hypertext
  • 5. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page5Chapter 5.1: Documents and Hypermedia Multimedia Documents: Hypermedia • Hypermedia is the generalization of hypertext to include additional media like graphics, photos, audio clips, video sequences, animations • Synchronization and linking of these media elements to other elements must be possible • Hypermedia systems allow interactive, integrated and synchronized presentation of multimedia information Multimedia Hypermedia Hypertext
  • 6. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page6Chapter 5.1: Documents and Hypermedia Hypermedia Presentation and user interface Based on a given structure and user’s display, it is decided: • which data to present • how the data are presented Hypermedia abstract machine • Determine the structure of the document • Knowledge about references, data structures, attributes Database • Storage of data as objects without semantics or structure definitions • Storage management: consistency for multi-user access, persistency, fault tolerance, … 3 Layers of different functionalities: Description of hypermedia documents is possible e.g. with SGML, HTML/XML, or MHEG
  • 7. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page7Chapter 5.1: Documents and Hypermedia Standard Generalized Markup Language (SGML) SGML was evolved from an IBM internal project, and was strongly supported by American publishers: • Authors define titles, tables, etc. inside a document in a uniform way, without any description of the actual representation • Publisher determines layout Basic ideas: • Author uses tags (markups) to mark parts of the text to be e.g. a title or a table • SGML determines how tags have to look like • User groups agree on the meaning of the tags • Formatter generates document layout from tags SGML defines a syntax, not semantics!
  • 8. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page8Chapter 5.1: Documents and Hypermedia SGML: Concept Relationship between: • Document Data content Tags (markups) • Document Type Definition (DTD): Set of markup declarations, define • Element types • Attributes of elements • Hierarchical relationships between elements • Procedures Specify the document processing Correspond to functions of the formatter Example: <title>Multimedia Systems</title> <author>Otto Spaniol</author> <site>RWTH Aachen</site> <summary>In multimedia systems, … </summary> …
  • 9. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page9Chapter 5.1: Documents and Hypermedia SGML: Tag Categories Descriptive Tags: • Define the structure of the document in the form <tag> text </tag> Entity Reference: • For symbol substitution and file, data set, and variable embedding; the actual content can be inserted later at the corresponding place • Example: &Ae.rger ... means ... Ärger Processing instructions: • Instructions used by other programs, e.g. a formatter • E.g. for the embedding of different media
  • 10. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page10Chapter 5.1: Documents and Hypermedia SGML: Tag Categories Tag declaration: • Can define the entities referred to by the entity references, e.g. <!ELEMENT Ae (...)> • Can define rules for the structure of the document, e.g. <!Element paper (preamble, body, postamble)> <!Element preamble (title, author, side)> <!Element title (#CDATA)> --character data <!Element body (...)> ... paper postamblebodypreamble title author address characters chapter 1
  • 11. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page11Chapter 5.1: Documents and Hypermedia SGML and Multimedia Embedding of multimedia data: • As external document parts from separate files • Originally embedded as CGM (Computer Graphics Metafile) graphic Concrete data referred by using NDATA Example: <!ATTLIST video id ID #IMPLIED> <!ATTLIST video synch #IMPLIED> <!ELEMENT video (audio, movpic)> <!ELEMENT audio (#NDATA)> -- non-text media <!ELEMENT movpic (#NDATA)> -- non-text media ... <!ELEMENT story (preamble, body, postamble)> • Used now: HTML
  • 12. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page12Chapter 5.1: Documents and Hypermedia SGML Conformant Languages HTML • HyperText Markup Language • For description of hypertext / hypermedia in the World Wide Web (WWW) • Most used SGML-language today HyTime • ISO standard for structured presentation of hypermedia information SMDL • Standard Music Description Language XML • eXtensible Markup Language • Driven by W3C consortium (XML working group) • Designed to enable the use of SGML on the WWW • “Meta language”: lets you design your own markup language • Conforms better to SGML as HTML does – “format of the future”
  • 13. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page13Chapter 5.1: Documents and Hypermedia The World Wide Web (WWW) • WWW: Internet-wide distributed hypermedia information retrieval system, provides access to large universe of documents • Client-server model: Clients: (Web browsers) collection of programs which can send requests for documents to WWW servers Servers: programs that, after they receive requests, send back the appropriate answers - either documents or error messages • Major WWW standards: HTTP: HyperText Transfer Protocol (transmission of documents) URL: Uniform Resource Locator (address of document) HTML: HyperText Markup Language (document format)
  • 14. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page14Chapter 5.1: Documents and Hypermedia The World Wide Web – Functional Model • Proxy breaks up the connection into client/proxy and proxy/server requests and responses • Allows for Caching Prefetching (proxy prefetches the links included in the last requested document) Usage of dedicated (transport) protocols between client/proxy and server/proxy Conversion of transferred content to meet the client requirements and transfer medium (e.g. low bandwidth transfer medium like wireless access) Set of WWW Servers Client (Browser) Request Response Request Response Proxy (optional)
  • 15. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page15Chapter 5.1: Documents and Hypermedia Proxy/Cache Approaches Autonomous Caching • Each proxy itself decides whether to cache or to displace a document • No additional management overhead Hierarchical Caching • Information about requests is forwarded “upwards” • Central management Cooperative Caching • Groups of proxies may exchange documents • Even documents that are retrieved very often don’t need to be stored everywhere (allows for better scalability) • Group management needed
  • 16. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page16Chapter 5.1: Documents and Hypermedia Hypertext in the WWW Nodes • Hypertext documents represented by HyperText Markup Language (HTML) or arbitrary information objects referenced by means of an URL Hyperlinks • Embedded in HTML documents, directional point-to-point Source anchors • Text portions or images regions included in HTML documents Destination anchors • Either information objects addressable through an URL or specific parts of HTML documents Link type • Always a reference for further reading • Further information in addition to the pure link between two nodes • Example: differentiation between different kinds of destination nodes
  • 17. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page17Chapter 5.1: Documents and Hypermedia HTML is a SGML Document Type Definition (DTD), giving syntax and semantics of hypertext documents by defining tags for • describing the text structure (not the layout) • creating hyperlinks • embedding objects like graphics • describing tables • ... Coding • HTML Documents are usually stored as text files Browsers • Can understand tags • Can convert them into page layout Hypertext Markup Language (HTML)
  • 18. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page18Chapter 5.1: Documents and Hypermedia Hypertext Markup Language Source document Parser Formatter Target document HTML Rules Document type Semantics of attributes The basic definitions of HTML support only the representation of hypertext documents. Numerous extensions exist that move HTML to more interactive documents and hypermedia. Drawback: documents that use extensions maybe are tailored to particular browsers stored on the server done by the browser presented to the user
  • 19. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page19Chapter 5.1: Documents and Hypermedia Document: Internal Representation Some HTML tags: <HEAD>...</HEAD>: Page header <B>...</B>: Bold text <P>: New paragraph <IMG SRC=“...”>: Inclusion of picture <A HREF=“...”>...</A>: Link to another document <HEAD>My Page</HEAD> <BODY> This is my own web page. <P><B>Ain’t it nice?</B> <P>Here’s my picture: <IMG SRC=“myself.jpg”> <P><A HREF=“http://www.me.info/myself.html”>Here</A> you can find further information about me. </BODY> Example:
  • 20. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page20Chapter 5.1: Documents and Hypermedia Forms and CGI (Common Gateway Interface) Forms are used to convey information from client to server: HTML representation: ... <FORM ACTION=“http://www.info.com/cgi-bin/order“ METHOD=POST> <P>Please send me more information! <P>Name <INPUT NAME=“customer“ SIZE=30> <P>Street <INPUT NAME=“street“ SIZE=30> <P>Name <INPUT NAME=“city“ SIZE=30> <INPUT TYPE=SUBMIT VALUE=“Send!“> </FORM> ...
  • 21. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page21Chapter 5.1: Documents and Hypermedia Forms and CGI The <FORM> tag specifies • Transmission method GET: get document from URL POST: in this case, a document is sent to the server, e.g. customer=Bill+Clinton&street=The+White+House&city=Washington • Action to be taken by server, e.g. execution of a CGI script CGI: Common Gateway Interface • CGI script: a program which is executed at the server on behalf of clients’ request (as defined by transmitted parameters) e.g. a database query • Output of the CGI script is returned to client, e.g. newly generated WWW page • Addressing of scripts via URLs, usually in directory cgi-bin
  • 22. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page22Chapter 5.1: Documents and Hypermedia Enhanced Client-Server Interaction Problem with CGI scripts: client interactions are limited - programs are executed on the server Solution: execute scripts/programs on client side Main idea • URL on a page points to small program • Program is called applet • When clicked: browser downloads applet to the client and executes it there Advantages: • WWW pages become more interactive • Browser capabilities can be extended on-the-fly • E.g. loading of new viewers when needed
  • 23. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page23Chapter 5.1: Documents and Hypermedia Java: Fundamentals Java: • Programming language to write applets • Originated from Sun Microsystems Inclusion of applets into HTML documents by new tag <APPLET> • E.g. <APPLET CODE=game.class WIDTH=100 HEIGHT=200></APPLET>
  • 24. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page24Chapter 5.1: Documents and Hypermedia Applet Lifecycle import java.applet.*; public class myApplet extends Applet { public void init() { ... // called on first startup } public void start() { ... // called when page entered (again) } public void stop() { ... // called when page left } public void destroy() { ... // called when browser/runtime environment is finally left } public void myMethod(){ ... // do something } }
  • 25. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page25Chapter 5.1: Documents and Hypermedia The World Wide Web – Problems The WWW with HTML in combination with scripts and applets serves as a basis for presenting multimedia content. But: • Users can get “lost in hyperspace” because documents are arbitrarily structured, no overview is possible • Difficult to find information (search engines have scalability problems) • No version control of documents (detection of outdated information) • No support for document authoring • No link consistency: dangling links are created by the deletion of one link end • Low performance and high network load (solution: proxy servers) • No linking between dynamic media possible (no real hypermedia) • ... much more
  • 26. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page26Chapter 5.1: Documents and Hypermedia Multimedia and Hypermedia Information Coding Expert Group (MHEG) MHEG is an “umbrella standard” for multimedia objects. It provides a language for control of delivery of multimedia objects: • Exchange format and representation for composed (time-dependent) multimedia information • Provides a structures for interactive, spatial and temporal related information • Suitable for real-time (distributed) multimedia/hypermedia applications (no complex parsing and interpretation required) • Platform independent description • Typical application: devices with small resources like point-of-sales terminals, video on demand set-top boxes (MHEG is e.g. used in DVB), ...
  • 27. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page27Chapter 5.1: Documents and Hypermedia MHEG Family Outdated standards: • MHEG-1: MHEG Object Representation, Base Notation (ASN.1) • MHEG-2: MHEG Alternate Notation (SGML) • MHEG-3: MHEG Extension for Scripting Language Support • MHEG-4: Registration Procedures for Format Identifiers Current standards: • MHEG-5: Support for Base-Level Interactive Applications • MHEG-6: Support for Enhanced Interactive Applications: JavaVM • MHEG-7: Conformance Testing • MHEG-8: XML
  • 28. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page28Chapter 5.1: Documents and Hypermedia MHEG-5: Objects, Events, Links Multimedia applications can be described using MHEG as collection of scenes. Both contain objects and links; on the happening of certain events for an object (mouse movement, clicks, …) the effects of the corresponding link are processed. Objects Events Links MHEG application MHEG scene MHEG scene MHEG scene Objects Links Objects Links
  • 29. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page29Chapter 5.1: Documents and Hypermedia MHEG Formatter MHEG Engine MHEG Object Storage Information input (e.g. web of hypermedia documents) MHEG Parser MHEG Engine MHEG Object Storage Object Transfer Object Request Interactive presentation MHEG Objects MHEG standard: data structures and binary representation of MHEG objects (not: retrieval protocol or MHEG Engine)
  • 30. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page30Chapter 5.1: Documents and Hypermedia MHEG Object Classes MHEG objects are defining • contents (Content Class) • user Interaction (Interaction Class) • presentation attributes (Behavior Class) • … Instances can be created from all leaves of this MHEG class hierarchy tree. Instances cannot be created from internal nodes of the tree. MH Object Behavior Descriptor Component Macro Action Link Script Content Interaction Composite Selection Modification e.g. “push Stop button“ e.g. “edit a data input file“ e.g. graphics, text, ...e.g. “start“
  • 31. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page31Chapter 5.1: Documents and Hypermedia MHEG Objects Examples Complex MHEG Objects include several other MHEG objects that determine • the content (output objects) • the user interaction (input objects) • the presentation (action objects) • the relations between the different objects (link objects) Input Objects (user Interaction) Button A (start) Button B (stop) Slider A (Volume) Menu A (Control) Output Objects Picture A (e.g. JPEG) Video 1 (e.g. MPEG) Text A Text B Action Objects Action 1 Volume = 50% Action 2 Pos. = (100,200) Action 3 Pos. = (250,100) Link Objects LINK Action 1 TO Video 1 LINK Action 2 TO Picture A Action 3 START Action 4 START Script 1 LINK Action 3 TO Button A IF Button A = CLICKED LINK Action 3 TO Video 1
  • 32. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page32Chapter 5.1: Documents and Hypermedia MHEG Presentable Object Example Structural information included in MHEG objects allows to determine the presentation of the object: MHEG Hypermedia Object Presentation Video start stop Video 1 (e.g. MPEG) Button A (start) Button B (stop) Text A Action 1 Pos. = (100,200) Action 2 Pos. = (100,180) IF Button A = CLICKED LINK Action 3 TO Video 1 LINK Action 1 TO Video 1 presentation as described by the included set of link, action and script objects external references MHEG Objects may be distributed MHEG Objects MHEG ObjectsMHEG ObjectsMHEG Objects Text A Action 3 ...
  • 33. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page33Chapter 5.1: Documents and Hypermedia MHEG Scheduling of Objects MHEG supports real-time hypermedia presentations by allowing to add time dependent object preparation and presentation attributes (time stamps) Video Audio Text A Text B Sec. 0 5 10 15 20 25 prepare audio prepare text A prepare text B timestamps and actions stored in the MHEG-Object Presentation The PREPARE action triggers the retrieval and initialization of the MHEG object. Problem: delays cannot be exactly predicted by the MHEG engine.
  • 34. Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Page34Chapter 5.1: Documents and Hypermedia Conclusions Multimedia documents can be represented using several techniques • SGML provides a description language for “everything”. But: only a theoretical construct • HTML as reduced version of SGML for hypertext in the WWW Different media can be linked in a document Scripts and applets allow for dynamic content But: some problems, e.g. no linking of different media possible • MHEG as description language for multimedia objects Allows for composing complex objects and specifying time dependencies Also gives an integration with Java Newer standards allow for the usage of XML for description