ADDING MULTIMEDIA TO YOUR WEB PAGE

Size: px
Start display at page:

Download "ADDING MULTIMEDIA TO YOUR WEB PAGE"

Transcription

1 ADDING MULTIMEDIA TO YOUR WEB PAGE Multimedia refers to anything you can hear or see (e.g. sound, music, video, pictures and animations). Web browsers support many different multimedia formats. Multimedia elements, such as music or videos, are stored in media files that have their own formats. VIDEO FORMATS The following is a list of the more common video file formats that are used on websites: FORMAT FILE EXTENSION DESCRIPTION AVI.avi AVI (Audio Video Interleave) was developed by Microsoft. AVI is supported by all computers running Windows, and by the most popular web browsers. It is a very common format on the Internet, but not always possible to play on non-windows computers. WMV.wmv WMV (Windows Media Video) was developed by Microsoft. WMV is a common format on the Internet, but it cannot be played on non- Windows computer without an extra (free) component installed. Some later WMVs cannot play at all on non-windows computers because no player is available. MPEG.mpg or.mpeg The MPEG (Moving Pictures Expert Group) format is the most popular format on the Internet. It is cross-platform, and supported by all major browsers. QuickTime.mov QuickTime was developed by Apple. QuickTime is a common format on the Internet, but QuickTime movies cannot be played on a Windows computer without an extra (free) component installed. RealVideo.rm or.ram RealVideo was developed by Real Media. RealVideo allows streaming of video (online video, Internet TV) with low bandwidths. Because of the low bandwidth priority, the quality is often reduced. Flash.swf or.flv Flash was developed by Macromedia. Flash requires an extra component to play. This component comes preinstalled with all major browsers. MP4.mp4 Mpeg-4 (MP4) is the new format for the internet. YouTube recommends using MP4. YouTube accepts multiple formats, and then converts them all to.flv or.mp4 for distribution. Adding Multimedia to Your Web Page Page 1 of 5

2 SOUND FORMATS The following is a list of the more common sound file formats that are used on websites: FORMAT FILE EXTENSION DESCRIPTION MIDI.mid or.midi MIDI (Musical Instrument Digital Interface) is a format for electronic music devices like synthesizers and PC sound cards. MIDI files do not contain sound, but digital musical instructions (notes) that can be played by electronics (like your PC's sound card). Since MIDI files only contains instructions; they are extremely small. The example above is only 23K in size, but it plays for nearly 5 minutes. MIDI is supported by many software systems/platforms. MIDI is supported by all the most popular Internet browsers. MP3.mp3 MP3 files are actually the sound part of MPEG files. MPEG was originally developed for video by the Moving Pictures Experts Group. MP3 is the most popular format for music. The encoding system combines good compression (small files) with high quality. RealAudio.rm or.ram RealAudio was developed Real Media. It allows streaming of audio (online music, Internet radio) with low bandwidths. Because of the low bandwidth priority, the quality is often reduced. WAV.wav WAVE (more known as WAV) was developed by IBM and Microsoft. WAVs are compatible with Windows, Macintosh, and Linux operating systems. WMA.wma WMA (Windows Media Audio), compares in quality to MP3, and is compatible with most players, except the ipod. WMA files can be delivered as a continuous flow of data, which makes it practical for use in Internet radio or on-line music. HTML PLUG-INS A plug-in is a small computer program that extends the standard functionality of the browser. Plug-ins are often used by browsers to play audio and video. Examples of well-known plug-ins are Adobe Flash Player and QuickTime. Plug-ins can be added to Web pages using the <object> tag or the <embed> tag. Most plug-ins allow manual (or programmed) control over settings for volume, rewind, forward, pause, stop, and play. Adding Multimedia to Your Web Page Page 2 of 5

3 QUICKTIME Playing a WAV Audio File To play a WAV audio file using QuickTime, you would use the <object> tag. The following code will play an audio file called song.wav: <object width="420" height="360" classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" codebase=" <param name="src" value="song.wav"> <param name="autostart" value="false"> <param name="controller" value="true"> You ll notice that there are three (3) parameters added to the object. 1 The first is src that tells the browser where to find the sound file. In this example, the sound file is song.wav and is found in the same directory as the Web page. 2 If you want the sound file to play immediately after it's loaded, make the autostart parameter "true" otherwise make it "false". 3 The controller parameter tells the browser if a controller should be displayed to give your readers more control over the sound. QUICKTIME Playing an MP4 Video File To play an MP4 video file using QuickTime, you would also use the <object> tag. The following code will play an video file called movie.mp4: <object width="420" height="360" classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" codebase=" <param name="src" value="movie.mp4"> <param name="autostart" value="false"> <param name="controller" value="true"> ADOBE FLASH PLAYER Playing an SWF Video File To play an SWF video file using Adobe Flash Player, you would use the <object> and <embed> tags. The following code will play a video file called bookmark.swf: Adding Multimedia to Your Web Page Page 3 of 5

4 <object width="400" height="40" classid="clsid:d27cdb6e-ae6d-11cf-96b " codebase=" pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"> <param name="src" value="bookmark.swf"> <embed src="bookmark.swf" width="400" height="40"> </embed> WINDOWS MEDIA PLAYER Playing a WMV Video File To play a WMV video file using Windows Media Player, you would use the <object> and <embed> tags. The following code will play a video file called 3d.wmv: <object width="100%" height="100%" type="video/x-ms-asf" url="3d.wmv" data="3d.wmv" classid="clsid:6bf52a52-394a-11d3-b153-00c04f79faa6"> <param name="url" value="3d.wmv"> <param name="filename" value="3d.wmv"> <param name="autostart" value="1"> <param name="uimode" value="full"> <param name="autosize" value="1"> <param name="playcount" value="1"> <embed type="application/x-mplayer2" src="3d.wmv" width="100%" height="100%" autostart="true" showcontrols="true" pluginspage=" /"></embed> USING THE <embed> ELEMENT The <embed> tag defines a container for external (non-html) content. The following code fragment should play an MP3 file embedded in a web page: <embed height="50" width="100" src="horse.mp3"> Although the amount of code is significantly less than what we have used up until now, there are a number of problems that can result by using the <embed> tag like this. The following are just some of the problems: Different browsers support different audio formats If a browser does not support the file format, the audio will not play without a plug-in If the plug-in is not installed on the users' computer, the audio will not play If you convert the file to another format, it will still not play in all browsers Adding Multimedia to Your Web Page Page 4 of 5

5 USING THE <object> ELEMENT The <object> tag can also define a container for external (non-html) content. The following code fragment should play an MP3 file embedded in a web page: <object height="50" width="100" data="horse.mp3"> Again, although this is significantly less code, the same problems that may result with the <embed> tag may result with the <object> tag. PLAYING A YOUTUBE VIDEO IN HTML If you want to play a video in a web page, you can upload the video to YouTube and insert the proper HTML code to display the video. One way to play a YouTube video on a web page is by using the <iframe> tag as follows: <iframe width="420" height="345" src=" </iframe> To embed a YouTube video to your web page, you would use the <embed> tag as follows: <embed width="420" height="345" src=" type="application/x-shockwave-flash"> </embed> Adding Multimedia to Your Web Page Page 5 of 5

VOD Encoder Fast HIDef Video Encoding

VOD Encoder Fast HIDef Video Encoding VOD Encoder Fast HIDef Video Encoding 1 What is VOD Encoder? VOD Encoder is the application which converts all high quality files into.mp4 or.flv videos or into HTML5/Mobile compatible files (mp4 and webm)

More information

EventCentre : Getting Started with the Universal Communications. Universal Communications Format Toolkit Overview. How UCF Works

EventCentre : Getting Started with the Universal Communications. Universal Communications Format Toolkit Overview. How UCF Works EventCentre : Getting Started with the Universal Communications InterCall, in partnership with WebEx, provides EventCentre web conferencing services. Because EventCentre is powered by WebEx, this guide

More information

Video Upload and Management

Video Upload and Management Video Upload and Management Each client will have 1GB of video streaming capacity. We ask that you keep your file sizes to 100MB if possible. You will be responsible for managing your files and will have

More information

Develop Computer Animation

Develop Computer Animation Name: Block: A. Introduction 1. Animation simulation of movement created by rapidly displaying images or frames. Relies on persistence of vision the way our eyes retain images for a split second longer

More information

Fetch TV My Media Hub Quick Start Guide for USB Devices. Sharing your media content with the set top box from a USB device

Fetch TV My Media Hub Quick Start Guide for USB Devices. Sharing your media content with the set top box from a USB device Fetch TV My Media Hub Quick Start Guide for USB Devices Sharing your media content with the set top box from a USB device Contents Contents Contents 2 Welcome to your My Media Hub 3 With My Media Hub you

More information

How To Embed A Youtube Video On A Computer Or Ipad Or Ipa Computer Or Tvplayer On A Pc Or Mac Or Ipro Or Ipo Or Ipode Or Iporode On A Mac Or Tvode On Your Computer Or Mac (

How To Embed A Youtube Video On A Computer Or Ipad Or Ipa Computer Or Tvplayer On A Pc Or Mac Or Ipro Or Ipo Or Ipode Or Iporode On A Mac Or Tvode On Your Computer Or Mac ( Multimedia im Netz Wintersemester 2009/2010 Part I Web Technologies for Interactive Multimedia Ludwig-Maximilians-Universität München Prof. Hußmann Multimedia im Netz 2-1 2 Media on the Web 2.1 Media Embedding

More information

Digital Video: A Practical Guide

Digital Video: A Practical Guide Digital Video: A Practical Guide Lucid Communications Ltd Prepared by Neil Turner January 2006 Document History Version Author Comments v1.0 Neil Turner Initial Release 1. Executive Summary From time to

More information

Development process for multimedia applications

Development process for multimedia applications 1 Topic 1 Development process for multimedia applications Contents 1.1 Introduction: What is a multimedia application?.................. 3 1.2 Description of the software development process.................

More information

Contents. Getting Set Up... 3. Contents 2

Contents. Getting Set Up... 3. Contents 2 Getting Set Up Contents 2 Contents Getting Set Up... 3 Setting up Your Firewall for Video...3 Configuring Video... 3 Exporting videos... 4 Security for Jive Video Communication... 4 Getting Set Up 3 Getting

More information

Using the UCF Toolkit

Using the UCF Toolkit The Cisco WebEx Universal Communications Format (UCF) toolkit is a plug in for Microsoft PowerPoint that enables you to add multimedia to your presentations. You can share your UCF multimedia presentation

More information

8 Commercial Streaming Systems An Overview

8 Commercial Streaming Systems An Overview 8 Commercial Streaming Systems An Overview 8.1 RealNetworks 8.2 Apple QuickTime 8.3 Windows Media Literature: Tobias Künkel: Streaming Media Technologien, Standards, Anwendungen, Addison-Wesley 2001 David

More information

PODCASTING ON WINDOWS PCs USING CAMTASIA

PODCASTING ON WINDOWS PCs USING CAMTASIA PODCASTING ON WINDOWS PCs USING CAMTASIA INTRODUCTION Camtasia 3 is one of the most powerful applications currently on the market for creating podcast content on Windows PCs. Originally designed as a screen

More information

Audio, Video, and Animation

Audio, Video, and Animation Topic 4 Audio, Video, and Animation LEARNING OUTCOMES By the end of this topic, you should be able to: 1. Describe audio digitisation, file formats, and software; 2. Identify digital video standards, formats

More information

How to use Adobe Media Encoder CS6

How to use Adobe Media Encoder CS6 How to use Adobe Media Encoder CS6 Adobe Media Encoder CS6 converts sequences and clips into media suited for distribution on the web or on DVDs, ipods, tablets, cell phones, and other mobile devices.

More information

Windows Movie Maker Digital Video Editing (PC) Note: If you are using a Mac then refer to the instructions on the class website

Windows Movie Maker Digital Video Editing (PC) Note: If you are using a Mac then refer to the instructions on the class website GRC 119 Assignment 8 Windows Movie Maker Digital Video Editing (PC) 1. Download video supplemental files 2. Download a CC licensed video 3. Create a Windows Movie Maker project 4. Previewing Clips 5. Adding

More information

Current Page Location. Tips for Authors and Creators of Digital Content: Using your Institution's Repository: Using Version Control Software:

Current Page Location. Tips for Authors and Creators of Digital Content: Using your Institution's Repository: Using Version Control Software: Home > Framework > Content Creation Advice Tips for Authors and Creators of Digital Content: Keep a record of which versions you have made publicly available and where. Use a numbering system that denotes

More information

Copyright 2002-2003 Kinoma Inc. All rights reserved.

Copyright 2002-2003 Kinoma Inc. All rights reserved. Kinoma Producer 2 Version 2.0 Copyright 2002-2003 Kinoma Inc. All rights reserved. Before using this software, please read the End User License Agreement that is supplied together with this software. http://www.kinoma.com

More information

ATLAS.ti 6 Using Video Data

ATLAS.ti 6 Using Video Data ATLAS.ti 6 Using Video Data ATLAS.ti 6 Using Video Data Copyright 2011 by ATLAS.ti Scientific Software Development GmbH, Berlin. All rights reserved. Version: 7.20111212 Author: Clemens Hoffmann, Editor:

More information

Step 1: Create the RTSP Command

Step 1: Create the RTSP Command The purpose of this document is to detail the necessary steps for setting up a Real Time Streaming Protocol (RTSP) for our QC Series DVRs and NVRs. Prior to setting up a RTSP, your QC series DVR/NVR must

More information

Creating a Web Page in Flash

Creating a Web Page in Flash Creating a Web Page in Flash Introduction Animation is becoming one of the critical components of Web site design, and the demand for animation on Web sites is getting higher. Flash, which integrates audio

More information

Research on HTML5 in Web Development

Research on HTML5 in Web Development Research on HTML5 in Web Development 1 Ch Rajesh, 2 K S V Krishna Srikanth 1 Department of IT, ANITS, Visakhapatnam 2 Department of IT, ANITS, Visakhapatnam Abstract HTML5 is everywhere these days. HTML5

More information

Website Editor User Guide

Website Editor User Guide CONTENTS Minimum system requirements... 3 Pc... 3 Design your website... 4 design assistant... 4 themes... 4 headers... 5 website content editor... 7 text editor toolbar... 7 Main menu items... 15 edit

More information

Audio Technologies on the Internet

Audio Technologies on the Internet Audio Technologies on the Internet Significance The availability of audio on the Web is increasing at a staggering rate. Several companies continue to compete as the reigning power in audio on the Web.

More information

MPEG-4. The new standard for multimedia on the Internet, powered by QuickTime. What Is MPEG-4?

MPEG-4. The new standard for multimedia on the Internet, powered by QuickTime. What Is MPEG-4? The new standard for multimedia on the Internet, powered by QuickTime. is the new worldwide standard for interactive multimedia creation, delivery, and playback for the Internet. What MPEG-1 and its delivery

More information

Creating Content for ipod + itunes

Creating Content for ipod + itunes apple Apple Education Creating Content for ipod + itunes This guide provides information about the file formats you can use when creating content compatible with itunes and ipod. This guide also covers

More information

PERFORMANCE ANALYSIS OF VIDEO FORMATS ENCODING IN CLOUD ENVIRONMENT

PERFORMANCE ANALYSIS OF VIDEO FORMATS ENCODING IN CLOUD ENVIRONMENT Suresh Gyan Vihar University Journal of Engineering & Technology (An International Bi Annual Journal) Vol. 1, Issue 1, 2015, pp 1 5 ISSN: 2395 0196 PERFORMANCE ANALYSIS OF VIDEO FORMATS ENCODING IN CLOUD

More information

Introduction to Digital Video

Introduction to Digital Video Introduction to Digital Video Significance of the topic With the increasing accessibility of technology for everyday people, things are starting to get digitalized: digital camera, digital cable, digital

More information

An Introduction to File Management and Windows Explorer. Mr. Raposo, Mrs. Itzkovitch & Mrs. Arnold BTT 10 King City Secondary School

An Introduction to File Management and Windows Explorer. Mr. Raposo, Mrs. Itzkovitch & Mrs. Arnold BTT 10 King City Secondary School An Introduction to File Management and Windows Explorer Mr. Raposo, Mrs. Itzkovitch & Mrs. Arnold BTT 10 King City Secondary School File Names & Extensions Each filename is made up of two parts, the actual

More information

A-PDF to Flash Converter Convert PDF to Adobe Flash in minutes. User Documentation. About A-PDF to Flash Converter

A-PDF to Flash Converter Convert PDF to Adobe Flash in minutes. User Documentation. About A-PDF to Flash Converter Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The unregistered version will output flashes with adding watermarks. About A-PDF

More information

itunes 4.2 User Guide for Windows Apple Computer, Inc.

itunes 4.2 User Guide for Windows Apple Computer, Inc. itunes 4.2 User Guide for Windows Apple Computer, Inc. itunes 4.2 User Guide for Windows Apple Computer, Inc. itunes 4.2 User Guide 2000-2003 Apple Computer, Inc. All rights reserved. First printing September,

More information

ALCATEL-LUCENT DIGITAL SIGNAGE SOLUTION VISUAL COMMUNICATIONS: SETTING A NEW STANDARD FOR ENTERPRISE VISUAL CONTENT MANAGEMENT AND DELIVERY RELEASE

ALCATEL-LUCENT DIGITAL SIGNAGE SOLUTION VISUAL COMMUNICATIONS: SETTING A NEW STANDARD FOR ENTERPRISE VISUAL CONTENT MANAGEMENT AND DELIVERY RELEASE ALCATEL-LUCENT DIGITAL SIGNAGE SOLUTION VISUAL COMMUNICATIONS: SETTING A NEW STANDARD FOR ENTERPRISE VISUAL CONTENT MANAGEMENT AND DELIVERY RELEASE 1.0 Enterprises are looking for innovative, cost-effective

More information

JW Player Quick Start Guide

JW Player Quick Start Guide JW Player Quick Start Guide Getting Started Embedding the JW Player on your website is a simple, 3-step process: 1. Upload the jwplayer.js and player.swf files from the download ZIP to your server. All

More information

Rm avi to dvd vcd svcd mpeg video converter

Rm avi to dvd vcd svcd mpeg video converter Rm avi to dvd vcd svcd mpeg video converter DVD Burning Xpress is an integrated tool used to convert home video DV tape to MPEG-2 and burn to DVD disc directly. It features simple user interface, with

More information

Digital Video Architectures Compared: QuickTime, Real System, and Windows Media

Digital Video Architectures Compared: QuickTime, Real System, and Windows Media Digital Video Architectures Compared: QuickTime, Real System, and Windows Media Introduction: Technology has come a long way in the last ten years. In the early days of the Internet, we waited patiently

More information

Introduction. It would appear that. we have reached the. limits of what it is. possible to achieve with. computer technology, although one should be

Introduction. It would appear that. we have reached the. limits of what it is. possible to achieve with. computer technology, although one should be Introduction It would appear that we have reached the limits of what it is possible to achieve with computer technology, although one should be careful with such statements, as they tend to sound pretty

More information

QuickTime Streaming. End-to-end solutions for live broadcasting and on-demand streaming of digital media. Features

QuickTime Streaming. End-to-end solutions for live broadcasting and on-demand streaming of digital media. Features QuickTime Streaming End-to-end solutions for live broadcasting and on-demand streaming of digital media. Features Unlimited cross-platform streaming Streams to standards-based media players on any platform

More information

HTML5 Video. Current situation. Version 1.1. February 8, 2011. Herman van Dompseler / Bas Zoetekouw. SURFnet/Kennisnet Innovation Programme

HTML5 Video. Current situation. Version 1.1. February 8, 2011. Herman van Dompseler / Bas Zoetekouw. SURFnet/Kennisnet Innovation Programme HTML5 Video Current situation Version 1.1 February 8, 2011 Herman van Dompseler / Bas Zoetekouw SURFnet/Kennisnet Innovation Programme The SURFnet/Kennisnet Innovation Programme is made possible by funding

More information

Chapter 6: Project Planning & Production

Chapter 6: Project Planning & Production AIM Your Project with Flash: Chapter 6 - Project Planning and Production 105 Chapter 6: Project Planning & Production After completing this module, you ll be able to: plan a Flash project. consider design

More information

How to play video on Xbox One

How to play video on Xbox One How to play video on Xbox One Xbox One is the latest game console. It has powerful multimedia performance. This guide tells you how to play video on Xbox One. Perhaps this November is the most exciting

More information

itunes 7.0 Fall 07 fall 2007

itunes 7.0 Fall 07 fall 2007 itunes 7.0 Fall 07 fall 2007 Table of Contents Introduction 3 Layout of itunes 3 Playlists 4 Create a Playlist 4 Create a Smart Playlist 5 Burning to CD 5 Burning Preferences 5 Importing Files 6 Encoding

More information

Intro to Web Development

Intro to Web Development Intro to Web Development For this assignment you will be using the KompoZer program because it free to use, and we wanted to keep the costs of this course down. You may be familiar with other webpage editing

More information

Computers Are Your Future Eleventh Edition Chapter 5: Application Software: Tools for Productivity

Computers Are Your Future Eleventh Edition Chapter 5: Application Software: Tools for Productivity Computers Are Your Future Eleventh Edition Chapter 5: Application Software: Tools for Productivity Copyright 2011 Pearson Education, Inc. Publishing as Prentice Hall 1 All rights reserved. No part of this

More information

DivX Plus Converter for Windows User Guide

DivX Plus Converter for Windows User Guide Updated 18 January 2011 INTRODUCTION Welcome to the DivX Plus Converter for Windows user guide. DivX Plus Converter is an easy way to convert and customize your digital videos into high-quality, highly

More information

What HTML5 is, isn t, and why it matters

What HTML5 is, isn t, and why it matters PlanetStream 2015 THE TRUTH ABOUT HTML5 AND MOBILE STREAMING What HTML5 is, isn t, and why it matters PlanetStream Ltd Churchfield House 36 Vicar Street Dudley West Midlands DY2 8RG United Kingdom Tel:

More information

QuickTimePro creating movies from frames

QuickTimePro creating movies from frames Biochem 660 2008 179 QuickTimePro creating movies from frames Appleʼs QuickTime Pro is available on Macintosh and Windows platforms. The free version is downloadable from http://www.apple.com/quicktime/

More information

Flash Is Your Friend An introductory level guide for getting acquainted with Flash

Flash Is Your Friend An introductory level guide for getting acquainted with Flash Flash Is Your Friend An introductory level guide for getting acquainted with Flash by Tom Krupka A Brief History: Adobe Flash, which was previously called Macromedia Flash, is a set of multimedia technologies

More information

Video Encoding Best Practices

Video Encoding Best Practices Video Encoding Best Practices SAFARI Montage Creation Station and Managed Home Access Introduction This document provides recommended settings and instructions to prepare user-created video for use with

More information

Contents. Objectives. Introduction to Digital Video Editing. Video Editing Workshop November 2013 Updated 2013.12.11

Contents. Objectives. Introduction to Digital Video Editing. Video Editing Workshop November 2013 Updated 2013.12.11 Video Editing Workshop November 2013 Updated 2013.12.11 Contents Objectives... 1 Introduction to Digital Video Editing... 1 A Brief Digital Video Primer... 2 Editing Tools... 4 Exercise... 5 Extended Exercise...

More information

Managing video content in DAM How digital asset management software can improve your brands use of video assets

Managing video content in DAM How digital asset management software can improve your brands use of video assets 1 Managing Video Content in DAM Faster connection speeds and improved hardware have helped to greatly increase the popularity of online video. The result is that video content increasingly accounts for

More information

Media Object Production - Hardware and Software Tools

Media Object Production - Hardware and Software Tools Lesson 8 Media Object Production - Hardware and Software Tools Concept of Media Object Production Process of CM Media Object Production Audio Production Video Production - Capturing - Editing - Compressing

More information

Action Plan Background: WAVE. Author: Andrea Goethals Last Revision Date: 03/29/04

Action Plan Background: WAVE. Author: Andrea Goethals Last Revision Date: 03/29/04 Action Plan Background: WAVE Author: Andrea Goethals Last Revision Date: 03/29/04 Preface: The WAVE format complies with the Resource Interchange File Format (RIFF), which is Microsoft's variation on the

More information

Flash questions in ILIAS Test & Assessment. Helmut Schottmüller

Flash questions in ILIAS Test & Assessment. Helmut Schottmüller Flash questions in ILIAS Test & Assessment Helmut Schottmüller Flash questions in ILIAS Test & Assessment Helmut Schottmüller Published January 2009 Copyright 2009 Helmut Schottmüller Table of Contents

More information

Using Multimedia with Microsoft PowerPoint 2003: A guide to inserting Video into your presentations

Using Multimedia with Microsoft PowerPoint 2003: A guide to inserting Video into your presentations Using Multimedia with Microsoft PowerPoint 2003: A guide to inserting Video into your presentations By Jonathan Gratch Institute of Math Science and Technology Education Texas Christian University Email:

More information

a basic guide to video conversion using SUPER

a basic guide to video conversion using SUPER a basic guide to video conversion using SUPER This is a basic guide to video conversion using the freeware video conversion tool SUPER, from erightsoft. SUPER is a graphic front end to several free, powerful,

More information

Fetch TV My Media Hub Quick Start Guide For USB Devices

Fetch TV My Media Hub Quick Start Guide For USB Devices Fetch TV My Media Hub Quick Start Guide for USB Devices 1 Fetch TV My Media Hub Quick Start Guide For USB Devices Sharing media content with the Fetch TV Box from a USB device 2 Fetch TV My Media Hub Quick

More information

Digitizing Sound Files

Digitizing Sound Files Digitizing Sound Files Introduction Sound is one of the major elements of multimedia. Adding appropriate sound can make multimedia or web page powerful. For example, linking text or image with sound in

More information

Working with Windows Movie Maker

Working with Windows Movie Maker 518 442-3608 Working with Windows Movie Maker Windows Movie Maker allows you to make movies and slide shows that can be saved to your computer, put on a CD, uploaded to a Web service (such as YouTube)

More information

Compressing Moving Images. Compression and File Formats updated to include HTML5 video tag. The DV standard. Why and where to compress

Compressing Moving Images. Compression and File Formats updated to include HTML5 video tag. The DV standard. Why and where to compress Compressing Moving Images Compression and File Formats updated to include HTML5 video tag. Moving versus still images: Temporal as well as spatial compression Data transfer rates are critical How much

More information

MPV FAQ. MPV Website: www.osta.org/mpv

MPV FAQ. MPV Website: www.osta.org/mpv MPV FAQ MPV Website: www.osta.org/mpv Q: What is MPV? A: MPV is playlist and asset management format for collections of music, photo, and video files in any combination. A playlist is an index or table

More information

Contents. Using the TTU Streaming Server. Academic Computing Support

Contents. Using the TTU Streaming Server. Academic Computing Support Using the TTU Streaming Server Academic Computing Support Information Technology Services Tennessee Technological University May 2002-Rev. 6/06 Contents 1. Before you begin... 2 2. Creating your content...

More information

Transferring Video Clips to Digital Video Using Pinnacle 15

Transferring Video Clips to Digital Video Using Pinnacle 15 Transferring Video Clips to Digital Video Using Pinnacle 15 Understanding Movie Formats Before you can begin the process of converting VHS to digital video, you must decide what movie format you need,

More information

RESPONSIVE EMAIL TEMPLATE GUIDE

RESPONSIVE EMAIL TEMPLATE GUIDE RESPONSIVE EMAIL TEMPLATE GUIDE GUIDELINES FOR POWERFUL RESPONSIVE EMAIL TEMPLATES IN CAMPAIGNER You ve created a powerful email campaign, built the right list segment, and you re ready to send. But have

More information

reach a younger audience and to attract the next-generation PEG broadcasters.

reach a younger audience and to attract the next-generation PEG broadcasters. PEG Streaming Public, Education, and Government (PEG) TV channels have been going through an evolution. Once the exclusive domain of "cable TV", PEG's have evolved to become Community Media Centers, serving

More information

10 best free video editing software review and download

10 best free video editing software review and download 10 best free video editing software review and download What are the best free video editing software? In this post, you are bound to find the best video editing freeware to your taste. When we want to

More information

Music on Hold User Guide. Schmooze Com Inc.

Music on Hold User Guide. Schmooze Com Inc. Schmooze Com Inc. Chapters Overview Logging In Adding Music Categories Adding Static Music Adding Streaming Music Overview The Music on Hold module is intended to reassure callers that they are still connected

More information

JW Player for Flash and HTML5

JW Player for Flash and HTML5 JW Player for Flash and HTML5 Release 5.3 Embedding Guide December 20, 2010 CONTENTS 1 Embedding the player 1 1.1 Upload.................................................. 1 1.2 SWFObject................................................

More information

hp pavilion home pc hp dvd writer

hp pavilion home pc hp dvd writer hp pavilion home pc hp dvd writer The information in this document is subject to change without notice. Hewlett-Packard Company makes no warranty of any kind with regard to this material, including, but

More information

Video Editing Tools. digital video equipment and editing software, more and more people are able to be

Video Editing Tools. digital video equipment and editing software, more and more people are able to be 1 Video Editing Tools I. Introduction and Significance of the Topic Video editing once to be privilege of few, however, with recent advances in digital video equipment and editing software, more and more

More information

Online video is changing the face of digital advertising.

Online video is changing the face of digital advertising. Online video is changing the face of digital advertising. Take advantage of this impactful digital format with Video Pre-Roll or In-Banner Video opportunities on Cox.com and Cox Digital Ad Network Solutions.

More information

Design and Analysis of Mobile Learning Management System based on Web App

Design and Analysis of Mobile Learning Management System based on Web App , pp. 417-428 http://dx.doi.org/10.14257/ijmue.2015.10.1.38 Design and Analysis of Mobile Learning Management System based on Web App Shinwon Lee Department of Computer System Engineering, Jungwon University,

More information

Fetch TV My Media Hub Quick Start Guide For Windows Or Mac

Fetch TV My Media Hub Quick Start Guide For Windows Or Mac Fetch TV My Media Hub Quick Start Guide for Windows or Mac 1 Fetch TV My Media Hub Quick Start Guide For Windows Or Mac Sharing media content with the Fetch TV Box from a PC or Mac 2 Fetch TV My Media

More information

Video Formats. A Guide to Understanding Video Containers & Codecs

Video Formats. A Guide to Understanding Video Containers & Codecs A Guide to Understanding Video Containers & Codecs I. What is a Video Format? a. What is a container? b. What is a codec? c. How do they work together? d. Why is it so complicated? II. What video format

More information

Free MP3 Converter Guide

Free MP3 Converter Guide Free MP3 Converter Guide Follow the tutorials below to get your audio conversion/extraction finished effortlessly. How Does It Work in Detail How to Convert Audio Files How to Convert WAV to MP3 How to

More information

Creating a slide show to share with others

Creating a slide show to share with others Creating a slide show to share with others With Corel Photo Album you use your photos to make movie files that you can share with others you can even add sound to your slide show. All you have to do configure

More information

AvediaPlayer Plugin V3.0. Installation and User Guide

AvediaPlayer Plugin V3.0. Installation and User Guide AvediaPlayer Plugin V3.0 Installation and User Guide Notices Exterity Limited 2006, 2012 This document contains information that is protected by copyright. Reproduction, adaptation, or translation without

More information

Using Impatica for Power Point

Using Impatica for Power Point Using Impatica for Power Point What is Impatica? Impatica is a tool that will help you to compress PowerPoint presentations and convert them into a more efficient format for web delivery. Impatica for

More information

Useful Utilities. Here are links to free third party applications that we use and recommend.

Useful Utilities. Here are links to free third party applications that we use and recommend. Useful Utilities Here are links to free third party applications that we use and recommend. Ad-Aware This is an amazingly useful free product from Lavasoft. Ad-Aware is a multi spyware removal utility

More information

USER GUIDE Chapter 20 Using Podcasts. Schoolwires Academic Portal Version 4.1

USER GUIDE Chapter 20 Using Podcasts. Schoolwires Academic Portal Version 4.1 USER GUIDE Chapter 20 Schoolwires Academic Portal Version 4.1 TABLE OF CONTENTS Introduction... 1 Adding a New Podcast Page... 3 Adding a New Episode... 5 Supported File Types... 5 What is an MP3 File?...

More information

Multimedia Systems Hardware & Software THETOPPERSWAY.COM

Multimedia Systems Hardware & Software THETOPPERSWAY.COM Multimedia Systems Hardware & Software THETOPPERSWAY.COM Table of Content 1. Categories of multimedia systems 2. Categories of multimedia devices 3. Evolution of multimedia PC 4. Authoring tools 5. Classification

More information

Table of contents. Software Installation 2. User Software..2. 1 )AMV Convert Tool. 2. 2 ) AMV Player 12

Table of contents. Software Installation 2. User Software..2. 1 )AMV Convert Tool. 2. 2 ) AMV Player 12 Table of contents Instructions of Software Software Installation 2 User Software..2 1 )AMV Convert Tool. 2 2 ) AMV Player 12 3 ) MP3 Player Disk Tool( Inner Scenes function ) 13 4 ) MP3 Player Upgrade

More information

The Development of an Online Video Browsing System

The Development of an Online Video Browsing System The Development of an Online Video Browsing System Jesse Jin 1 and Ruiyi Wang 2 1 Biomedical and Multimedia Information Technology (BMIT) Group School of Information Technologies University of Sydney,

More information

Web Design Specialist

Web Design Specialist UKWDA Training: CIW Web Design Series Web Design Specialist Course Description CIW Web Design Specialist is for those who want to develop the skills to specialise in website design and builds upon existing

More information

Advanced Video Ripping Contents

Advanced Video Ripping Contents Advanced Video Ripping Contents I. Introduction to Advanced Video Ripping... 1 Advanced Video Ripping fact list... 1 II. How to download Online Video using Advanced Video Ripping feature... 2 III. Tips

More information

HTML5 for ETDs. Virginia Polytechnic Institute and State University CS 4624. May 8 th, 2010. Sung Hee Park. Dr. Edward Fox.

HTML5 for ETDs. Virginia Polytechnic Institute and State University CS 4624. May 8 th, 2010. Sung Hee Park. Dr. Edward Fox. HTML5 for ETDs Virginia Polytechnic Institute and State University CS 4624 May 8 th, 2010 Sung Hee Park Dr. Edward Fox Nicholas Lynberg Philip McElmurray Jesse Racer Page 1 Table of Contents Executive

More information

Any Video Converter Professional User Manual 1. Any Video Converter Professional. User Manual

Any Video Converter Professional User Manual 1. Any Video Converter Professional. User Manual Any Video Converter Professional User Manual 1 Any Video Converter Professional User Manual Any Video Converter Professional User Manual 2 1. Welcome to Any Video Converter Professional...3 1.1 Main Window

More information

Sending, Storing & Sharing Video With latakoo

Sending, Storing & Sharing Video With latakoo Sending, Storing & Sharing Video With latakoo Copyright latakoo. All rights reserved. Revised 11/12/2012 Table of contents Table of contents... 1 1. Introduction... 2 2. Sending video & files with latakoo...

More information

Closed Captions. Questions. Jan Ozer jozer@mindspring.com www.streaminglearningcenter.com #janozer 11/20/2014

Closed Captions. Questions. Jan Ozer jozer@mindspring.com www.streaminglearningcenter.com #janozer 11/20/2014 Closed Captions Jan Ozer jozer@mindspring.com www.streaminglearningcenter.com #janozer Questions For more information, check out the book http://bit.ly/ozer_multi A beacon of light in a valley of half-knowledge

More information

Windows Media Player 10 Mobile: More Music, More Choices

Windows Media Player 10 Mobile: More Music, More Choices Windows Media Player 10 Mobile: More Music, More Choices Windows Media Player 10 Mobile for Windows Mobile -based Smartphones and Pocket PCs is an all-in-one mobile media player that provides a rich media

More information

Archives About ARCHOS TV+

Archives About ARCHOS TV+ About ARCHOS TV+ General Questions I have installed a firmware/plug-in/game file on my Archos TV+ but it is not recognized by the device. You may have not correctly copied your file on the device. If it

More information

Protecting Movies from Piracy with Microsoft DRM by Jonathan Lewin

Protecting Movies from Piracy with Microsoft DRM by Jonathan Lewin Protecting Movies from Piracy with Microsoft DRM by Jonathan Lewin For those of us who make commercially valuable sound movie recordings of our computer screen activity, one of the most important questions

More information

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver

understand how image maps can enhance a design and make a site more interactive know how to create an image map easily with Dreamweaver LESSON 3: ADDING IMAGE MAPS, ANIMATION, AND FORMS CREATING AN IMAGE MAP OBJECTIVES By the end of this part of the lesson you will: understand how image maps can enhance a design and make a site more interactive

More information

Appendix A Current Scope of Government Public Cloud Services and Government Public Cloud Related Services

Appendix A Current Scope of Government Public Cloud Services and Government Public Cloud Related Services 1. Scope Appendix A The current scope of the Government Public Cloud Services covers four (4) service categories, namely Productivity Applications (Productivity Apps), Business Applications (Business Apps),

More information

Week 7 Audio and Video

Week 7 Audio and Video Introduction For a long time Web designers had to rely on Adobe Flash or other clunky, third party plugins in order to deal with audio and video playback online. HTML5 has changed this. The HTML specification

More information

Tutorial. Part One -----Class1, 02/05/2015

Tutorial. Part One -----Class1, 02/05/2015 2.1.1 Tutorial Part One -----Class1, 02/05/2015 Download Audacity and LAME Encoder Audacity is an open source cross-platform (It can be used in Windows, Macs, and Linux) audio editor. You can download

More information

Region Free DVD Playback with VLC. By Mikio Moriyasu

Region Free DVD Playback with VLC. By Mikio Moriyasu Region Free DVD Playback with VLC By Mikio Moriyasu Region Basics - What Are Regions? - - - Arbitrary system of eight global zones Used to ID DVDs origin Restrict playback of DVDs to their zone of origin.

More information

GUIDE. Give PowerPoint a Voice: Developing. Narrated Presentations on a Windows PC. Donna Carnduff. dcarnduf@utk.edu.

GUIDE. Give PowerPoint a Voice: Developing. Narrated Presentations on a Windows PC. Donna Carnduff. dcarnduf@utk.edu. GUIDE Give PowerPoint a Voice: Developing Narrated Presentations on a Windows PC Donna Carnduff dcarnduf@utk.edu Revised 6/10/2015 To register for workshops, visit http://oit.utk.edu/training Configure

More information

Serving Media with NGINX Plus

Serving Media with NGINX Plus Serving Media with NGINX Plus Published June 11, 2015 NGINX, Inc. Table of Contents 3 About NGINX Plus 3 Using this Guide 4 Prerequisites and System Requirements 5 Serving Media with NGINX Plus 9 NGINX

More information

Genesis LC2. Genesis LC1. Genesis Flex. Genesis Cloud. Feature/Function. Linguatronics Genesis Functional Specification List 1

Genesis LC2. Genesis LC1. Genesis Flex. Genesis Cloud. Feature/Function. Linguatronics Genesis Functional Specification List 1 Software-based language training and classroom control system for language laboratories and second language classrooms Software-based classroom control system for multimedia computer labs and classrooms

More information

hp pavilion home pc hp dvd writer

hp pavilion home pc hp dvd writer hp pavilion home pc hp dvd writer The information in this document is subject to change without notice. Hewlett-Packard Company makes no warranty of any kind with regard to this material, including, but

More information

itunes Basics Website: http://etc.usf.edu/te/

itunes Basics Website: http://etc.usf.edu/te/ Website: http://etc.usf.edu/te/ itunes is the digital media management program included in ilife. With itunes you can easily import songs from your favorite CDs or purchase them from the itunes Store.

More information