Technologies Web Côté client

Size: px
Start display at page:

Download "Technologies Web Côté client"

Transcription

1 Technologies Web Côté client INF

2 Multimedia and the Web 218

3 Multimedia Formats on the Web Images JPG, PNG, GIF, SVG, WebP, SVG Video Container vs. Codec Containers: MP4, OGG, MPEG-2, WebM Codecs: H264/AVC, DiVX, Theora, VP8, VP9 Audio AAC, MP3, Opus, Vorbis, «Royalty-free» 219

4 Audio/video the old way <object classid="clsid:d27cdb6e-ae6d-11cf-96b " width="425" height="344" codebase=" flash/swflash.cab#version=6,0,40,0"> <param name="allowfullscreen" value="true" /> <param name="allowscriptaccess" value="always" /> <param name="src" value=" /> <param name="allowfullscreen" value="true" /> <embed type="application/x-shockwave-flash" width="425"height="344" src=" allowscriptaccess="always" allowfullscreen="true"> </embed> </object> 220

5 Audio/video in HTML 5 <audio controls loop autoplay src="file.mp3"/> <video controls poster="sintel.jpg" width="600"> <source src="sintel.mp4" /> <source src="sintel.webm" /> <source src="sintel.ogv" /> </video> 221

6 Audio/Video Markup and JS in HTML 5 Basic elements <audio> <video> Common attributes or @width <source> <track> Common JS Interfaces HTMLMediaElement HTMLMediaController Specific JS interfaces HTMLVideoElement HTMLAudioElement 222

7 HTML 5 Media Events State machines associated to each media element Network Status Playback Status NETWORK EMPTY NETWORK IDLE HAVE NOTHING HAVE METADATA NETWORK LOADING NETWORK NO_SOURCE Events to monitor Network & Download progress Decoding & Playback progress HAVE FUTURE DATA HAVE ENOUGH DATA HAVE CURRENT DATA 223

8 Audio on the Web Using the <audio> element & HTMLAudioElement For simple file playback Using the WebAudio API For sound manipulations For real-time processing and analysis For audio effects 224

9 Subtitles on the Web The WebVTT format WEBVTT Cue-1 00:00: > 00:00: At the left we can see... AnotherCue 00:00: > 00:00: And some other text 225

10 HTML 5 Timed Text Tracks New <track> element and associated JS API <video controls> <source src="elephants-dream.mp4" type="video/mp4"> <source src="elephants-dream.webm" type="video/webm"> <track label="english subtitles" kind="subtitles" srclang="en" src="elephants-dream-subtitles-en.vtt" default> <track label="deutsche Untertitel" kind="subtitles" srclang="de" src="elephants-dream-subtitles-de.vtt"> <track label="english chapters" kind="chapters" srclang="en" src="elephants-dream-chapters-en.vtt"> </video> 226

11 Media Fragments Ability to address a particular time in a video streams Hyperlinking with videos (youtube-like) <video src='myvideo.webm#t=50,100'></video> 227

12 JavaScript players JWPlayer Video.js MediaElement.js Popcorn.js 228

13 Video on the internet US download statistics for fixed Internet Access Facebook 1% Flash Video 2% SSL 2% itunes 2% Hulu 2% MPEG 3% BitTorrent 6% Other 22% HTTP 11% Netflix 32% YouTube 17% Source: Sandvine 1H

14 Video on Mobile 230

15 Video Streaming Technologies on the Web Progressive download & playback of a file Adaptive Streaming Download and play multiple small files seamlessly Today s technologies Apple HTTP Live Streaming (HLS) Microsoft Smooth Streaming (MSS) Adobe HDS MPEG-DASH using MediaSource API 231

16 HTML5 MediaSource API W3C Recommendation in progress Extension to the HTML5 recommandation HTML Enables adaptive streaming in Web Browsers JavaScript API Controlling media decoding buffers Add, delete media data Supported by Google Chrome, MS IE 11, (Firefox) JavaScrip-based players DASH.js: DASH-JS: YouTube: 232

17 DRM on the Web HTML 5 Tentative Encrypted Media Extensions specifications 233

18 Using a webcam in Web content Applications No Skype plugin Voice over IP, Video Conference Two standards HTML Media Capture Interface Capture the audio/video streams from the microphone and camera Hook them onto HTML 5 <audio>/<video> elements WebRTC Real time communication between browsers Exchange audio/video compress streams and data Demo 234

19 The Multimedia Web on TV 241

20 HbbTV and Web Standards v1.0 HTML Based on CE-HTML/CEA 2014 xhtml 1.0 transitionnal (w/ some modifications) CSS Based on CEA 2014, CSS TV profile ECMA-Script TV profile (JavaScript without eval) v1.5 / v2.0 Adaptive streaming & web subtitles HTML 5 Canvas & CSS 3 animations 245

21 Questions? 248

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

IDM 221. Web Design I. IDM 221: Web Authoring I 1

IDM 221. Web Design I. IDM 221: Web Authoring I 1 IDM 221 Web Design I IDM 221: Web Authoring I 1 Week 8 IDM 221: Web Authoring I 2 Media on the Web IDM 221: Web Authoring I 3 Before we cover how to include media files in a web page, you need to be familiar

More information

HTML5 HTML & Fut ure o Web M edi dia Streami a est Work h op, ov 2010 Michael Dale Zohar Babin eve oper o Dev R l e t a i tions & C

HTML5 HTML & Fut ure o Web M edi dia Streami a est Work h op, ov 2010 Michael Dale Zohar Babin eve oper o Dev R l e t a i tions & C HTML5 &F Future of fweb bmedia Streaming Media West Workshop, Nov. 2010 Michael Dale Zohar Babin Senior Developer Head of Dev Relations & Community michael.dale@kaltura.com zohar.babin@kaltura.com @michael_dale

More information

HTML5 for Java Developers. Sang Shin Founder and Chief Instructor JPassion.com

HTML5 for Java Developers. Sang Shin Founder and Chief Instructor JPassion.com HTML5 for Java Developers Sang Shin sang.shin@jpassion.com Founder and Chief Instructor JPassion.com A few words before we start This is 1-hour version of 3-day HTML5 codecamp :-) You can get the codecamp

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

How Libre can you go?

How Libre can you go? How Libre can you go? Reaching as many viewers as possible using only libre video technologies. Phil Cluff, February 2019 Reaching as many viewers as possible using only libre video technologies. Reaching

More information

CITS3403 Agile Web Development Semester 1, 2016

CITS3403 Agile Web Development Semester 1, 2016 6 Video, Audio and Canvas CITS3403 Agile Web Development Semester 1, 2016 The audio Element Prior to HTML5, a plug- in was required to play sound while a document was being displayed Audio encoding algorithms

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

Flash, Video. How to add Flash movies into your site How to add video and audio to your site HTML5 <video> and <audio> elements

Flash, Video. How to add Flash movies into your site How to add video and audio to your site HTML5 <video> and <audio> elements 9 Flash, Video & Audio XX XX X X How to add Flash movies into your site How to add video and audio to your site HTML5 and elements Flash is a very popular technology used to add animations,

More information

Contents. Getting Set Up Contents 2

Contents. Getting Set Up Contents 2 Getting Set Up Contents 2 Contents Getting Set Up... 3 Setting up Your Firewall for Video...3 Configuring Video... 3 Allowing or Preventing Embedding from Video Sites...4 Configuring to Allow Flash Video

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

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Helper Applications & Plug-Ins

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Helper Applications & Plug-Ins Web Development & Design Foundations with HTML5 Ninth Edition Chapter 11 Web Multimedia and Interactivity Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

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

Interactive feature: HTML5 video for

Interactive feature: HTML5 video for Interactive feature: HTML5 video for email 2 HTML5 video for email Feature background Why use it? When to use it (determining usage suitability)? Which email reading environments support this? Notes for

More information

Video. Add / edit video

Video. Add / edit video Video Videos greatly support learning in an e-earning setting. It is a rather complex topic though, due to the variety of formats, codecs, containers and combination of operating systems and browsers.

More information

Top Trends in elearning. September 15 & 16, Is HTML5 Ready for elearning? Debbie Richards, Creative Interactive Ideas

Top Trends in elearning. September 15 & 16, Is HTML5 Ready for elearning? Debbie Richards, Creative Interactive Ideas Top Trends in elearning September 15 & 16, 2011 501 Is HTML5 Ready for elearning? Is HTML5 Ready for elearning? Polls 1 and 3 2 Session 501 Is HTML5 Ready for elearning? Page 1 What s Covered in This Session?

More information

Video Developer Report 2017

Video Developer Report 2017 Video Developer Report 2017 Welcome to Bitmovin s Video Developer Report! First and foremost, I d like to thank everyone for making the 2017 Video Developer Survey possible! Without the great support and

More information

A Seamless Web Integration of Adaptive HTTP Streaming

A Seamless Web Integration of Adaptive HTTP Streaming 20th European Signal Processing Conference (EUSIPCO 2012) Bucharest, Romania, August 27-31, 2012 A Seamless Web Integration of Adaptive HTTP Streaming Benjamin Rainer, Stefan Lederer, Christopher Müller,

More information

Multimedia Standards

Multimedia Standards Multimedia Standards SS 2017 Lecture 1 Prof. Dr.-Ing. Karlheinz Brandenburg Karlheinz.Brandenburg@tu-ilmenau.de Contact: Dipl.-Inf. Thomas Köllmer thomas.koellmer@tu-ilmenau.de 1 Organisational issues

More information

16. HTML5, HTML Graphics, & HTML Media 웹프로그래밍 2016 년 1 학기 충남대학교컴퓨터공학과

16. HTML5, HTML Graphics, & HTML Media 웹프로그래밍 2016 년 1 학기 충남대학교컴퓨터공학과 16. HTML5, HTML Graphics, & HTML Media 웹프로그래밍 2016 년 1 학기 충남대학교컴퓨터공학과 목차 HTML5 Introduction HTML5 Browser Support HTML5 Semantic Elements HTML5 Canvas HTML5 SVG HTML5 Multimedia 2 HTML5 Introduction What

More information

Install Flash Plugin Manually Internet Explorer 9 Webm

Install Flash Plugin Manually Internet Explorer 9 Webm Install Flash Plugin Manually Internet Explorer 9 Webm hello im trying to update my adobe flash player but its stop halfway through Microsoft Internet Explorer 9 (h.264,available here, WebM support available

More information

HTML Forms. CITS3403 Agile Web Development. 2018, Semester 1

HTML Forms. CITS3403 Agile Web Development. 2018, Semester 1 HTML Forms CITS3403 Agile Web Development 2018, Semester 1 Some material Copyright 2013 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Forms A form is the usual way to get information from

More information

Integrated Kickstand

Integrated Kickstand Integrated Kickstand The ARCHOS 156 Oxygen is one of the most affordable 15.6-inch tablets on the market. It includes a powerful quad-core processor Android 7.0 Nougat. The ARCHOS 156 Oxygen is designed

More information

Tablet 300x x x x1024

Tablet 300x x x x1024 PROGRAMMATIC DISPLAY Supported Display Ad Types GIF, JPEG, PNG image files 3rd Party Ad Tags from approved ad servers (HTML or raw JavaScript) Rich media expandable supported through third party with some

More information

PN ITEM UPC ARCHOS 70d Titanium 8GB - EU

PN ITEM UPC ARCHOS 70d Titanium 8GB - EU The ARCHOS 70d Titanium is one of the most affordable tablets on the market. It includes a powerful quad-core processor running Android 7.0 Nougat. The ARCHOS 70d Titanium is designed to offer a unique

More information

HTML5. Language of the Modern Web. By: Mayur Agrawal. Copyright TIBCO Software Inc.

HTML5. Language of the Modern Web. By: Mayur Agrawal. Copyright TIBCO Software Inc. HTML5 Language of the Modern Web By: Mayur Agrawal Copyright 2000-2015 TIBCO Software Inc. Content Exploring prior standards Why HTML5? HTML5 vs HTML4 Key Features of HTML5 HTML5 and Technical Writing

More information

PN ITEM UPC ARCHOS 70c Neon 8GB - EU ARCHOS 70c Neon 16GB - EU

PN ITEM UPC ARCHOS 70c Neon 8GB - EU ARCHOS 70c Neon 16GB - EU The ARCHOS 70c Neon is one of the most affordable tablets on the market. It includes a powerful quad-core processor Android 6.0 Marshmallow. The ARCHOS 70c Neon is designed to offer a unique multimedia

More information

ADAPTIVE STREAMING AT. Justin Ruggles Lead Engineer, Transcoding & Delivery

ADAPTIVE STREAMING AT. Justin Ruggles Lead Engineer, Transcoding & Delivery ADAPTIVE STREAMING AT Justin Ruggles Lead Engineer, Transcoding & Delivery justinr@vimeo.com ABOUT VIMEO Video hosting platform, founded in 2004, that allows creators to share their content in high quality,

More information

HTML5 INTRODUCTION & SEMANTICS

HTML5 INTRODUCTION & SEMANTICS HTML5 INTRODUCTION & SEMANTICS HTML5 HTML5 is the last major revision of the Hypertext Markup Language (HTML) standard W3C Recommendation 28 October 2014 Follows its predecessors HTML 4.01 and XHTML 1.1

More information

Cougar Courses 2.0 Using the PoodLL Camera Recorder

Cougar Courses 2.0 Using the PoodLL Camera Recorder Cougar Courses 2.0 Using the PoodLL Camera Recorder Why Do This The PoodLL voice recorder gives you the capability to add this media anywhere you can access the file picker, including add a file, assignment

More information

Until HTML5, there has never been a standard for showing video on a web page. Previously, most videos were shown through a plugin (mainly Flash).

Until HTML5, there has never been a standard for showing video on a web page. Previously, most videos were shown through a plugin (mainly Flash). CS7026 HTML5 Video Video on the Web Until HTML5, there has never been a standard for showing video on a web page. Previously, most videos were shown through a plugin (mainly Flash). However, not all browsers

More information

360 VIDEO CLOUD STREAMING & HTMLVIDEOELEMENT EXTENSIONS

360 VIDEO CLOUD STREAMING & HTMLVIDEOELEMENT EXTENSIONS 360 VIDEO CLOUD STREAMING & HTMLVIDEOELEMENT EXTENSIONS Louay Bassbouss Fraunhofer FOKUS, October 19-20, 2016; San Jose, CA, USA 360 video cloud streaming https://www.fokus.fraunhofer.de/go/360 2 360 STREAMING

More information

Debunking HTML5 Video Myths: A Guide for Video Publishers. by Robert Reinhardt

Debunking HTML5 Video Myths: A Guide for Video Publishers. by Robert Reinhardt Debunking HTML5 Video Myths: A Guide for Video Publishers by Robert Reinhardt session description After Steve Jobs announced the ipad, a whole new round of anti-flash sentiment swept the ranks of the online

More information

Interoperability Quest: OTT Video, WebApps and CE

Interoperability Quest: OTT Video, WebApps and CE Interoperability Quest: OTT Video, WebApps and CE Commercial OTT Video Issues: Content Format Issues Content Format m3u8 HLS mpd DASH ismc Smooth f4m HDS Each asset copied to multiple media formats different

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

nanostream WebRTC.live

nanostream WebRTC.live nanostream WebRTC.live Product Overview Document V 1.4, 2017-01 2017 nanocosmos gmbh Setup secure online meetings at a distance or stream live events to thousands of worldwide viewers: nanostream WebRTC.live

More information

JANUARY 2018 PRIVATE MEDIA CREATIVE SPECIFICATIONS

JANUARY 2018 PRIVATE MEDIA CREATIVE SPECIFICATIONS JANUARY 2018 PRIVATE MEDIA CREATIVE SPECIFICATIONS TABLE OF CONTENTS CREATIVE DEADLINES 3 BANNER SPECIFICATIONS 3 HTML5 ADVERTISING SPECIFICTIONS 4-6 NEWSLETTER SPECIFICATIONS 7 SKIN SPECIFICATIONS 8 MOBILE

More information

White Paper: HTML5 Streaming (Plug-in Free Web Viewer) hanwhasecurity.com

White Paper: HTML5 Streaming (Plug-in Free Web Viewer) hanwhasecurity.com White Paper: HTML5 Streaming (Plug-in Free Web Viewer) hanwhasecurity.com Overview and Background Overview Existing web viewers require a plug-in (ActiveX, Silverlight, or NPAPI) to be installed to use

More information

CS 528 Mobile and Ubiquitous Computing Lecture 4a: Playing Sound and Video Emmanuel Agu

CS 528 Mobile and Ubiquitous Computing Lecture 4a: Playing Sound and Video Emmanuel Agu CS 528 Mobile and Ubiquitous Computing Lecture 4a: Playing Sound and Video Emmanuel Agu Reminder: Final Project 1-slide from group in 2 weeks Thursday October 11: 2/30 of final project grade Slide should

More information

HTML5 - INTERVIEW QUESTIONS

HTML5 - INTERVIEW QUESTIONS HTML5 - INTERVIEW QUESTIONS http://www.tutorialspoint.com/html5/html5_interview_questions.htm Copyright tutorialspoint.com Dear readers, these HTML5 Interview Questions have been designed specially to

More information

Index. B2G. See Boot to Gecko (B2G) project Banner landmark, 32 Baranovskiy, D., 137 Boot to Gecko (B2G) project, 155 Browser vendors, 6, 12

Index. B2G. See Boot to Gecko (B2G) project Banner landmark, 32 Baranovskiy, D., 137 Boot to Gecko (B2G) project, 155 Browser vendors, 6, 12 Index A Android, SVG, 138 Animated SVG Girl, 139 Animated SVG icons, 145 APIs cross-document messaging, 162 Drag and Drop (DnD), 163 geolocation, 161 history, 159 HTML5 Web App, 159 Web Sockets, 162 Web

More information

Digital Audio Basics

Digital Audio Basics CSC 170 Introduction to Computers and Their Applications Lecture #2 Digital Audio Basics Digital Audio Basics Digital audio is music, speech, and other sounds represented in binary format for use in digital

More information

What is HTML5? The previous version of HTML came in The web has changed a lot since then.

What is HTML5? The previous version of HTML came in The web has changed a lot since then. What is HTML5? HTML5 will be the new standard for HTML, XHTML, and the HTML DOM. The previous version of HTML came in 1999. The web has changed a lot since then. HTML5 is still a work in progress. However,

More information

Advanced Plugin: LoadDVD Pro

Advanced Plugin: LoadDVD Pro Advanced Plugin: LoadDVD Pro ( 2009, 2010 MediaDogg Software) Introduction LoadDVD Pro is a plugin or add-in program for Invelos DVD Profiler ( Profiler ). At this time, the program does not run on its

More information

FOUNDATION. Matthew David AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO

FOUNDATION. Matthew David AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO HTML5 RICH MEDIA FOUNDATION Matthew David AMSTERDAM BOSTON HEIDELBERG LONDON NEW YORK OXFORD PARIS SAN DIEGO SAN FRANCISCO SINGAPORE SYDNEY TOKYO Focal Press is an imprint of Elsevier Focal Press is an

More information

Live HTTP Streaming of Video and Subtitles within a Browser

Live HTTP Streaming of Video and Subtitles within a Browser Live HTTP Streaming of Video and Subtitles within a Browser Cyril Concolato Jean Le Feuvre Telecom ParisTech 46, rue Barrault 75013 Paris, France {cyril.concolato, jean.lefeuvre}@telecom-paristech.fr ABSTRACT

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

Visual HTML5. Human Information Interaction for Knowledge Extraction, Interaction, Utilization, Decision making HI-I-KEIUD

Visual HTML5. Human Information Interaction for Knowledge Extraction, Interaction, Utilization, Decision making HI-I-KEIUD Visual HTML5 1 Overview HTML5 Building apps with HTML5 Visual HTML5 Canvas SVG Scalable Vector Graphics WebGL 2D + 3D libraries 2 HTML5 HTML5 to Mobile + Cloud = Java to desktop computing: cross-platform

More information

ADVERTISING SPECIFICATION

ADVERTISING SPECIFICATION ADVERTISING SPECIFICATION MOBILE & TABLET DESKTOP IN APP VIDEO TABLE of CONTENTS Creative Format page DISPLAY CREATIVE SPECIFICATION 3 DESKTOP RICH MEDIA 5 MOBILE RICH MEDIA & MRAID 6 DESKTOP VIDEO 8 MOBILE

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

footer, header, nav, section. search. ! Better Accessibility.! Cleaner Code. ! Smarter Storage.! Better Interactions.

footer, header, nav, section. search. ! Better Accessibility.! Cleaner Code. ! Smarter Storage.! Better Interactions. By Sruthi!!!! HTML5 was designed to replace both HTML 4, XHTML, and the HTML DOM Level 2. It was specially designed to deliver rich content without the need for additional plugins. The current version

More information

Eolas Technologies Incorporated v. Adobe Systems Incorporated et al Doc. 586 Att. 3. Exhibit L. Dockets.Justia.com

Eolas Technologies Incorporated v. Adobe Systems Incorporated et al Doc. 586 Att. 3. Exhibit L. Dockets.Justia.com Eolas Technologies Incorporated v. Adobe Systems Incorporated et al Doc. 586 Att. 3 Exhibit L Dockets.Justia.com Claim Chart For Adobe Showing Indirect Infringement Of The 985 Patent Through pdf authoring

More information

DIGITAL AD SPECS. Rectangle 2 Dimensions: 300x250 File Size: 60 kb max. File Format: JPG, PNG, GIF. Animation: GIF; 15 sec max. Video: Yes (RRM/IBV)

DIGITAL AD SPECS. Rectangle 2 Dimensions: 300x250 File Size: 60 kb max. File Format: JPG, PNG, GIF. Animation: GIF; 15 sec max. Video: Yes (RRM/IBV) Leaderboard 1 Dimensions: 728x90 Video: Yes (RRM) Expandable: Yes ( 728x90 > 728x270 ) Rectangle 2 Dimensions: 300x250 Expandable sizes: 300x250 > 600x250 300x250 > 320x480 (mobile only) DESKTOP AD POSITIONS

More information

This type of content can be added to any content area (such as Subject Materials) or a Learning Module.

This type of content can be added to any content area (such as Subject Materials) or a Learning Module. 1 Overview A variety of content can be added to your subject site including: Item: Create and style your own text or HTML content File: Add a document (e.g. Word, PDF, ZIP) for students to download Audio:

More information

HTML5 INTRODUCTION & SEMANTICS

HTML5 INTRODUCTION & SEMANTICS HTML5 INTRODUCTION & SEMANTICS HTML5 A vocabulary and associated APIs for HTML and XHTML HTML5 is the last major revision of the Hypertext Markup Language (HTML) standard W3C Recommendation 28 October

More information

Universal Ad Package (UAP)

Universal Ad Package (UAP) Creative Unit Name Medium Rectangle imum Expanded not Additional for OBA Self- Reg Compliance (Note 1) Polite File User- Initiated File Additional Streaming File for Universal Ad Package (UAP) Video &

More information

WoundClinic. PodiatryToday Digital Rate Card & Specification Guide. PodiatryToday

WoundClinic. PodiatryToday Digital Rate Card & Specification Guide. PodiatryToday WoundClinic TODAY S 2019 Digital Rate Card & Specification Guide Reach tens of thousands of wound care prospects multiple times monthly, and build lasting relationships by taking advantage of the Wound

More information

HTML5 INTRODUCTION & SEMANTICS

HTML5 INTRODUCTION & SEMANTICS HTML5 INTRODUCTION & SEMANTICS HTML5 A vocabulary and associated APIs for HTML and XHTML HTML5 is the last major revision of the Hypertext Markup Language (HTML) standard W3C Recommendation 28 October

More information

Mobile Cloud Computing & Adaptive Streaming

Mobile Cloud Computing & Adaptive Streaming Mobile Cloud Computing & Adaptive Streaming 20 th Mar 2012 Suriya Mohan, Aricent Group, Chennai Agenda Mobile Cloud Computing Tablet / Smartphone Evolution Cloud Computing 3 Fundamental Models Clouds in

More information

Related Solution(s) Note: Standard Ad Solution. KBB.com Advertising Specifications Medium Rectangle (MREC) Ad Unit

Related Solution(s) Note: Standard Ad Solution. KBB.com Advertising Specifications Medium Rectangle (MREC) Ad Unit KBB.com s Advertising Specifications Medium Rectangle HTML5 Note: Standard Ad Solution Related Solution(s) Retention/Conquest Package Native Sponsored Content Package New Car Spotlight Package New Car

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

Our Market. Overwhelming Growth of Video & It s Still Early

Our Market. Overwhelming Growth of Video & It s Still Early Our Market Overwhelming Growth of Video & It s Still Early Sorenson Media Innovators A Decade of Hits Squeeze 9 Headlines Industry-First HTML5 Optimization Refined Overall Aesthetic & Streamlined User

More information

SubTech 1. Short intro on different subtitle standards ISOBMFF, MPEG-DASH, DVB-DASH, DASH-IF, CMAF, HLS

SubTech 1. Short intro on different subtitle standards ISOBMFF, MPEG-DASH, DVB-DASH, DASH-IF, CMAF, HLS SubTech 1 24 Mai 2018, IRT, Symposium on Subtitling Technology Short intro on different subtitle standards ISOBMFF, MPEG-DASH, DVB-DASH, DASH-IF, CMAF, HLS 24 Mai 2018, IRT, Symposium on Subtitling Technology

More information

Fundamentals of Website Development

Fundamentals of Website Development Fundamentals of Website Development CSC 2320, Fall 2015 The Department of Computer Science In this chapter History of HTML HTML 5-2- 1 The birth of HTML HTML Blows and standardization -3- -4-2 HTML 4.0

More information

PN ITEM UPC ARCHOS 55b Platinum 8GB EU ARCHOS 55b Platinum 16GB EU

PN ITEM UPC ARCHOS 55b Platinum 8GB EU ARCHOS 55b Platinum 16GB EU The new ARCHOS 55b Platinum is here. This 5.5-inch smartphone is ready to stand by your side and help you face your daily challenges. Doesn t matter if you want to watch a movie on the HD IPS screen or

More information

HTML5 MOCK TEST HTML5 MOCK TEST I

HTML5 MOCK TEST HTML5 MOCK TEST I http://www.tutorialspoint.com HTML5 MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to HTML5 Framework. You can download these sample mock tests at your

More information

250x250 以上は縮小. 現在 1 人くらいが見てます. カタログ新順古順多順少順履歴 Here's a gallery of video

250x250 以上は縮小. 現在 1 人くらいが見てます. カタログ新順古順多順少順履歴 Here's a gallery of video Your browser does not support script 15-6-2014 Here's a gallery of video clips that I've made while working on the game, in webm format. The latest feature to get added to the game is at the bottom of.

More information

PN ITEM UPC ARCHOS 101c Helium - 16GB EU

PN ITEM UPC ARCHOS 101c Helium - 16GB EU The Helium s family welcome a new member: the ARCHOS 101c Helium. It has everyting you need to entertainement your way. When you re on the go, stay connected just like you are at home with the 4G/LTE chip

More information

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS LESSON 1 GETTING STARTED Before We Get Started; Pre requisites; The Notepad++ Text Editor; Download Chrome, Firefox, Opera, & Safari Browsers; The

More information

4K DVB-T2 / DVB-S2 Android Streaming Box with Fly Mouse

4K DVB-T2 / DVB-S2 Android Streaming Box with Fly Mouse General information Connect this DVB-T2/S2 4K Android streaming box to your TV and stream movies, update your Facebook, show pictures or plan a gaming night with friends all on your TV screen. This super

More information

HTML5 Video. Streaming Parameters. Example (HTML) Example (JavaScript) Streaming Video ON THIS PAGE

HTML5 Video. Streaming Parameters. Example (HTML) Example (JavaScript) Streaming Video ON THIS PAGE HTML5 Video ON THIS PAGE Streaming Video Streaming Parameters YouTube Media Source Extensions HLS Live Streaming HDMI Input RF Input View Mode HWZ Video HWZ with CSS Z-Ordering HWZ Video Transforming HWZ

More information

BlackBerry KEYone Specifications

BlackBerry KEYone Specifications BlackBerry KEYone Specifications Fully Android Access to over a million apps on Google Play 4.5 scratch-resistant display Convenience Key 8MP front camera with flash 12MP auto-focus large pixel rear camera

More information

U-Vision Online Introduction Workshop

U-Vision Online Introduction Workshop U-Vision Online Introduction Workshop Presented by: Mr. William Cheung Xaness Interactive Limited Main Page Website: http:// Support the following browsers > IE8, Firefox, Chrome, Safari Main Page HKU

More information

MULTIMEDIA TOOLS :: CLASS NOTES

MULTIMEDIA TOOLS :: CLASS NOTES CLASS :: 08 10.30 2017 3 Hours MULTIMEDIA TOOLS :: CLASS NOTES AGENDA EXPORTING PSD IMAGES TO FOLDER :: Ensure Your Folder Structure is Correct :: Open Photoshop CC (Creative Cloud) :: Properly Name Your

More information

H5STREAM. Copyright 2018 linkingvison, All rights reserved

H5STREAM. Copyright 2018 linkingvison, All rights reserved Copyright 2018 linkingvison, All rights reserved ON-PREMISES RTSP/RTMP MP4 AVI MEDIA REST API RECORD SNAPSHOT RTSP/RTMP / IS HTML5 NATIVE PLAYER WITH LOW LATENCY(

More information

HbbTV Companion Screen Sync

HbbTV Companion Screen Sync HbbTV Companion Screen Sync W3C TPAC 2017 Date of Presentation: 6 November 2017 Chris Needham What is HbbTV? Open spec implemented by major TV manufacturers for the European market Defines an HTML+JS interactive

More information

Unifying the Flash and HTML5 Video Experience

Unifying the Flash and HTML5 Video Experience Unifying the Flash and HTML5 Video Experience Kaltura Inspire Webinar November 29, 2011 Twitter hashtag: #Kaltura Who uses Kaltura? Over 150,000 websites; over 20,000 community members Market leadership

More information

Last updated on 1/20/2017

Last updated on 1/20/2017 AVAILABLE AD FORMATS: INTERSTITIALS BANNERS RECTANGLES SPONSORSHIP BILLBOARDS HOME PAGE TAKE OVERS VIDEOS SPECIAL OPERATIONS 1/20/2017 TECHNICAL SPECIFICATIONS: GENERAL GUIDELINES Please note this document

More information

PN & UPC codes PN Item UPC ARCHOS 50 Power 16GB EU ARCHOS 50 Power 16GB UK

PN & UPC codes PN Item UPC ARCHOS 50 Power 16GB EU ARCHOS 50 Power 16GB UK The ARCHOS 50 Power is one of the first members of the ARCHOS Power range. Built around a 4 000 mah, this smartphone s got your back in any circumstance. No need to have your charger with you all time.

More information

Technical Specifications ONLINE 2019 Q1. De Standaard Het Nieuwsblad Gazet van Antwerpen Het Belang van Limburg

Technical Specifications ONLINE 2019 Q1. De Standaard Het Nieuwsblad Gazet van Antwerpen Het Belang van Limburg Technical Specifications ONLINE 2019 Q1 De Standaard Het Nieuwsblad Gazet van Antwerpen Het Belang van Limburg Index DISPLAY & VIDEO 3 Formats overview Display 3 Formats overview Video 4 TABLET 5 Formats

More information

Apple Inc. November 2007

Apple Inc. November 2007 Standardized multimedia elements in HTML5 Position paper for the W3C Video on the web workshop Kevin Calhoun, Eric Carlson, Adele Peterson, Antti Koivisto Apple Inc. November 2007 1 Introduction We believe

More information

IGME-330. Rich Media Web Application Development I Week 1

IGME-330. Rich Media Web Application Development I Week 1 IGME-330 Rich Media Web Application Development I Week 1 Developing Rich Media Apps Today s topics Tools we ll use what s the IDE we ll be using? (hint: none) This class is about Rich Media we ll need

More information

The paper shows how to realize write-once-run-anywhere for such apps, and what are important lessons learned from our experience.

The paper shows how to realize write-once-run-anywhere for such apps, and what are important lessons learned from our experience. Paper title: Developing WebRTC-based team apps with a cross-platform mobile framework. Speaker: John Buford. Track: Mobile and Wearable Devices, Services, and Applications. Hello everyone. My name is John

More information

DIGITAL AD SPECS. Rectangle Dimensions: 300x250. File Size: 60 kb Max. File Format: JPG, PNG, GIF, ad tags Animation: GIF, HTML5, 15 sec max; IBV

DIGITAL AD SPECS. Rectangle Dimensions: 300x250. File Size: 60 kb Max. File Format: JPG, PNG, GIF, ad tags Animation: GIF, HTML5, 15 sec max; IBV /3/8 DESKTOP ADS Leaderboard Dimensions: 78x90 Animation: GIF, HTML5, 5 sec max; IBV 78x90 > 78x70 Half Page Dimensions: 300x600 File Size: 60 kb Animation: GIF, HTML5, 5 sec max; IBV Expandable size:

More information

Multimedia Content. Web Architecture and Information Management [./] Spring 2009 INFO (CCN 42509) Contents. Erik Wilde, UC Berkeley School of

Multimedia Content. Web Architecture and Information Management [./] Spring 2009 INFO (CCN 42509) Contents. Erik Wilde, UC Berkeley School of Contents Multimedia Content Contents Web Architecture and Information Management [./] Spring 2009 INFO 190-02 (CCN 42509) Erik Wilde, UC Berkeley School of Information [http://creativecommons.org/licenses/by/3.0/]

More information

Adopting HTML5 for Television: Next Steps

Adopting HTML5 for Television: Next Steps Adopting HTML5 for Television: Next Steps Speaker François Daoust World Wide Web Consortium (W3C) This presentation http://www.w3.org/2011/talks/0928-webtv-nem-fd/ Location 2011 NEM Summit

More information

SpaceNews.com Specifications

SpaceNews.com Specifications SpaceNews.com Specifications Ad Placements Home Page and Section Home Pages Leaderboard To properly display on both PC and Mobile platforms two ad sizes are required PC: 728x90, 40kb max, expandable-down

More information

计算原理导论. Introduction to Computing Principles 智能与计算学部刘志磊

计算原理导论. Introduction to Computing Principles 智能与计算学部刘志磊 计算原理导论 Introduction to Computing Principles 天津大学 智能与计算学部刘志磊 Analog The world is basically analog What does that mean? "Signal" is a varying wave over time e.g. sound as a running example here How Does

More information

Jigsaw Troubleshooting Tips

Jigsaw Troubleshooting Tips Jigsaw Troubleshooting Tips September 11, 2015 Page 1 of 15 Table of Contents Help I click Join Using Browser button, but nothing happens.... 3 Tip # 1: Clear the Internet browser s cache or settings....

More information

ECA Video Submission Guide for Student

ECA Video Submission Guide for Student ECA Video Submission Guide for Student TABLE OF CONTENTS 1. Important Notes... 1 2. Hardware Requirement for Live Recording... 2 3. Software Requirement for Live Recording... 2 4. Record/Upload Media Submission...

More information

Embracing HTML5 CSS </> JS javascript AJAX. A Piece of the Document Viewing Puzzle

Embracing HTML5 CSS </> JS javascript AJAX. A Piece of the Document Viewing Puzzle Embracing HTML5 AJAX CSS JS javascript A Piece of the Document Viewing Puzzle Embracing HTML5: A Piece of the Document Viewing Puzzle For businesses and organizations across the globe, being able to

More information

360 VIDEO PLAYOUT FRAUNHOFER FOKUS

360 VIDEO PLAYOUT FRAUNHOFER FOKUS 360 VIDEO PLAYOUT FRAUNHOFER FOKUS Matthias Heyde / Fraunhofer FOKUS Stephan Steglich Louay Bassbouss louay.bassbouss@fokus.fraunhofer.de Stefan Pham stefan.pham@fokus.fraunhofer.de

More information

4K Android Streaming Box with Fly Mouse

4K Android Streaming Box with Fly Mouse General information Connect this 4K Android streaming box to your TV and stream movies, update your Facebook, show pictures or plan a gaming night with friends all on your TV screen. This super versatile

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

Images 1/30/2019. Basics of Photography. Photography, In General

Images 1/30/2019. Basics of Photography. Photography, In General Images 1 Basics of Photography 2 Photography, In General You may never have to produce images for a project However, there are some basic photographic principles that are good for you to know Greek: Photograph

More information

Slide 1. Slide 2. Slide 3 REMEMBER BLOGGING TIPS: WHAT BLOGGERS WON T TELL YOU ABOUT BLOGGING

Slide 1. Slide 2. Slide 3 REMEMBER BLOGGING TIPS: WHAT BLOGGERS WON T TELL YOU ABOUT BLOGGING Slide 1 Slide 2 BLOGGING TIPS: WHAT BLOGGERS WON T TELL YOU ABOUT BLOGGING Slide 3 REMEMBER HTML Online Class Summer 2012 Introduction to WordPress Summer 2012 lorelle.wordpress.com lorelleteaches.wordpress.com

More information

Web Development & Design Foundations with HTML5, 8 th Edition Instructor Materials Chapter 11 Test Bank

Web Development & Design Foundations with HTML5, 8 th Edition Instructor Materials Chapter 11 Test Bank Multiple Choice. Choose the best answer. 1. Java can be described as: a. a more sophisticated form of JavaScript b. an object-oriented programming language c. a language created by Netscape 2. JavaScript

More information

BEST PRACTICES HTML5 SPECIFICATIONS. what's next in data-driven advertising. File Types. HTML5: HTML, JS, CSS, JPG, JPEG, GIF, PNG, and SVG

BEST PRACTICES HTML5 SPECIFICATIONS. what's next in data-driven advertising. File Types. HTML5: HTML, JS, CSS, JPG, JPEG, GIF, PNG, and SVG SPECIFICATIONS HTML5 creatives are a type of display creative that must follow the same guidelines as display creatives with some additional recommendations. The IAB Display Advertising Guidelines (https://www.iab.com/newadportfolio/)

More information

HTML, XHTML, and CSS. Sixth Edition. Chapter 1. Introduction to HTML, XHTML, and

HTML, XHTML, and CSS. Sixth Edition. Chapter 1. Introduction to HTML, XHTML, and HTML, XHTML, and CSS Sixth Edition Chapter 1 Introduction to HTML, XHTML, and CSS Chapter Objectives Describe the Internet and its associated key terms Describe the World Wide Web and its associated key

More information

Introduction. Input Format Support

Introduction. Input Format Support Introduction Transcode Multiscreen includes transcoding software specifically designed for adaptive bit rate encoding using both GPUs and CPUs. It simultaneously produces multiple bit-rate variants of

More information