Streaming Audio and Video on the Web

Size: px
Start display at page:

Download "Streaming Audio and Video on the Web"

Transcription

1 Streaming Audio and Video on the Web Asist.univ. Luminiţa GIURGIU Key words: media files, audio, video, streaming, streaming format 1. What s streaming Remember the audio/video files linked or embedded into a Web page, when the person browsing the Web site had to endure a long delay between clicking on a movie link and seeing that movie play. This was because the entire file needed to download before the file can play. Streaming alleviates this wait. Streaming involves sending media from a server to a client over a packet-based network. The server breaks the media into packets that are routed and delivered over the network. At the receiving end, the client reassembles the packets and the media is played as it comes in. A series of time-stamped packets is called a stream. Figure 1. The Principle of streaming (a snapshot in time) From a user s perspective, streaming differs from simple file transfer in that the client plays the media as it comes in over the network, rather than waiting for the entire media to be downloaded before it can be played. In fact, a client may never actually download a streaming video; it may simply reassemble the video s packets and play the video as the packets come in, and then discard them. 2. The client perspective A small buffer space is created on the user's computer when audio or video is streamed; here is the place where data starts downloading. As soon as the buffer is full, the file starts to play. As the file plays, it uses up information in the buffer. While the file is playing, more data is being

2 downloaded. As long as the data can be downloaded as fast as it is used up in playback, the file will play smoothly. Some important implication result: - the media file never exists in its entirety on the user's computer. As data in the buffer is used in playback, it is overwritten by new, incoming data. This means that user never have a complete copy of the file on his computer, so everytime he want to view the file, he have to come back to the Web site. Also, jumping forward or backward into the file requires the buffer be reloaded with pertinent data, with the subsequent delay of several seconds. 3. The server perspective To deliver streaming media two servers are required. Figure 2. Required servers First, the user requests a normal.html page that contains links to streaming media. This Web page can reside on any Web server. This links are to an intermediate file (.ram in the case of Real media). The.ram file is just a plain text file containing the address of the streaming media file. The job of the.ram file is to direct the request to the streaming server. The streaming server houses the media file itself (such as a.rm file for Real media). The streaming server's job is to balance the load of delivering streaming files through the network to many users. 4. Using SMIL for combining streams Streaming can be used for more than just delivering a single channel of audio or video. Multiple streams can be combined into one presentation using SMIL (synchronized multimedia integration language). If the presentation have to display text at a specific time during an music clip or to display a video of a speaker on one side of the screen, and coordinate his PowerPoint slides with his talk on the other side of the screen, SMIL is used to combine these streams, as well as build the graphic interface to present them.

3 The media files called by the SMIL file are often located on the streaming server, but they don't have to be. It is possible to refer to files located on other servers. The user requests the web page from a normal web server. The web page contains a link to a.ram file, which also lives on the web server. The Ram file points to a SMIL file that lives on the streaming server. The SMIL file divides the streaming window into areas, then coordinate different streams of content in each area together over time. The SMIL file also contains time codes to describe exactly when each piece of media appears. Figure 3. SMIL file on the streaming server 5. Live streaming In live streaming the user can view an event almost at it occurs; there is only a 5-10 second delay from the time the moment occurs to the time that moment is delivered to the user. First, a video camera or microphone capturing the live event is connected to a separate encoding computer. The encoding computer processes the video or audio signal and sends it in a continuous flow to the streaming server. The streaming server simply broadcasts that incoming signal to anyone who's connected. It's important to note that the.rm file in the diagram above is not a complete file containing the entire event. It contains chunk of data that is

4 currently being streamed to the users. This time, the server never holds a file containing the entire event. The event can be archived on the encoding machine while it's being sent to the server so a complete.rm file will exist on the encoding machine once the event was over. This archived file can be moved to the streaming server for viewers to watch later. Figure 4. Live streaming 6. Streaming File formats The following are several streaming media formats: RealNetworks' RealMedia format (.rm file extension) Microsoft's Windows Media format (.wmf file extension) Apple Computer's QuickTime format (.mov file extension) MPEG format (.mpg file extension) The decision what format to choose will be based on the type of available server and the software and hardware available to develop the media. Encoding Real streaming media seems to work much better with a PC than with a Mac, but QuickTime streaming is easier to build right now using a Mac. Concerning the streaming media viewers, the three major players at the moment appear to be RealNetworks' RealPlayer, Microsoft's Windows Media Player and Apple Computer's QuickTime Player. 7. Embedding streaming into a Web page Different streaming video can be built into a Web page by embedding it. The first advantage of embedding is the complete control over the look and functionality of the player. The player can works with the design of the page, and we can expose only those functions that are appropriate, for example expose only two buttons play and stop and set the player to play only one file. Embedding Windows Media Player: <HTML> <HEAD> <TITLE>Embedded Windows Media Player 6.4 Control</TITLE> </HEAD> <BODY> <OBJECT ID= MediaPlayer WIDTH=320 HEIGHT=240 CLASSID= CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95 STANDBY= Loading Windows Media Player components... TYPE= application/x-oleobject CODEBASE=

5 smp2inf.cab#version=6,4,7,1112 > <PARAM name= autostart value= True > <PARAM name= filename value= ><EMBED TYPE= application/xmplayer2 SRC= NAME= MediaPlayer WIDTH=320 HEIGHT=240> </EMBED> </OBJECT> </BODY> </HTML> Embedding Real Player <OBJECT ID=RVOCX CLASSID = clsid:cfcdaa03-8be4-11cf- B84B-0020AFBBCCFA WIDTH= 320 HEIGHT= 240 > <PARAM name= src value= > <PARAM name= autostart value= true > <PARAM name= controls value= imagewindow > <PARAM name= console value= video > <EMBED TYPE= audio/x-pn-realaudio-plugin SRC= WIDTH= 320 HEIGHT= 240 AUTOSTART= true CONTROLS= imagewindow CONSOLE= video > </EMBED> </OBJECT> The type attribute lets the browser know which plug-in to use to play the media. The src attribute tells the plug-in what media to play and where it resides. The src should be the ramgen path to the media, or a.ram reference file. The height and width attributes are the dimensions of the media. If the media is audio, it is necessary to set both the height and width to at least 2 or it may not work in all browsers. The autostart attribute determines whether the clip starts playing automatically or not. The console attribute gives the OBJECT/EMBED

6 tag an identifier that allows multiple OBJECT/EMBED tags to work together. The controls attribute defines which controls if any are used in the OBJECT/EMBED tag. Embedding QuickTime: The <EMBED> tag is similar to the <IMG> tag; they both have a SRC, WIDTH and HEIGHT parameter. These parameters are required and tell the browser the media to be displayed and the width and height of the media specified in the SRC attribute. For example: <embed src= sample.mov width= 320 eight= 256 ></embed> The src attribute is the media file to display either by an absolute or relative URL. The height attribute specifies the vertical size in pixels of the SRC attribute. The WIDTH attribute specifies its horizontal size. 8. Linking Web page with the streaming clip The most common method of linking the web page to the clips is through a Ram file, which is a metafile. This file uses the extension.ram and often has just one line that gives the full URL to the streaming clip or SMIL presentation. The reasons for using a Ram file rather than linking web page directly to streaming clips are: The Ram file launches RealOne player: the file extension.ram causes a Web browser to launch RealOne Player to play the presentation. The player might not launch when linking directly to a clip. For example, when linking the web page directly to a Flash Player file.swf, the browser launches Macromedia s Flash Player, but if intending to stream the Flash clip, the Ram file is needed to launch RealOne Player instead. The Ram file provides an RTSP URL for clips on RealSystem Server: clips on streaming server stream over the RTSP protocol, rather than HTTP. This means that the URL used to request the clips must start with rtsp:// rather than with Because browsers cannot make RTSP requests, the Web page is linked to a Ram file with an HTTP URL. The Ram file then gives RealOne Player the RTSP URL to the presentation. The Ram file can pass different parameters to the player: through optional Ram file parameters, the clip or SMIL presentation can be modified (playing it double size for example) and specified HTML pages can be displayed as the clip plays. The following actions occur when clicking a hypertext link to request a streaming presentation:

7 the Web browser requests the Ram file from a Web server or RealSystem Server; the Ram file causes the Web browser to launch RealOne Player; RealOne Player receives the Ram file and requests the clip or SMIL file from the Web server or RealSystem server; when a SMIL file is used, the player requests the clips based on the URLs in the SMIL file. 9. RTSP and HTTP A Web server uses HyperText Transport Protocol (HTTP) to deliver HTML pages and graphics. HTTP downloads files without regard to timelines. Downloading WebServer RealPlayer Figure 5. Downloading with HTTP URLs for media clips streamed by a streaming server begin with rtsp:// which causes Real server to use Real-Time Streaming Protocol (RTSP), Internet standard protocol set forth by the Internet Engineering Task Force. Designed specifically for streaming, RTSP enables RealSystem Server to adjust streaming data to keep clips playing smoothly. For example, when two clips play side-by-side, the player communicates with the real server about each clip s progress, indicating how much data it needs to keep playback synchronized. Streaming rtsp://streamserver.company.com RealServer RealPlayer

8 Figure 6. Streaming with RTSP The stream server can then adjust the data flow to compensate for changing network conditions, reducing low priority data if necessary to ensure that principal data gets through. Example of linking the web page with a video clip called videoclip.rm: <a href = play_video.ram>play the video clip!</a> The play_video.ram file is in the same directory with the web page. His content is one line giving the path to streaming server or web server: rtsp://streamserver.company.com/videoclip.rm or: Streaming multimedia presentations SMIL authoring offers a new way to assemble and deliver streaming multimedia presentations. Rather than the traditional way of creating a presentation by compiling a set of media into a single distributable file, SMIL lets authors choreograph separate media assets quickly and easily, with tools as simple as a text editor. Perhaps the best feature of SMIL is the ability to generate the code on the fly, as many Web pages are already created, and thereby offer personalized streaming multimedia. It's even possible to build a Web-based interface for allowing users to edit or assemble new multimedia presentations. For those who'd prefer a GUI authoring environment, there are tools for building SMIL presentations within a graphical environment that would look familiar to most multimedia authors. SMIL, while it offers many of the capabilities of existing multimedia environments like QuickTime, is not meant to be a replacement for these technologies. Rather, it's kind of universal glue for joining all kinds of different formats and types of media in interesting and useful ways. RealNetworks intends its G2 RealPlayer to be a universal player. Its architecture allows for third-party developers to add renders for new media types, which is how support was added for MPEG1, VRML, and MIDI, for example. Over the coming years, the maturation of both SMIL and the G2 RealPlayer may offer the most compelling opportunity yet for convergence between home entertainment and computer technologies. Bibliography

9 1. Buraga, C., Tehnologii Web, Bucureşti, Editura Matrix, pp , /ebooks/streamingmedia Streamingmedia ebooks 3. /html/resources Online Documentation 4. Tutorial online

Streaming video. Video on internet. Streaming video, live or on demand (VOD)

Streaming video. Video on internet. Streaming video, live or on demand (VOD) Streaming video 1 Video on internet. There are two different basic ways of presenting video on internet: The receiver downloads the entire video file and than plays it using some kind of media player The

More information

Skill Area 325: Deliver the Multimedia content through various media. Multimedia and Web Design (MWD)

Skill Area 325: Deliver the Multimedia content through various media. Multimedia and Web Design (MWD) Skill Area 325: Deliver the Multimedia content through various media Multimedia and Web Design (MWD) 325.1 Understanding of multimedia considerations for Internet (13hrs) 325.1.1 Analyze factors affecting

More information

Inserting multimedia objects in Dreamweaver

Inserting multimedia objects in Dreamweaver Inserting multimedia objects in Dreamweaver To insert a multimedia object in a page, do one of the following: Place the insertion point in the Document window where you want to insert the object, then

More information

QuickTime Pro an inexpensive (but clunky) solution

QuickTime Pro an inexpensive (but clunky) solution QuickTime Pro an inexpensive (but clunky) solution Converting Existing Media into QuickTime Movies Compatible Media (not an exhaustive list) Audio AIFF AU CD audio (Mac only) MIDI MP3 (MPEG-1 layers 1,

More information

Create, Add, and Manage Videos

Create, Add, and Manage Videos CHAPTER 4 Revised: May 31, 2011 Topics in this section describe ways that you can contribute video and supplemental files to your Cisco Show and Share community. Prerequisites, page 4-1 Procedures, page

More information

To add a graphic PC Shift right click while pointing at cell; Mac Command (apple) click on the cell. This will open up the Cell Properties

To add a graphic PC Shift right click while pointing at cell; Mac Command (apple) click on the cell. This will open up the Cell Properties Clicker 4 Using Graphics and Video Quick Guide Updated 03/05 One of the strongest points for using Clicker 4 is that material can be personalised for a particular pupil or group of pupils, therefore making

More information

Meeting Visuals UCF Toolkit User Guide

Meeting Visuals UCF Toolkit User Guide Meeting Visuals UCF Toolkit User Guide We provide Meeting Visuals web conferencing services. Because Meeting Visuals is powered by WebEx, this guide makes several references to the company name, platform

More information

HTML 5 and CSS 3, Illustrated Complete. Unit K: Incorporating Video and Audio

HTML 5 and CSS 3, Illustrated Complete. Unit K: Incorporating Video and Audio HTML 5 and CSS 3, Illustrated Complete Unit K: Incorporating Video and Audio Objectives Understand Web video and audio Use the video element Incorporate the source element Control playback HTML 5 and CSS

More information

Multimedia. File formats. Image file formats. CSE 190 M (Web Programming) Spring 2008 University of Washington

Multimedia. File formats. Image file formats. CSE 190 M (Web Programming) Spring 2008 University of Washington Multimedia CSE 190 M (Web Programming) Spring 2008 University of Washington Except where otherwise noted, the contents of this presentation are Copyright 2008 Marty Stepp and Jessica Miller and are licensed

More information

Audio,Video & Lighting

Audio,Video & Lighting Audio,Video & Lighting Multiple Choice Questions and Answers :- 1. A multimedia file a) is same as any other regular file b) Must be accessed at specific rate c) stored on remote server cannot be delivered

More information

PresenterPLUS Quick Start

PresenterPLUS Quick Start PresenterPLUS Quick Start 1.1 Overview The following is a Quick Start for Accordent s PresenterPLUS presentation authoring software. This document will guide you through installation of PresenterPLUS and

More information

Internet Technologies for Multimedia Applications

Internet Technologies for Multimedia Applications Internet Technologies for Multimedia Applications Part-II Multimedia on the Internet Lecturer: Room: E-Mail: Dr. Daniel Pak-Kong LUN DE637 Tel: 27666255 enpklun@polyu polyu.edu.hk 1 Contents Review: Multimedia

More information

The Transport Layer: User Datagram Protocol

The Transport Layer: User Datagram Protocol The Transport Layer: User Datagram Protocol CS7025: Network Technologies and Server Side Programming http://www.scss.tcd.ie/~luzs/t/cs7025/ Lecturer: Saturnino Luz April 4, 2011 The UDP All applications

More information

Screencast.com. Getting the Most from Your Screencast.com Account. July TechSmith Corporation. All rights reserved.

Screencast.com. Getting the Most from Your Screencast.com Account. July TechSmith Corporation. All rights reserved. Screencast.com Getting the Most from Your Screencast.com Account July 2009 2009 TechSmith Corporation. All rights reserved. Contents Contents...2 First Things First: Get Organized...3 Get Familiar with

More information

TrainingCentre Getting Started with the Universal

TrainingCentre Getting Started with the Universal TrainingCentre Getting Started with the Universal Communications Format Toolkit InterCall, a subsidiary of West Corporation, in partnership with WebEx Communications, Inc provides TrainingCentre web conferencing

More information

HELIX MEDIA LIBRARY USER GUIDE Helix Media Library Version 1.0. Revision Date: 13 May 2010

HELIX MEDIA LIBRARY USER GUIDE Helix Media Library Version 1.0. Revision Date: 13 May 2010 HELIX MEDIA LIBRARY USER GUIDE Helix Media Library Version 1.0 Revision Date: 13 May 2010 Summary of Contents Introduction... 3 Homepage... 3 Toolbar... 4 Sidebar... 4 Playback and Embedding... 5 Copy

More information

Embedding and linking to media

Embedding and linking to media Embedding and linking to media Dreamweaver makes it incredibly easy to embed and link media files (these include audio files and movie files) into your web site. We ll start with linking. Linking to media

More information

HTML5: MULTIMEDIA. Multimedia. Multimedia Formats. Common Video Formats

HTML5: MULTIMEDIA. Multimedia. Multimedia Formats. Common Video Formats LEC. 5 College of Information Technology / Department of Information Networks.... Web Page Design/ Second Class / Second Semester HTML5: MULTIMEDIA Multimedia Multimedia comes in many different formats.

More information

Image and video processing

Image and video processing Image and video processing Digital video Dr. Pengwei Hao Agenda Digital video Video compression Video formats and codecs MPEG Other codecs Web video - 2 - Digital Video Until the arrival of the Pentium

More information

Graphics Design and Applied Arts บทท 6 การออกแบบเว บเบ องต น

Graphics Design and Applied Arts บทท 6 การออกแบบเว บเบ องต น 344-282 Graphics Design and Applied Arts บทท 6 การออกแบบเว บเบ องต น Review of Web Technology Millions of web surfers who could potentially view our site have a wide variety of computer systems, then Colors

More information

Software. Networked multimedia. Buffering of media streams. Causes of multimedia. Browser based architecture. Programming

Software. Networked multimedia. Buffering of media streams. Causes of multimedia. Browser based architecture. Programming 1 Software Networked multimedia Introduction Browser based software architecture Distributed software Servers Network Terminals User interface Middleware Communications Network multimedia can be defined

More information

Chapter 7 Multimedia Networking

Chapter 7 Multimedia Networking Chapter 7 Multimedia Networking Principles Classify multimedia applications Identify the network services and the requirements the apps need Making the best of best effort service Mechanisms for providing

More information

A SMIL Editor and Rendering Tool for Multimedia Synchronization and Integration

A SMIL Editor and Rendering Tool for Multimedia Synchronization and Integration A SMIL Editor and Rendering Tool for Multimedia Synchronization and Integration Stephen J.H. Yang 1, Norman W.Y. Shao 2, Kevin C.Y. Kuo 3 National Central University 1 National Kaohsiung First University

More information

MULTIMEDIA I CSC 249 APRIL 26, Multimedia Classes of Applications Services Evolution of protocols

MULTIMEDIA I CSC 249 APRIL 26, Multimedia Classes of Applications Services Evolution of protocols MULTIMEDIA I CSC 249 APRIL 26, 2018 Multimedia Classes of Applications Services Evolution of protocols Streaming from web server Content distribution networks VoIP Real time streaming protocol 1 video

More information

DVS-100P Configuration Guide

DVS-100P Configuration Guide DVS-100P Configuration Guide Contents Web UI Overview... 2 Creating a live channel... 2 Applying changes... 4 Live channel list overview... 4 Creating a VOD channel... 5 Stats... 6 Creating and managing

More information

RealSystem G2 Production Guide. BETA 1 Release

RealSystem G2 Production Guide. BETA 1 Release BETA 1 Release Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document may be

More information

CODEC AND PROTOCOL SUPPORT HELIX MEDIA DELIVERY PLATFORM

CODEC AND PROTOCOL SUPPORT HELIX MEDIA DELIVERY PLATFORM CODEC AND PROTOCOL SUPPORT HELIX MEDIA DELIVERY PLATFORM Helix Producer 14 and Helix Server 14.2 Revision Date: 27 October 2011 RealNetworks, Inc. P.O. Box 91123 Seattle, WA 98111-9223 U.S.A. http://www.real.com

More information

DVS-200 Configuration Guide

DVS-200 Configuration Guide DVS-200 Configuration Guide Contents Web UI Overview... 2 Creating a live channel... 2 Inputs... 3 Outputs... 6 Access Control... 7 Recording... 7 Managing recordings... 9 General... 10 Transcoding and

More information

Chapter 8: Overview of Streaming Audio and Video

Chapter 8: Overview of Streaming Audio and Video Chapter 8: Overview of Streaming Audio and Video Since the explosion of interest in the Internet in 1993, people have experimented with transmitting sound and video over the Net. As we saw in Chapter 7,

More information

Digital Asset Management 5. Streaming multimedia

Digital Asset Management 5. Streaming multimedia Digital Asset Management 5. Streaming multimedia 2015-10-29 Keys of Streaming Media Algorithms (**) Standards (*****) Complete End-to-End systems (***) Research Frontiers(*) Streaming... Progressive streaming

More information

COMP : Practical 11 Video

COMP : Practical 11 Video COMP126-2006: Practical 11 Video Flash is designed specifically to transmit animated and interactive documents compactly and quickly over the Internet. For this reason we tend to think of Flash animations

More information

Chapter 15 Plug-ins, ActiveX, and Applets

Chapter 15 Plug-ins, ActiveX, and Applets Chapter 15 Plug-ins, ActiveX, and Applets Presented by Thomas Powell Slides adopted from HTML & XHTML: The Complete Reference, 4th Edition 2003 Thomas A. Powell Web Programming Toolbox Redux Java Applets

More information

Making presentations web ready

Making presentations web ready Rochester Institute of Technology RIT Scholar Works Theses Thesis/Dissertation Collections 2006 Making presentations web ready Binil Kurian Follow this and additional works at: http://scholarworks.rit.edu/theses

More information

Stream Anywhere If you do not have access to the Internet Sonic Foundry, Inc. Sonic Foundry Europe

Stream Anywhere If you do not have access to the Internet Sonic Foundry, Inc. Sonic Foundry Europe Quick Start Guide To register on-line with Sonic Foundry, please follow the steps outlined in the registration wizards upon installation of this product. Registering your product will provide you with

More information

Tema 0: Transmisión de Datos Multimedia

Tema 0: Transmisión de Datos Multimedia Tema 0: Transmisión de Datos Multimedia Clases de aplicaciones multimedia Redes basadas en IP y QoS Computer Networking: A Top Down Approach Featuring the Internet, 3 rd edition. Jim Kurose, Keith Ross

More information

TANDBERG on Streaming - an Application Note

TANDBERG on Streaming - an Application Note on Streaming - an Application Note TANDBERG D12408, rev. 05 Table of contents INTRODUCTION... 4 HISTORY... 4 SUMMARY ON STREAMING WHAT AND WHY?... 4 TECHNICAL DETAILS OF STREAMING:... 5 INSTALLATION AND

More information

Software Versions Used in this Tutorial: Final Cut Pro: Compressor: 3.0.3

Software Versions Used in this Tutorial: Final Cut Pro: Compressor: 3.0.3 This tutorial describes how to use Final Cut Pro and Compressor to create an MPEG-2 program stream for playback on LEIGHTRONIX MPEG-2 decoders. The following procedure assumes that you have already installed

More information

Using RTSP with Firewalls, Proxies, and Other Intermediary Network Devices

Using RTSP with Firewalls, Proxies, and Other Intermediary Network Devices Using with Firewalls, Proxies, and Other Intermediary Network Devices Version 2.0/rev.2 Introduction This white paper provides information to developers and implementers about the incorporation of Real

More information

Camtasia Studio 5.0 PART I. The Basics

Camtasia Studio 5.0 PART I. The Basics Camtasia Studio 5.0 Techsmith s Camtasia Studio software is a video screenshot creation utility that makes it easy to create video tutorials of an on screen action. This handout is designed to get you

More information

Viewpoint. This document will guide you through using Viewpoint, and highlights its major features. Viewpoint URL is

Viewpoint. This document will guide you through using Viewpoint, and highlights its major features. Viewpoint URL is Viewpoint Viewpoint is a free video and audio repository that allows users to upload their media (audio and video files) online and make them available to students. It also allows users to record their

More information

3.01C Multimedia Elements and Guidelines Explore multimedia systems, elements and presentations.

3.01C Multimedia Elements and Guidelines Explore multimedia systems, elements and presentations. 3.01C Multimedia Elements and Guidelines 3.01 Explore multimedia systems, elements and presentations. Multimedia Fair Use Guidelines Guidelines for using copyrighted multimedia elements include: Text Motion

More information

Interchange formats. Introduction Application areas Requirements Track and object model Real-time transfer Different interchange formats Comparison

Interchange formats. Introduction Application areas Requirements Track and object model Real-time transfer Different interchange formats Comparison Interchange formats Introduction Application areas Requirements Track and object model Real-time transfer Different interchange formats Comparison Petri Vuorimaa 1 Introduction In transfer of multimedia

More information

Kaltura Guidebook Table of Contents

Kaltura Guidebook Table of Contents Kaltura Guidebook Table of Contents Upload a Video... 4 Kaltura Login... 5 FlashLine Account... 6 Media Upload... 7 Choose a file to upload... 8 Add Details... 9 Privacy Settings... 10 Review Upload...

More information

Start Here. Accessing Cisco Show and Share. Prerequisites CHAPTER

Start Here. Accessing Cisco Show and Share. Prerequisites CHAPTER CHAPTER 1 Revised: May 31, 2011 Accessing Cisco Show and Share, page 1-1 Cisco Show and Share Quick Start, page 1-4 Sign In to Cisco Show and Share, page 1-20 Set Your Personal Preferences, page 1-22 Accessing

More information

What You Will Learn Today

What You Will Learn Today CS101 Lecture 03: The World Wide Web and HTML Aaron Stevens 23 January 2011 1 What You Will Learn Today Is it the Internet or the World Wide Web? What s the difference? What is the encoding scheme behind

More information

Prometheus V4.0. Table of Contents. Prometheus Student Help Guide 1. Introduction...2. Outside a Course...5. Outline...7. Testing...8. Grade Book...

Prometheus V4.0. Table of Contents. Prometheus Student Help Guide 1. Introduction...2. Outside a Course...5. Outline...7. Testing...8. Grade Book... Prometheus Student Help Guide 1 Prometheus V4.0 Table of Contents Introduction...2 Outside a Course...5 Outline...7 Testing...8 Grade Book...9 Files...10 Messages...12 Discussions...14 WebEQ...16 Files

More information

The JALT CALL Journal. Linking media servers & course management systems. Paul Daniels Kochi University of Technology. Introduction.

The JALT CALL Journal. Linking media servers & course management systems. Paul Daniels Kochi University of Technology. Introduction. » columns Linking media servers & course management systems Paul Daniels Kochi University of Technology The JALT CALL Journal Introduction While VHS tapes and CDs are still an indispensable medium for

More information

1/27/2013. Outline. Adding images to your site. Images and Objects INTRODUCTION TO WEB DEVELOPMENT AND HTML

1/27/2013. Outline. Adding images to your site. Images and Objects INTRODUCTION TO WEB DEVELOPMENT AND HTML Outline INTRODUCTION TO WEB DEVELOPMENT AND HTML Images and Objects: Adding images to your site Adding Objects with Using Images as Links Image Maps Exercise Lecture 05 - Spring 2013 Adding images

More information

New Features. Importing Resources

New Features. Importing Resources CyberLink StreamAuthor 4 is a powerful tool for creating compelling media-rich presentations using video, audio, PowerPoint slides, and other supplementary documents. It allows users to capture live videos

More information

S! Play. Installation Manual

S! Play. Installation Manual S! Play Installation Manual R5976520/02 04/03/2005 Barco nv Media Noordlaan 5, B-8520 Kuurne Phone: +32 56.36.89.70 Fax: +32 56.36.83.86 E-mail: media@barco.com Visit us at the web: www.barco.com Printed

More information

DVS-200 Configuration Guide

DVS-200 Configuration Guide DVS-200 Configuration Guide Contents Web UI Overview... 2 Creating a live channel... 2 Inputs... 3 Outputs... 7 Access Control... 8 Recording... 8 Managing recordings... 10 General... 11 Transcoding and

More information

Multimedia on the Web

Multimedia on the Web Multimedia on the Web Graphics in web pages Downloading software & media Digital photography JPEG & GIF Streaming media Macromedia Flash Graphics in web pages Graphics are very popular in web pages Graphics

More information

Adding Multimedia Content to Web Pages

Adding Multimedia Content to Web Pages HTML 8 Adding Multimedia Content to Web Pages Objectives You will have mastered the material in this chapter when you can: Describe the benefits and limitations of multimedia in Web sites Identify audio

More information

Adobe Captivate Level 1

Adobe Captivate Level 1 Information Technology Services Kennesaw State University Adobe Captivate Level 1 Presented by Technology Outreach in collaboration with The Multimedia Development Group (MDG) Copyright 2007 Information

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

The Practical Guide to Live Multimedia Webcasting with Knovio. AWS MediaLive Edition

The Practical Guide to Live Multimedia Webcasting with Knovio. AWS MediaLive Edition The Practical Guide to Live Multimedia Webcasting with Knovio AWS MediaLive Edition Updated May, 2018 The Practical Guide to Multimedia Webcasting with Knovio by Michael E. Kolowich, Founder and CEO of

More information

Quick Start. Creating the FLV File

Quick Start. Creating the FLV File CHAPTER 1 Quick Start Certainly one of the most common tasks when publishing Flash video content is repurposing existing footage for online usage. While you can produce optimal quality by shooting exclusively

More information

How do I get videos (movie files, YouTube, etc) to play in PowerPoint 2010? Movie Files. Step 1: Export Your imovie to Quicktime DV Stream

How do I get videos (movie files, YouTube, etc) to play in PowerPoint 2010? Movie Files. Step 1: Export Your imovie to Quicktime DV Stream How do I get videos (movie files, YouTube, etc) to play in PowerPoint 2010? Answer: There are several options to enable videos, whether from movie files (e.g. from a video camera) or from YouTube, to play

More information

Prentice Hall. Learning Microsoft PowerPoint , (Weixel et al.) Arkansas Multimedia Applications I - Curriculum Content Frameworks

Prentice Hall. Learning Microsoft PowerPoint , (Weixel et al.) Arkansas Multimedia Applications I - Curriculum Content Frameworks Prentice Hall Learning Microsoft PowerPoint 2007 2008, (Weixel et al.) C O R R E L A T E D T O Arkansas Multimedia s I - Curriculum Content Frameworks Arkansas Multimedia s I - Curriculum Content Frameworks

More information

Networking Applications

Networking Applications Networking Dr. Ayman A. Abdel-Hamid College of Computing and Information Technology Arab Academy for Science & Technology and Maritime Transport Multimedia Multimedia 1 Outline Audio and Video Services

More information

Quick start guide to Blackboard at Keele

Quick start guide to Blackboard at Keele Quick start guide to Blackboard at Keele Table of Contents What is the KLE and why do we use it?... 3 Sign-in to the KLE... 3 Tabs and Sub-Tabs... 3 Panels and Customising the Home Tab... 3 Tools in the

More information

Advanced Networking Technologies

Advanced Networking Technologies Advanced Networking Technologies Chapter 13 Caching Techniques for Streaming Media (Acknowledgement: These slides have been prepared by Dr.-Ing. Markus Hofmann) 1 What is Streaming? Streaming media refers

More information

Microsoft Expression Studio 4 Editions

Microsoft Expression Studio 4 Editions Quick Start Guide Addendum for Version 4 Information in this document, including URL and other Internet website references, is subject to change without notice. Unless otherwise noted, the companies, organizations,

More information

CONTENTS. System Requirements FAQ Webcast Functionality Webcast Functionality FAQ Appendix Page 2

CONTENTS. System Requirements FAQ Webcast Functionality Webcast Functionality FAQ Appendix Page 2 VIOCAST FAQ CONTENTS System Requirements FAQ... 3 Webcast Functionality... 6 Webcast Functionality FAQ... 7 Appendix... 8 Page 2 SYSTEM REQUIREMENTS FAQ 1) What kind of Internet connection do I need to

More information

PUBLISHING FLASH. Lesson Overview

PUBLISHING FLASH. Lesson Overview PUBLISHING FLASH Lesson Overview In this lesson, you ll learn how to do the following: Test a Flash document Understand the Bandwidth Profiler Change publish settings for a document Understand the difference

More information

Wowza ndvr. User's Guide

Wowza ndvr. User's Guide Wowza ndvr User's Guide Wowza ndvr: User's Guide Version: 4 http://www.wowza.com This document is for informational purposes only and in no way shall be interpreted or construed to create any warranties

More information

ARCHOS Kids Zone The best apps selection for kids

ARCHOS Kids Zone The best apps selection for kids ARCHOS Kids Zone The best apps selection for kids Android Jelly Bean Archos introduces its new kid-friendly tablet: The ARCHOS 101 ChildPad. Running Android version Jelly Bean, this 10.1 tablet is specially

More information

Chapter 28. Multimedia

Chapter 28. Multimedia Chapter 28. Multimedia 28-1 Internet Audio/Video Streaming stored audio/video refers to on-demand requests for compressed audio/video files Streaming live audio/video refers to the broadcasting of radio

More information

Adding Multimedia Content to Web Pages

Adding Multimedia Content to Web Pages HTML 8 Adding Multimedia Content to Web Pages Courtesy of Karen Stevens Courtesy of whitehouse.gov Courtesy of Karen Stevens Objectives You will have mastered the material in this chapter when you can:

More information

Cisco TelePresence Content Server S4.1

Cisco TelePresence Content Server S4.1 Cisco TelePresence Content Server S4.1 Online help (printable format) D14595.03 December 2010 Contents Logging in to the web interface... 6 Supported browsers, plugins & platforms... 7 Supported browsers...

More information

Streaming Media Services Operation Guide

Streaming Media Services Operation Guide Medway Grid for Learning Policies and Guidance Streaming Media Services Operation Guide (Version 1.60-01/02/2007) 1 Streaming Media Services... 1 1.1 General Overview Streaming Media Services... 1 1.2

More information

Helix DNA Framework. Yann Cadic Quentin Désert. Multimedia Programming Helsinki University of Technology

Helix DNA Framework. Yann Cadic Quentin Désert. Multimedia Programming Helsinki University of Technology Helix DNA Framework Yann Cadic Quentin Désert Multimedia Programming Helsinki University of Technology - 2006 Content Plan About Helix DNA Project Helix DNA Framework Use Case RealNetworks, Inc. Leadership

More information

Multimedia on Web. a RILW 2001 tutorial

Multimedia on Web. a RILW 2001 tutorial Multimedia on Web RILW 2001 Sabin Corneliu Buraga - [1] a RILW 2001 tutorial Sabin-Corneliu Buraga Faculty of Computer Science Al.I.Cuza University of Iasi, Romania busaco@infoiasi.ro http://www.infoiasi.ro/~busaco/

More information

TRIBHUVAN UNIVERSITY Institute of Engineering Pulchowk Campus Department of Electronics and Computer Engineering

TRIBHUVAN UNIVERSITY Institute of Engineering Pulchowk Campus Department of Electronics and Computer Engineering TRIBHUVAN UNIVERSITY Institute of Engineering Pulchowk Campus Department of Electronics and Computer Engineering A Final project Report ON Minor Project Java Media Player Submitted By Bisharjan Pokharel(061bct512)

More information

MultiMediaPros Quick Start Guide Streaming Media Hosting

MultiMediaPros Quick Start Guide Streaming Media Hosting MultiMediaPros Quick Start Guide Streaming Media Hosting All of us at MultiMediaPros Digital Studios wish you success with your online streaming venture. We have created this guide to get you up and running

More information

Computer Software A computer contains two major sets of tools, software and hardware. Software is generally divided into Systems software and

Computer Software A computer contains two major sets of tools, software and hardware. Software is generally divided into Systems software and Computer Software A computer contains two major sets of tools, software and hardware. Software is generally divided into Systems software and Applications software. Systems software provides infrastructure

More information

Working with Images and Multimedia

Working with Images and Multimedia CHAPTER Working with Images and Multimedia You can make your web page more interesting by adding multimedia elements. You can download the files featured in this chapter from www.digitalfamily.com/tyv.

More information

VidOvation TV Digital Signage Overview

VidOvation TV Digital Signage Overview VidOvation TV Digital Signage Overview Overview The Scheduling and Management Tools provides means of using all the features of the VidOSign with special consideration to ease of use and flexibility. There

More information

Configure Video and Audio Settings

Configure Video and Audio Settings 14 CHAPTER Revised: November 24, 2010 Concepts, page 14-1 s, page 14-3 Reference, page 14-6 Concepts Performance Factors, page 14-1 Guidelines, page 14-2 Workflows, page 14-3 Performance Factors Understand

More information

The FlexTraining Total E-Learning Solution Management Guide Version 6.1

The FlexTraining Total E-Learning Solution Management Guide Version 6.1 The FlexTraining Total E-Learning Solution Management Guide Version 6.1 Copyright 1998-2010 National Training Systems, Inc. Library Media Library The Media Library feature lets you establish Dynamic Messages,

More information

Envivio Mindshare Presentation System. for Corporate, Education, Government, and Medical

Envivio Mindshare Presentation System. for Corporate, Education, Government, and Medical Envivio Mindshare Presentation System for Corporate, Education, Government, and Medical Introducing the Envivio Mindshare Presentation System The Envivio Mindshare Presentation system is a highly optimized

More information

Creating Interactive Video with Camtasia

Creating Interactive Video with Camtasia Creating Interactive Video with Camtasia Audio SCORM Quizzes PowerPoint and Screen Shots v1.2: 2009 Page 1 Camtasia Studio 6.0.2 http://www.techsmith.com/camtasia.asp (free trial download) Table of Contents

More information

Digital Captioning with Hi-Caption

Digital Captioning with Hi-Caption Digital Captioning with Hi-Caption High Tech Center Training Unit Of the California Community Colleges at the Foothill-De Anza Community College District 21050 McClellan Road Cupertino, CA 95014 (408)

More information

UNDERSTANDING MUSIC & VIDEO FORMATS

UNDERSTANDING MUSIC & VIDEO FORMATS ComputerFixed.co.uk Page: 1 Email: info@computerfixed.co.uk UNDERSTANDING MUSIC & VIDEO FORMATS Are you confused with all the different music and video formats available? Do you know the difference between

More information

Internet Networking recitation #13 HLS HTTP Live Streaming

Internet Networking recitation #13 HLS HTTP Live Streaming recitation #13 HLS HTTP Live Streaming Winter Semester 2013, Dept. of Computer Science, Technion 1 2 What is Streaming? Streaming media is multimedia that is constantly received by and presented to the

More information

Using Sonic Hyperlinks in Web-TV

Using Sonic Hyperlinks in Web-TV Norbert Braun Fraunhofer Institute for Computer Graphics (Fraunhofer IGD) Darmstadt, Germany Ralf Dörner Fraunhofer Institute for Computer Graphics (Fraunhofer IGD) Darmstadt, Germany Abstract The transfer

More information

12.16 Publishing Flash Movies

12.16 Publishing Flash Movies 12.16. PUBLISHING FLASH MOVIES 621 Figure 12.27: Flash: ActionScript Dialogue Window 12.16 Publishing Flash Movies When you have completed your movie, you re ready to publish Macromedia Flash MX document

More information

Viewing Live Video. Viewing Video through the Home Window Overview. Home Window Overview CHAPTER

Viewing Live Video. Viewing Video through the Home Window Overview. Home Window Overview CHAPTER CHAPTER 4 After you install and set up the Cisco Video Surveillance IP Camera as described in Chapter 2, Getting Started, users can connect to the IP camera through Internet Explorer and access the Home

More information

University Systems. Client Technologies

University Systems. Client Technologies University Systems Client Technologies Media Services - Video on Demand User Guide For Windows Computers Created by Scott Thorpe May 13th, 2015 Updated June 15th, 2015 What is video on demand? Video on

More information

INCITE PRODUCTION WORKFLOW

INCITE PRODUCTION WORKFLOW Inc. Rue des Voisins 30, 1205 Geneva, Switzerland Tel +41-22-3219585; Fax+41-22-3219584 Email : Support@incite-tech.com System Description INCITE PRODUCTION WORKFLOW The MAM is the core of the system using

More information

Creating and Managing Programs

Creating and Managing Programs CHAPTER 7 This chapter explains how to create and manage live, rebroadcast, TV-out, and export programs (for export to set top boxes). It contains the following sections: About Programs, page 7-1 Viewing

More information

The Gullibility of Human Senses

The Gullibility of Human Senses The Gullibility of Human Senses Three simple tricks for producing LBSC 690: Week 9 Multimedia Jimmy Lin College of Information Studies University of Maryland Monday, April 2, 2007 Images Video Audio But

More information

CS640: Introduction to Computer Networks. Application Classes. Application Classes (more) 11/20/2007

CS640: Introduction to Computer Networks. Application Classes. Application Classes (more) 11/20/2007 CS640: Introduction to Computer Networks Aditya Akella Lecture 21 - Multimedia Networking Application Classes Typically sensitive to delay, but can tolerate packet loss (would cause minor glitches that

More information

Capacities Overview: 9.7 MultiTouch Screen with IPS technology Access to AndroidTM apps HD Multimedia playback

Capacities Overview: 9.7 MultiTouch Screen with IPS technology Access to AndroidTM apps HD Multimedia playback Arnova introduces a new HD multimedia tablet: The ARNOVA 9 G2 Equipped with a sharp, bright 9.7 (1024x768) LCD touchscreen, it delivers amazing display quality. The combination between Android TM 2.3 Gingerbread

More information

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming Topics C H A P T E R 1 Introduction to Computers and Programming Introduction Hardware and Software How Computers Store Data Using Python Introduction Computers can be programmed Designed to do any job

More information

The Cisco Show and Share mobile client for Apple ios devices will provide the following features when connected to a Cisco Show and Share system:

The Cisco Show and Share mobile client for Apple ios devices will provide the following features when connected to a Cisco Show and Share system: Data Sheet Cisco Show and Share Product Overview The Cisco Digital Media Suite (DMS) is a comprehensive offering of webcasting and video sharing, digital signage, and business IPTV applications that can

More information

The FlexTraining Total e-learning Solution Management Guide Version 5.3

The FlexTraining Total e-learning Solution Management Guide Version 5.3 The FlexTraining Total e-learning Solution Management Guide Version 5.3 Copyright 1998-2008 Online Development Library Media Library The Media Library feature lets you establish Dynamic Messages, in one

More information

Lesson 5: Multimedia on the Web

Lesson 5: Multimedia on the Web Lesson 5: Multimedia on the Web Lesson 5 Objectives Define objects and their relationships to multimedia Explain the fundamentals of C, C++, Java, JavaScript, JScript, C#, ActiveX and VBScript Discuss

More information

STEP 1: DOWNLOAD THE PROGRAM

STEP 1: DOWNLOAD THE PROGRAM STEP 1: DOWNLOAD THE PROGRAM Note: The screen shots in this documents are using a Windows 7 operating system, images may be different on other versions and operating systems. A current version of Java

More information

Lesson 5: Multimedia on the Web

Lesson 5: Multimedia on the Web Lesson 5: Multimedia on the Web Learning Targets I can: Define objects and their relationships to multimedia Explain the fundamentals of C, C++, Java, JavaScript, JScript, C#, ActiveX and VBScript Discuss

More information