keynote: the state of WebRTC

Size: px
Start display at page:

Download "keynote: the state of WebRTC"

Transcription

1 keynote: the state of WebRTC Erik Lagerway Co-founder Hookflash Co-chair WebRTC Working Group Chair ORTC Community Group Trent Johnsen CEO and co-founder Hookflash

2 W3C WebRTC & ORTC Standards Update March 7, 2016 Erik Lagerway, Co-founder Hookflash Founder & Chair - W3C ORTC Community Group Co-chair, W3C WebRTC Working Group

3 what is the state of WebRTC today? Media Capture, last call for comments Reference Permissions API Few other issues No outstanding PRs Peer Connection & Data Channel, making progress 12 +/- open PRs 33 +/- open issues

4 WebRTC re-charters July 2015 "The Working Group will take the work done by the ORTC Community Group as a source of input, and when contemplating similar APIs in the Working Group, make efforts to align with the ORTC CG on API methodologies and nomenclature. This may include scheduled design meetings with relevant WG and CG stakeholders to foster convergence of the APIs." Source:

5 excerpt from: WebRTC Charter Agreement As the name indicates, WebRTC 1.0: Real-time Communication Between Browsers is a first version of APIs for real-time communication, sometimes referred to as the PeerConnection API. The activities in the ORTC (Object Real-time Communications) Community Group indicate that there is interest in additional APIs to provide more direct control over WebRTC than what the PeerConnection API offers. In recognition of this interest, the Working Group will, once WebRTC 1.0: Real-time Communication Between Browsers reaches Candidate Recommendation, start work on a new set of object-oriented APIs for real-time communication. In developing these new APIs, the Working Group will adhere to the following principles: Direct control: The new APIs are intended to provide direct control over the details of real-time communication, where the application can directly specify how information should be transmitted, without any built-in negotiation semantics. Standalone operation: The new APIs will be complete enough to allow applications to write solely to the new APIs to complete common tasks. Backwards-compatibility: The new APIs will extend the WebRTC 1.0 APIs, rather than replace them. Applications that use the PeerConnection API will continue to function, unless there is a clear and compelling reason to deprecate specific 1.0 functionality. Feature independence: Features may be introduced in the new APIs that are not available when using the PeerConnection API. The Working Group will take the work done by the ORTC Community Group as a source of input, and when contemplating similar APIs in the Working Group, make efforts to align with the ORTC CG on API methodologies and nomenclature. This may include scheduled design meetings with relevant WG and CG stakeholders to foster convergence of the APIs.

6 new Chairs/Editors W3C WebRTC Working Group Erik Lagerway (Hookflash) is added as a WebRTC Working Group Cochair (June 2015) Bernard Aboba (Microsoft) is added as a WebRTC Working Group Editor (Sept 2015)

7 WebRTC two years ago Application PeerConnection MediaStream getusermedia (GUM) ICE DTLS SCTP RTP MediaStream MediaStream Track MediaStream Track Track Visible only through stats Only indirect control

8 2015 WebRTC spec additions PeerConnection.getSenders().getReceivers() // Name TBD.addTransceiver(kind).sctp... RtpSender.track.transport.getCapabilities().getParameters().setParameters(params).replaceTrack(track)... RtpReceiver.track.transport.getCapabilities().getContributingSources()... DtlsTransport.transport.state.getRemoteCertificates().onstatechange... IceTransport.state.getLocalParameters(),.getRemoteParameters(),.getLocalCandidates().getRemoteCandidates().getSelectedCandidatePair().onstatechange... SctpTransport.transport DataChannel.transport RtpParameters.codecs.encodings... RtpCodecParameters (read only).mimetype.payloadtype... RtpEncodingParameters.active.maxBandwidth (read only).ssrc... IceParameters (read only).usernamefragment.password DtlsParameters... Source: Has read-only getcapabilities, parameters, codecs, header extensions, SSRCs Has multiple encodings

9 what you can do with WebRTC 1.0 objects "Warm up" media path while getting a track and ringing Change the send codec (without SDP munging) Change the camera source instantly (front to back) Enable/disable sending of media instantly (without signalling) Set a maximum bitrate or maximum frame rate Obtain detailed status of individual ICE and DTLS transports Send simulcast

10 WebRTC now ORTC Application Application PeerConnection ICE DTLS SCTP RTP ICE DTLS SCTP RTP Objects all read-only Indirectly controlled via PeerConnection Some direct control Same objects as WebRTC Full direct control PeerConnection optional (via JS lib)

11 ORTC in more detail

12 what will you be able to do with ORTC but not WebRTC? Configure the objects without SDP and related complexities Scalable Video Coding (Temporal & Spatial Scalability) Call forking RTP unhandled events Interoperate with other ORTC endpoints, without the need for a shim (eg. Edge ORTC & ORTC Lib applications)

13

14 how does WebRTC NV differ from ORTC? NV (Next Version) Mandates support for WebRTC 1.0 interoperability SDP or Objects When will it ship? ORTC Object-centric interface SDP handled outside of the spec (eg. JS shim)

15 ORTC is shipping now: Microsoft Edge (Sept 2015) Build ORTC web apps on top of ORTC in Edge eg. Skype for Web (timing?) ORTC Library (Q3 2016) Open Source Build ORTC apps everywhere else via ORTC Library, Alpha release WebRTC supported via JS shim Samples: PeerCC + ORTC, DataChannel (April 2016)

16 what is ORTC Lib? Open Source (MIT) real world usable ORTC reference implementation C++ API implementation Focus is on mobile (Material work on ICE stack) Wrapped in Objective-C, CX (WinRT), Java Support for WinRT (Win 10), ios, Mac, Android Applications can be written in C++, Obj-C, C#, Java Uses lower level WebRTC media components in core Main API implementation done by Hookflash

17 what is in ORTC Lib? Sending Application Receiving Application C# application WinJS application* ios application Mac application Android application Native C++ application WinRT CX API wrapper Objective-C API wrapper Java API wrapper Track Track RtpSender RtpSender Sdes Transport Sdes Transport RtpReceiver Track DtlsTransport IceTransport IceTransport DtlsTransport Internet Data Data Channel Sctp Sctp Transport RtpListener IceGatherer IceGatherer Sctp Sctp Transport Data Data Channel IceTransportC ontroller IceTransportC ontroller * not officially supported

18 does ORTC make WebRTC NV somewhat irrelevant? Both will have objects in stand-alone model Both will have support for SDP (with ORTC via application) One is shipping today At the end of the day, the market will decide

19 summary WebRTC WG and ORTC CG converging (charter, chairs, editors) WebRTC and ORTC specs converging (objects) WebRTC 1.0 (with objects!): ORTC: ICE (Feb 25, nd Virtual Interim) ORTC available in Edge ORTC Library, Alpha release (soon) PeerConnection implementation in JS already working (adapter.js pull request) Google has started implementing WebRTC/ORTC Basic RtpSender/RtpReceiver already available for mobile apps at webrtc.org More to come in Will be available in Chrome, Android, and ios

20 ORTC links ORTC portal W3C ORTC CG - W3C Community Group - Specification issues ORTC Library repo

21 WebRTC links W3C WebRTC links Specification: Working Group: Charter: Related sites - Google SDK / Library - specification issues

22 Thank you! Erik Lagerway Thanks to: Bernard Aboba, Microsoft Peter Thatcher, Google Robin Raymond, Hookflash

23 WebRTC moves communications from infrastructure to software Source: We are Software People Jeff Lawson - Twilio 2012

24 millions of developers will deliver integrated real-time communications solutions

25 software is eating the world World s largest taxi company owns no taxis (Uber) Largest accommodation provider owns no real estate (Airbnb) Largest phone companies own no telco infrastructure (Skype, WeChat) World s most valuable retailer has no inventory (Alibaba) Most popular media owner creates no content (Facebook) World s largest movie provider owns no theatres (Netflix) Largest software vendors don t write the Apps ( Apple and Google)

26 how will your enterprise use RTC? business process / API consumption W3C Specification Software Libraries Applications SDKs and APIs Services: Skype for Web (built on ORTC)

27 applications examples (hint: ORTC best use case is NOT video calling in a browser)

28 There is a huge and growing interest in blending communications apps/services with other software capabilities. We are moving from a world of standalone voice, video and messaging to a range of contextualised, work-stream-based and embedded alternatives. DEAN BUBLEY DISRUPTIVE ANALYSIS NOVEMBER 2015

29 state of WebRTC > what are leading companies doing today?

30 state of WebRTC > what are leading companies doing today?

31 WebRTC differentiators & benefits (as compared to a phone call) Authenticated logged into the app Secure encrypted peer to peer session, no server to attack Contextual data, geolocation & screen sharing can be integrated with call Better call quality wideband audio Less expensive voice minute rate is about 100,000 times lower (over-the-top) than typical voice rates * Source OECD: The Internet Economy: Generating Innovation and Growth, October 2012.

32 WebRTC requirements by market Enterprise IT Needs Performance Security Stability Predictability System integration Scaling down costs of mobile development and maintenance Consumer App Needs Advertising Virtual good purchases Virality Direct Monetization High Engagement Enterprise Mobile Tools Needs User analytics App performance analytics Crash reporting Integration with existing business logic (connectors with Microsoft, Oracle, SAP, IBM, Salesforce) Identity management Data security Own app store distribution

33 state of WebRTC > what are leading companies doing today?

34 "Oops, I mentioned #WebRTC still just another year away from being important"

35 World s Most Admired Companies working with WebRTC / ORTC today - March 2016 (that we know of)

36 learn more... Trent Johnsen CEO

37 keynote: the state of WebRTC Erik Lagerway Co-founder Hookflash Co-chair WebRTC Working Group Chair ORTC Community Group Trent Johnsen CEO and co-founder Hookflash

WebRTC standards update (September 2014) Victor Pascual

WebRTC standards update (September 2014) Victor Pascual WebRTC standards update (September 2014) Victor Pascual Avila Victor.pascual@quobis.com @victorpascual About Me Technology, Innovation & Strategy Consultant Main focus: help make WebRTC happen involved

More information

WebRTC 1.0 Real-Time Communications in the Browser

WebRTC 1.0 Real-Time Communications in the Browser WebRTC 1.0 Real-Time Communications in the Browser Huib Kleinhout Product Manager, Google Stockholm @hkleinhout 2011 2018 >1.8B Weekly Chrome audio/video minutes, 3X from last year >1300 WebRTC-based

More information

Connected & Autonomous vehicles

Connected & Autonomous vehicles Connected & Autonomous vehicles AVL conference November 2016 Jonas Wilhelmsson Global Sales Director Ericsson Commercial in Confidence 2016-11-22 Page 1 3 major revolutions... Ericsson Commercial in Confidence

More information

Real-Time Communications for the Web. Presentation of paper by:cullen Jennings,Ted Hardie,Magnus Westerlund

Real-Time Communications for the Web. Presentation of paper by:cullen Jennings,Ted Hardie,Magnus Westerlund Real-Time Communications for the Web Presentation of paper by:cullen Jennings,Ted Hardie,Magnus Westerlund What is the paper about? Describes a peer-to-peer architecture that allows direct,interactive,rich

More information

Making the Right Signalling Choice. Session: D1-3 Erik Linask Group Editorial Director TMC

Making the Right Signalling Choice. Session: D1-3 Erik Linask Group Editorial Director TMC Making the Right Signalling Choice Session: D1-3 Erik Linask Group Editorial Director TMC ELinask@tmcnet.com Session Presenters Peter Dunkley Technical Crocodile Director RCS Ltd Steven Northridge Director

More information

Become a WebRTC School Qualified Integrator (WSQI ) supported by the Telecommunications Industry Association (TIA)

Become a WebRTC School Qualified Integrator (WSQI ) supported by the Telecommunications Industry Association (TIA) WSQI Certification Become a WebRTC School Qualified Integrator (WSQI ) supported by the Telecommunications Industry Association (TIA) Exam Objectives The WebRTC School Qualified Integrator (WSQI ) is designed

More information

The BaBL project Real-Time Closed-Captioning for WebRTC. Luis Villaseñor Muñoz 30 th April 2014

The BaBL project Real-Time Closed-Captioning for WebRTC. Luis Villaseñor Muñoz 30 th April 2014 The BaBL project Real-Time Closed-Captioning for WebRTC Luis Villaseñor Muñoz lvillase@hawk.iit.edu 30 th April 2014 1 BaBL, version 1.0: Project Goal To develop a proof of concept WebRTC conference application

More information

WebRTC Monitoring and Alerting

WebRTC Monitoring and Alerting 11/25/2013 1 WebRTC Monitoring and Alerting David A. Bryan Assistant Professor, Computer Science St. Edward s University dbryan@ethernot.org @davidbryan 2 11/25/2013 Speakers Chris Cavigioli Strategy Planning

More information

Cyber Security: It s all about TRUST

Cyber Security: It s all about TRUST www.pwc.com/vn Cyber Security: It s all about TRUST 29 th March 2017 Robert Tran Cybersecurity leader, Vietnam Content s Digital IQ Survey 1 Current state of Cybersecurity in Vietnam 2 2 Our global team

More information

WebRTC: IETF Standards Update September Colin Perkins

WebRTC: IETF Standards Update September Colin Perkins WebRTC: IETF Standards Update September 2016 Colin Perkins WebRTC Goals Server SIP+SDP Server Service SIP+SDP SIP+SDP Alice RTP Bob Alice API RTP API Bob The SIP framework is overly complex and rigid hinders

More information

A Multilingual Video Chat System Based on the Service-Oriented Architecture

A Multilingual Video Chat System Based on the Service-Oriented Architecture 2017 IEEE Symposium on Service-Oriented System Engineering A Multilingual Video Chat System Based on the Service-Oriented Architecture Jayanti Andhale, Chandrima Dadi, Zongming Fei Laboratory for Advanced

More information

FED. Kraftforum M a y Fo s s il Fr ee En er gy d is t r ic t. Jonas Wilhelmsson Global Engagement Director

FED. Kraftforum M a y Fo s s il Fr ee En er gy d is t r ic t. Jonas Wilhelmsson Global Engagement Director FED Fo s s il Fr ee En er gy d is t r ic t Kraftforum M a y 20 17 Jonas Wilhelmsson Global Engagement Director Disr upt ion al l ar ound World s largest taxi company owns no taxis (UBER) Largest accommodation

More information

Bug Bash for WebRTC-1.0 TPAC 2015

Bug Bash for WebRTC-1.0 TPAC 2015 Bug Bash for WebRTC-1.0 TPAC 2015 Bug status 52 bugs open (152 closed) Oldest bug is ~1 year old Some bug categories Text clarifications - we need a PR to integrate, or editors can just fix when they get

More information

Janus: back to the future of WebRTC!

Janus: back to the future of WebRTC! : back to the future of! Alessandro Amirante alex@meetecho.com Tobia Castaldi tcastaldi@meetecho.com Lorenzo Miniero lorenzo@meetecho.com Simon Pietro Romano spromano@unina.it January 14, 2015 Outline

More information

Kony MobileFabric. Release Notes. On-Premises. Release 6.5. Document Relevance and Accuracy

Kony MobileFabric. Release Notes. On-Premises. Release 6.5. Document Relevance and Accuracy Kony MobileFabric Release Notes On-Premises Release 6.5 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated on

More information

This is a sample chapter of WebRTC: APIs and RTCWEB Protocols of the HTML5 Real-Time Web by Alan B. Johnston and Daniel C. Burnett.

This is a sample chapter of WebRTC: APIs and RTCWEB Protocols of the HTML5 Real-Time Web by Alan B. Johnston and Daniel C. Burnett. This is a sample chapter of WebRTC: APIs and RTCWEB Protocols of the HTML5 Real-Time Web by Alan B. Johnston and Daniel C. Burnett. For more information or to buy the paperback or ebook editions, visit

More information

P2PSIP, ICE, and RTCWeb

P2PSIP, ICE, and RTCWeb P2PSIP, ICE, and RTCWeb T-110.5150 Applications and Services in Internet October 11 th, 2011 Jouni Mäenpää NomadicLab, Ericsson Research AGENDA Peer-to-Peer SIP (P2PSIP) Interactive Connectivity Establishment

More information

WebRTC Evolution. Dr Alex Citrix. The International Multimedia Telecommunications Consortium

WebRTC Evolution. Dr Alex Citrix. The International Multimedia Telecommunications Consortium The International Multimedia Telecommunications Consortium WebRTC volution Dr Alex Gouaillard @ Citrix http://www.html5rocks.com/en/tutorials/webrtc/basics/ arly 2015, P2P webrtc Model arly 2015, P2p webrtc

More information

Janus: a general purpose WebRTC gateway

Janus: a general purpose WebRTC gateway : a general purpose gateway Lorenzo Miniero lorenzo@meetecho.com FOSDEM 2016 Real Time devroom 30 th January 2016, Brussels Outline 1 A brief introduction 2 Some context and standardization activities

More information

Media Service - Is This Where the Money Is? Dean Bubley Disruptive Analysis

Media Service - Is This Where the Money Is? Dean Bubley Disruptive Analysis Media Service - Is This Where the Money Is? Dean Bubley Disruptive Analysis New stakeholders in communications Vendors & standards Telco / SP End-user Services creation Services consumption September 2014

More information

Intended status: Standards Track October 15, 2012 Expires: April 18, 2013

Intended status: Standards Track October 15, 2012 Expires: April 18, 2013 Network Working Group H. Alvestrand Internet-Draft Google Intended status: Standards Track October 15, 2012 Expires: April 18, 2013 Cross Session Stream Identification in the Session Description Protocol

More information

W3C WebRTC WG Meeting

W3C WebRTC WG Meeting W3C WebRTC WG Meeting Stockholm, Sweden June 19, 2018 Chairs: Stefan Hakansson Bernard Aboba Harald Alvestrand 1 W3C WG IPR Policy This group abides by the W3C Patent Policy https://www.w3.org/consortium/patent-policy/

More information

Talkative Engage Mitel Architecture Guide. Version 1.0

Talkative Engage Mitel Architecture Guide. Version 1.0 Talkative Engage Mitel Architecture Guide Version 1.0 This document contains confidential information that is proprietary to Talkative. No part of its contents may be used, disclosed or conveyed to any

More information

WebRTC Lessons Learned SUCCESSFULLY SUPPORTING WEBRTC IN BUSINESS APPLICATIONS

WebRTC Lessons Learned SUCCESSFULLY SUPPORTING WEBRTC IN BUSINESS APPLICATIONS Daitan White Paper WebRTC Lessons Learned SUCCESSFULLY SUPPORTING WEBRTC IN BUSINESS APPLICATIONS Highly Reliable Software Development Services http://www.daitangroup.com/webrtc WebRTC: Lessons Learned

More information

Integrating Mobile Applications - Contrasting the Browser with Native OS Apps. Cary FitzGerald

Integrating Mobile Applications - Contrasting the Browser with Native OS Apps. Cary FitzGerald Integrating Mobile Applications - Contrasting the Browser with Native OS Apps Cary FitzGerald caryfitz@employees.org Workshop Leaders Peter Dunkley Acision Adam van den Hoven Frozen Mountain Integrating

More information

THE EUROPEAN PAYMENTS LANDSCAPE IN THE DIGITAL ERA

THE EUROPEAN PAYMENTS LANDSCAPE IN THE DIGITAL ERA THE EUROPEAN PAYMENTS LANDSCAPE IN THE DIGITAL ERA Ron Kalifa Vice Chairman Worldpay 27 June 2016 Worldpay 2015. All rights reserved. What is Worldpay? 42% UK market share 13.1 billion transactions processed

More information

Oracle Communications WebRTC Session Controller

Oracle Communications WebRTC Session Controller Oracle Communications WebRTC Session Controller Concepts Release 7.0 E40976-01 November 2013 Oracle Communications WebRTC Session Controller Concepts, Release 7.0 E40976-01 Copyright 2013, Oracle and/or

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

Cisco WebEx Meeting Center Video Conferencing

Cisco WebEx Meeting Center Video Conferencing Data Sheet Cisco WebEx Meeting Center Video Conferencing Simplify your IT department s work and make it easy for participants to join meetings from any standards-based video endpoint with Cisco WebEx Meeting

More information

AWS Mobile Hub. Build, Test, and Monitor Your Mobile Apps. Daniel Geske, Solutions Architect 31 May 2017

AWS Mobile Hub. Build, Test, and Monitor Your Mobile Apps. Daniel Geske, Solutions Architect 31 May 2017 AWS Mobile Hub Build, Test, and Monitor Your Mobile Apps Daniel Geske, Solutions Architect 31 May 2017 2017, Amazon Web Services, Inc. or its Affiliates. All rights reserved. What to Expect from the Session

More information

Setting up CLUE telepresence sessions via the WebRTC data channel IPTComm2014, Chicago, September 30 th 2014

Setting up CLUE telepresence sessions via the WebRTC data channel IPTComm2014, Chicago, September 30 th 2014 Setting up CLUE telepresence sessions via the WebRTC data channel, September 30 th 2014 Roberta Presta & Simon Pietro Romano {roberta.presta,spromano}@unina.it Telepresence Real-time multimedia application

More information

IETF Video Standards A review, some history, and some reflections. Colin Perkins

IETF Video Standards A review, some history, and some reflections. Colin Perkins IETF Video Standards A review, some history, and some reflections Colin Perkins Internet Engineering Task Force The goal of the IETF is to make the Internet work better Technical development of protocol

More information

WebRTC Gateway. Real-time communications in all browsers

WebRTC Gateway. Real-time communications in all browsers WebRTC Gateway Real-time communications in all browsers WebRTC Gateway & Web Communicator End-to-end Solution for real time communications. Bridging the gap between the Web and Telco worlds. Helping Telecom

More information

WebSphere Puts Business In Motion. Put People In Motion With Mobile Apps

WebSphere Puts Business In Motion. Put People In Motion With Mobile Apps WebSphere Puts Business In Motion Put People In Motion With Mobile Apps Use Mobile Apps To Create New Revenue Opportunities A clothing store increases sales through personalized offers Customers can scan

More information

Agenda. Introduce the Tale of Two developers. Domino Top Secret. Back to the Future with the Domino

Agenda. Introduce the Tale of Two developers. Domino Top Secret. Back to the Future with the Domino Agenda Introduce the Tale of Two developers Domino Top Secret Industry Scenario based demo and the reach of Domino Apps Back to the Future with the Domino the Secure NOSQL Database with Node.js Hint: June

More information

Microsoft 365 powered device webinar series Microsoft 365 powered device Assessment Kit. Alan Maddison, Architect Amit Bhatia, Architect

Microsoft 365 powered device webinar series Microsoft 365 powered device Assessment Kit. Alan Maddison, Architect Amit Bhatia, Architect Microsoft 365 powered device webinar series Microsoft 365 powered device Assessment Kit Alan Maddison, Architect Amit Bhatia, Architect Why did we create the Assessment kit? Assessment objectives Assess

More information

Janus: an open source bridge towards the WebRTC ecosystem

Janus: an open source bridge towards the WebRTC ecosystem # : an open source bridge towards the ecosystem A. Amirante, T. Castaldi, L. Miniero and S. P. Romano spromano@unina.it University of Napoli Federico II & S.R.L. 20 th April 2016, #GARR2016, http://www.garr.it/ws16

More information

Oracle Communications WebRTC Session Controller. WebRTC Session Controller Features

Oracle Communications WebRTC Session Controller. WebRTC Session Controller Features Oracle Communications WebRTC Session Controller Release Notes Release 7.0 E49238-01 November 2013 These release notes list the features and known issues for WebRTC Session Controller. WebRTC Session Controller

More information

The more intuitive way to work.

The more intuitive way to work. 5 reasons more companies choose Webex The more intuitive way to work. Your employees, customers, and partners need the ability to connect and collaborate, at any time, from any location across time zones

More information

Building video apps on Salesforce Platform

Building video apps on Salesforce Platform Building video apps on Salesforce Platform 1 All about makepositive Salesforce PLATINUM Partner More than 400 successful Salesforce project deliveries Leaders in Customer Engagement solutions #1 Professional

More information

More performance options

More performance options More performance options OpenCL, streaming media, and native coding options with INDE April 8, 2014 2014, Intel Corporation. All rights reserved. Intel, the Intel logo, Intel Inside, Intel Xeon, and Intel

More information

November 2017 WebRTC for Live Media and Broadcast Second screen and CDN traffic optimization. Author: Jesús Oliva Founder & Media Lead Architect

November 2017 WebRTC for Live Media and Broadcast Second screen and CDN traffic optimization. Author: Jesús Oliva Founder & Media Lead Architect November 2017 WebRTC for Live Media and Broadcast Second screen and CDN traffic optimization Author: Jesús Oliva Founder & Media Lead Architect Introduction It is not a surprise if we say browsers are

More information

IPv6 Deployment in Africa

IPv6 Deployment in Africa IPv6 Deployment in Africa Adiel A. Akplogan CEO, AfriNIC INET Africa-2009 Spearheading Internet technology and policy development in the African Region The content IPv4 exhaustion Current situation IPv6

More information

White Paper Conquering Scalable WebRTC Conferencing

White Paper Conquering Scalable WebRTC Conferencing Conquering Scalable WebRTC Conferencing Executive Summary Developers are embracing WebRTC technology for building their next generation services but leveraging only peer-to-peer topologies may not be enough.

More information

Can Congestion-controlled Interactive Multimedia Traffic Co-exist with TCP? Colin Perkins

Can Congestion-controlled Interactive Multimedia Traffic Co-exist with TCP? Colin Perkins Can Congestion-controlled Interactive Multimedia Traffic Co-exist with TCP? Colin Perkins Context: WebRTC WebRTC project has been driving interest in congestion control for interactive multimedia Aims

More information

irtc: Live Broadcasting

irtc: Live Broadcasting 1 irtc: Live Broadcasting Delivering ultra-low-latency media at massive scale with LiveSwitch and WebRTC Introduction In the early days of the Internet and personal computing, it wasn t uncommon to wait

More information

Ovi and Social Location - bringing people closer to who and what matter to them. Michael Halbherr VP Social Location, Nokia

Ovi and Social Location - bringing people closer to who and what matter to them. Michael Halbherr VP Social Location, Nokia Ovi and Social Location - bringing people closer to who and what matter to them Michael Halbherr VP Social Location, Nokia 21.10.2009 Creating a strong foundation What have we achieved in the last two

More information

Build Mobile Cloud Apps Effectively Using Oracle Mobile Cloud Services (MCS)

Build Mobile Cloud Apps Effectively Using Oracle Mobile Cloud Services (MCS) Build Mobile Cloud Apps Effectively Using Oracle Mobile Cloud Services (MCS) Presented by: John Jay King Download this paper from: 1 Session Objectives Understand the need for something like Oracle Mobile

More information

U.S. Digital Video Benchmark Adobe Digital Index Q2 2014

U.S. Digital Video Benchmark Adobe Digital Index Q2 2014 U.S. Digital Video Benchmark Adobe Digital Index Q2 2014 Table of contents Online video consumption 3 Key insights 5 Online video start growth 6 Device share of video starts 7 Ad start per video start

More information

TECHNICAL WHITE PAPER FIDO APPROACHES: NOK NOK LABS S3 SUITE VS BUILD YOUR OWN FIDO

TECHNICAL WHITE PAPER FIDO APPROACHES: NOK NOK LABS S3 SUITE VS BUILD YOUR OWN FIDO TECHNICAL WHITE PAPER FIDO APPROACHES: NOK NOK LABS S3 SUITE VS BUILD YOUR OWN FIDO TABLE OF CONTENTS Executive Summary... 3 FIDO Solution Requirements... 3 FIDO UAF Client infrastructure... 4 FIDO UAF

More information

ITP 140 Mobile Technologies. Mobile Topics

ITP 140 Mobile Technologies. Mobile Topics ITP 140 Mobile Technologies Mobile Topics Topics Analytics APIs RESTful Facebook Twitter Google Cloud Web Hosting 2 Reach We need users! The number of users who try our apps Retention The number of users

More information

Large-Scale Measurement of Real-Time Communication on the Web

Large-Scale Measurement of Real-Time Communication on the Web Large-Scale Measurement of Real-Time Communication on the Web Shaohong Li School of Electrical Engineering Thesis submitted for examination for the degree of Master of Science in Technology. Espoo 20.11.2017

More information

The State of the App Economy

The State of the App Economy The State of the App Economy Retrospective 2016 & Insights 2017 Thierry Guiot Southern Europe Territory Director Baptiste Carrère Business Development Manager Southern Europe We help build better app businesses

More information

MOBILE DEFEND. Powering Robust Mobile Security Solutions

MOBILE DEFEND. Powering Robust Mobile Security Solutions MOBILE DEFEND Powering Robust Mobile Security Solutions Table of Contents Introduction Trustlook SECURE ai Mobile Defend Who Uses SECURE ai Mobile Defend? How it Works o Mobile Device Risk Score o Mobile

More information

Introduction to Xamarin Cross Platform Mobile App Development

Introduction to Xamarin Cross Platform Mobile App Development Introduction to Xamarin Cross Platform Mobile App Development Summary: In this document, we talk about the unique ability to create native ios, Android, Mac and Windows apps using C# making Xamarin, a

More information

Cloud UC. Program Downloads I WOULD LIKE TO... DOWNLOADING THE CLIENT SOFTWARE

Cloud UC. Program Downloads I WOULD LIKE TO... DOWNLOADING THE CLIENT SOFTWARE I WOULD LIKE TO... Cloud UC Program Downloads Avaya Cloud allows you to setup your telephone to be used the way you want it to. There are additional programs that extend the abilities of the application

More information

Vision of the Software Defined Data Center (SDDC)

Vision of the Software Defined Data Center (SDDC) Vision of the Software Defined Data Center (SDDC) Raj Yavatkar, VMware Fellow Vijay Ramachandran, Sr. Director, Storage Product Management Business transformation and disruption A software business that

More information

What s New for Oracle Internet of Things Cloud Service. Topics: Oracle Cloud. What's New for Oracle Internet of Things Cloud Service Release 17.4.

What s New for Oracle Internet of Things Cloud Service. Topics: Oracle Cloud. What's New for Oracle Internet of Things Cloud Service Release 17.4. Oracle Cloud What's New for Oracle Internet of Things Cloud Service Release 17.4.5 E70360-16 December 2017 What s New for Oracle Internet of Things Cloud Service As soon as new and changed features become

More information

Instavc White Paper. Future of Enterprise Communication

Instavc White Paper. Future of Enterprise Communication Future of Enterprise Communication InstaVC is a futuristic Video Collaboration platform for the organizations to achieve client-less and plugin free, real-time communication which enables peer-to-peer

More information

The Frozen Mountain irtc White Paper Series

The Frozen Mountain irtc White Paper Series The Frozen Mountain irtc White Paper Series This white paper is the fourth in a series on Internet Based Real Time Communications (irtc) written by Frozen Mountain Software s CTO Anton Venema. The complete

More information

IMS, NFV and Cloud-based Services BUILDING INTEGRATED CLOUD COMMUNICATION SERVICES

IMS, NFV and Cloud-based Services BUILDING INTEGRATED CLOUD COMMUNICATION SERVICES Daitan White Paper IMS, NFV and Cloud-based Services BUILDING INTEGRATED CLOUD COMMUNICATION SERVICES Highly Reliable Software Development Services http://www.daitangroup.com Daitan Group 2014 IMS, NFV

More information

FIDO AND PAYMENTS AUTHENTICATION. Philip Andreae Vice President Oberthur Technologies

FIDO AND PAYMENTS AUTHENTICATION. Philip Andreae Vice President Oberthur Technologies FIDO AND PAYMENTS AUTHENTICATION Philip Andreae Vice President Oberthur Technologies The Problem The Solution The Alliance Updates Data Breaches 781 data breaches in 2015 170 million records in 2015 (up

More information

for the contact center?

for the contact center? article Is WebRTC compelling enough for the contact center? By Dries Plasman, VP Product Management, Voxbone Voxbone US LLC - San Francisco Office 535 Voxbone Mission US St San 535 Mission Francisco, St

More information

Technologies for Securing the Networked Supply Chain. Alex Deacon Advanced Products and Research Group VeriSign, Inc.

Technologies for Securing the Networked Supply Chain. Alex Deacon Advanced Products and Research Group VeriSign, Inc. Technologies for Securing the Networked Supply Chain Alex Deacon Advanced Products and Research Group VeriSign, Inc. Agenda Introduction Security challenges Security technologies in use today Applying

More information

Mobilink-Network Partial List of Partners

Mobilink-Network Partial List of Partners Introduction MOBILINK-Network will provide its users with unlimited voice and data services while eliminating all monthly fees. Revenues generated from digital mobile Ads shown on the users phone will

More information

RTCWEB Working Group. Media Security: A chat about RTP, SRTP, Security Descriptions, DTLS-SRTP, EKT, the past and the future

RTCWEB Working Group. Media Security: A chat about RTP, SRTP, Security Descriptions, DTLS-SRTP, EKT, the past and the future RTCWEB Working Group Media Security: A chat about RTP, SRTP, Security Descriptions, DTLS-SRTP, EKT, the past and the future Dan Wing dwing@cisco.com IETF83 - March 2012 v2 1 Agenda Scope Upcoming Questions

More information

IBM Tealeaf cxoverstat

IBM Tealeaf cxoverstat IBM Tealeaf cxoverstat Visualize your customer s digital experience for valuable insight Advantages Uncover usability patterns with the ability to drill-down into granular details that cause customer confusion

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

WebRTC.... GWT & in-browser computation. Alberto Mancini - Francesca Tosi -

WebRTC.... GWT & in-browser computation. Alberto Mancini - Francesca Tosi - WebRTC... GWT & in-browser computation Alberto Mancini - alberto@jooink.com Francesca Tosi - francesca@jooink.com WebRTC Plug-in free real-time communication WebRTC is a free, open project that enables

More information

Avaya Mobile Video Release Notes

Avaya Mobile Video Release Notes Release Notes Release 3.2.4 Issue 1.0 Nov 2017 3.2.4 Release Notes Page 1 Contents Purpose... 3 Support... 3 Publication history... 3 General remarks... 3 Software information... 3 Software download...

More information

The office for the anywhere worker!!! Your LCB SOFTPHONE: A powerful new take on the all-in-one for a more immersive experience.

The office for the anywhere worker!!! Your LCB SOFTPHONE: A powerful new take on the all-in-one for a more immersive experience. The office for the anywhere worker!!! Your LCB SOFTPHONE: A powerful new take on the all-in-one for a more immersive experience. LCB SOFTPHONE FOR SALESFORCE Combine real-time communications and tracking

More information

Technology Strategy Technology and Strategy

Technology Strategy Technology and Strategy Technology and Strategy Danger, Inc. Three key questions Who are the most attractive potential partners to design and manufacture devices for Danger? Who amongst the worlds' many mobile network operators,

More information

CHANNEL LAYER. How do you communicate?

CHANNEL LAYER. How do you communicate? CHANNEL LAYER Multi- and omnichannel communication How do you communicate? It s in the channel Layer that the multi- and omnichannel communication is managed. It is also here that the internal routing

More information

WEBRTC WG Meetings. TPAC November 6-7, 2017 Burlingame, CA. Chairs: Stefan Hakansson Bernard Aboba Harald Alvestrand

WEBRTC WG Meetings. TPAC November 6-7, 2017 Burlingame, CA. Chairs: Stefan Hakansson Bernard Aboba Harald Alvestrand WEBRTC WG Meetings TPAC November 6-7, 2017 Burlingame, CA Chairs: Stefan Hakansson Bernard Aboba Harald Alvestrand 1 Welcome to the WebRTC WG Meetings at TPAC! WebRTC-PC has been published as a Candidate

More information

icims Browser & Version Support Policy

icims Browser & Version Support Policy icims Browser & Version Support Policy Last Updated Date: Page 1 Proprietary. Copyright 2018 icims, Inc. All rights reserved. Table of Contents Table of Contents... 2 Browser Support Policy for the icims

More information

CounterPath Bria Stretto Solution. Solution Brief.

CounterPath Bria Stretto Solution. Solution Brief. Solution Brief Introduction Bria Stretto TM is CounterPath s off-the-shelf softphone solution for enterprise customers, to complement the enterprise s existing VoIP service. Bria Stretto combines CounterPath

More information

Beyond UC: Avaya Communicator for Web. Bryan Dingwall, Senior Product Manager

Beyond UC: Avaya Communicator for Web. Bryan Dingwall, Senior Product Manager Beyond UC: Avaya Communicator for Web Bryan Dingwall, Senior Product Manager 1 THE MOVE TO THE CLOUD 35% Growth SaaS MARKET GROWTH $1 out of every $5 is spent on enterprise SaaS software 20% $149 BILLION

More information

Is your mission critical data center ready for an always on world? Nir Oran Lead Enterprise Architect

Is your mission critical data center ready for an always on world? Nir Oran Lead Enterprise Architect Is your mission critical data center ready for an always on world? Nir Oran Lead Enterprise Architect Netflix Media and Entertainment Amazon Retail Apple Pay Financial Services Uber Transportation Market

More information

Adaptive Bit Rate (ABR) Video Detection and Control

Adaptive Bit Rate (ABR) Video Detection and Control OVERVIEW Adaptive Bit Rate (ABR) Video Detection and Control In recent years, Internet traffic has changed dramatically and this has impacted service providers and their ability to manage network traffic.

More information

Performance and Scalability of WebRTC

Performance and Scalability of WebRTC Performance and Scalability of WebRTC ELEC-E7320 Internet Protocols assignment 2 presentation 22 Feb 2017 Group O: Pete Lyly Antti Majakivi Olli-Mikko Ojamies Bhavya Omkarappa Presentation outline Introduction

More information

Moving Forward on Geolocation API

Moving Forward on Geolocation API Open Source Open Possibilities Moving Forward on Geolocation API November 2013 Current Status of Geolocation Working Group Geolocation API is a W3C Recommendation as of Oct. 24, 2013 http://www.w3.org/tr/2013/rec-geolocation-api-20131024/

More information

Trend Micro Guide and solution to help embrace Consumerization and BYOD. James Walker EMEA Product Marketing Manager 26 September 2012

Trend Micro Guide and solution to help embrace Consumerization and BYOD. James Walker EMEA Product Marketing Manager 26 September 2012 Trend Micro Guide and solution to help embrace Consumerization and BYOD James Walker EMEA Product Marketing Manager 26 September 2012 Agenda Consumerization What is it? What should I do? Mobile Security

More information

PKE. Business Introduction to WebRTC. Consulting LLC. Innovate Integrate Transform. Interaction Information Networks

PKE. Business Introduction to WebRTC. Consulting LLC. Innovate Integrate Transform. Interaction Information Networks Innovate Integrate Transform Interaction Information Networks PKE Consulting LLC Business Introduction to WebRTC Session: B0-1 Phil Edholm President and Principal PKE Consulting pedholm@pkeconsulting.com

More information

The Mobile Landscape in France and Europe

The Mobile Landscape in France and Europe The Mobile Landscape in France and Europe E-Marketing Forum - 4 January Blandine Silverman, Director Mobile bsilverman@comscore.com Agenda Mobile Landscape Devices & Platforms From Phones Towards Connected

More information

Business today runs on technology. Modernize Your Datacenter. Challenges facing IT. Modernize Your Datacenter 10/17/ % Enterprise IT

Business today runs on technology. Modernize Your Datacenter. Challenges facing IT. Modernize Your Datacenter 10/17/ % Enterprise IT Business today runs on technology 71% of surveyed internet, technology and social experts predict: In 2016, 82% of server workloads will be running in virtual environments. Total IT services spend: 45%

More information

Nielsen List of Top 10 ios Mobile Apps

Nielsen List of Top 10 ios Mobile Apps Nielsen List of Top 10 ios Mobile Apps Nielsen's list of the most popular 10 mobile apps for ios in 2016 was dominated by just four technology giants: Google, Facebook, Apple and Amazon. The Nielsen organization

More information

Azure DevOps. Randy Pagels Intelligent Cloud Technical Specialist Great Lakes Region

Azure DevOps. Randy Pagels Intelligent Cloud Technical Specialist Great Lakes Region Azure DevOps Randy Pagels Intelligent Cloud Technical Specialist Great Lakes Region What is DevOps? People. Process. Products. Build & Test Deploy DevOps is the union of people, process, and products to

More information

Overview. Premium Data Sheet. DigitalPersona. DigitalPersona s Composite Authentication transforms the way IT

Overview. Premium Data Sheet. DigitalPersona. DigitalPersona s Composite Authentication transforms the way IT DigitalPersona Premium Data Sheet Overview DigitalPersona s Composite Authentication transforms the way IT executives protect the integrity of the digital organization by going beyond traditional two-factor

More information

Transformation Through Innovation

Transformation Through Innovation Transformation Through Innovation A service provider strategy to prosper from digitization People will have 11.6 billion mobile-ready devices and connections by 2020. For service providers to thrive today

More information

QUESTIONS AND CONTACTS

QUESTIONS AND CONTACTS Contact: Jake Losinski, Management Analyst P.O. Box 2315 480 East Avenue North Ketchum, ID 83340 July 27, 2018 Telephone: (208) 727-5081 jlosinski@ketchumidaho.org SUBMITTAL DEADLINE The City of Ketchum,

More information

RtpTransceivers. at TPAC 2015

RtpTransceivers. at TPAC 2015 RtpTransceivers at TPAC 2015 What s been added A 1:1 mapping between an RtpTransceiver, m-line, RtpSender, and RtpReceiver PeerConnection.addTransceiver( video, {send: bool, receive: bool}) PeerConnection.addTransceiver(track)

More information

Paper. Delivering Strong Security in a Hyperconverged Data Center Environment

Paper. Delivering Strong Security in a Hyperconverged Data Center Environment Paper Delivering Strong Security in a Hyperconverged Data Center Environment Introduction A new trend is emerging in data center technology that could dramatically change the way enterprises manage and

More information

Supported Devices, OS, and Browsers

Supported Devices, OS, and Browsers Kony Visualizer Supported Devices, OS, and Browsers Release V8 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated

More information

Carrier Reliability & Management: Overview of Plivo s Carrier Network

Carrier Reliability & Management: Overview of Plivo s Carrier Network Carrier Reliability & Management: Overview of Plivo s Carrier Network Build your company on direct connections with access to 1600+ carrier networks WWW.PLIVO.COM/CARRIERS Global Coverage with Latency-free

More information

RESTCOMMONE. WebRTC SDKs for Web, IOS, And Android Copyright All Rights Reserved Page 2

RESTCOMMONE. WebRTC SDKs for Web, IOS, And Android Copyright All Rights Reserved Page 2 RESTCOMMONE WebRTC SDKs for Web, IOS, And Android Copyright All Rights Reserved Page 2 RestcommONE Core Components RestcommOne Connect Visual Designer Web Browser WebRTC SDK s Mobile WebRTC SDK s RESTful

More information

API s in a hybrid world. Date 28 September 2017

API s in a hybrid world. Date 28 September 2017 API s in a hybrid world Date 28 September 2017 So, What is this API Economy thing? A mutually beneficial ecosystem of suppliers & consumers of APIs. Suppliers use APIs to securely provide specific types

More information

RELEASE NOTES. Sippo WebRTC Application Controller. Version December Last updated: September 2017

RELEASE NOTES. Sippo WebRTC Application Controller. Version December Last updated: September 2017 RELEASE NOTES Sippo WebRTC Application Controller Last updated: September 2017 Version 3.1 - December 2017 It is been over a year, but Sippo is now a complete matured RTC framework. Not only is able to

More information

Scalable Protocol Design. Supporting Millions of Simultaneously-connected Devices

Scalable Protocol Design. Supporting Millions of Simultaneously-connected Devices Scalable Protocol Design Supporting Millions of Simultaneously-connected Devices OpenDOF Project Background 2 Open-source project, royalty-free Founded by Panasonic in 2015 A complete IoT framework over

More information

SIP AND MSRP OVER WEBSOCKET

SIP AND MSRP OVER WEBSOCKET SIP AND MSRP OVER WEBSOCKET 1 SIP and MSRP over WebSocket in Kamailio SIP and MSRP over WebSocket in Kamailio Peter Dunkley, Technical Director, Crocodile RCS Ltd Email: Twitter: peter.dunkley@crocodile-rcs.com

More information

SDP Offer/Answer Details: Resource & State Management. Adam Roach Monday, November 11 th, Shenzen, China Sunday, November 10 th, Kirkland, WA, USA

SDP Offer/Answer Details: Resource & State Management. Adam Roach Monday, November 11 th, Shenzen, China Sunday, November 10 th, Kirkland, WA, USA SDP Offer/Answer Details: Resource & State Management Adam Roach Monday, November 11 th, Shenzen, China Sunday, November 10 th, Kirkland, WA, USA What are we talking about? When do resources get reserved?

More information