SlideShare uma empresa Scribd logo
1 de 75
Baixar para ler offline
HOW DID I CREATE A HTML5
VIDEO STREAMING PLAYER
and what I’ve learned
KKBOXVideo
陳建辰 jessechen
AGENDA
• Some beforehand knowhow
• Why developing this player
• HTML5 extensions
• Introduce our player
• Future of this player
SOME BEFOREHAND
KNOWHOW
analog-to-
digital adapter
digital raw data
PROCESS OF PLAYINGVIDEO
1. Make it digital
analog signal
H.264 / H.265
Encode
PROCESS OF PLAYINGVIDEO
2. Encode video file
Raw data .mp4 / .ts file
Easier for storage and transference
PROCESS OF PLAYINGVIDEO
3. Play it !
.mp4 / .ts file
a/v sync
codec decode
and
display
extract content
from container
WAIT,WHERE IS PLAYER?
WHAT PLAYER DOES
.mp4 / .ts file
a/v sync
codec decode
and
display
HERE
extract content
from container
THEY ARE ALREADY HANDLED
.mp4 / .ts file
HTML5
a/v sync
codec decode
and
display
extract content
from container
SO WHY DEVELOPING
THIS PLAYER?
OUR PLAYER FOCUS ON (1)
extract content
and a/v info
from container
.mp4 / .ts file
get files
in smart way
a/v sync
codec decode
and
display
HOW PLAYER GET FILE ?
server holds
.mp4
content
VINTAGE WAY
Player get it
and play
single file
slow and inflexible
server holds
.mp4
content
EFFICIENT WAY
Player get part
of video and
start play
progressive download
Keep requesting
rest part of
video during
playback
still inflexible
prepare
different qualities
of content
on server
MODERN WAY
adaptive streaming
Player plays
best quality
depends on
network status
Keep requesting
rest part of
video during
playback
HOW ABOUT WE SPLIT FILE
• split file into segments, described by manifest
• manifest tells
- available bitrates
- how file is fragmented
- other information, e.g encryption
+
+
knows how to
get fragments
ADAPTIVE STREAMING
IN SHORT
fragments
manifest
file
ADAPTIVE STREAMINGTYPES
SS
Smooth Streaming
HLS
HTTP Live Streaming
HDS
INTRODUCE DASH
Dynamic Adaptive Streaming through HTTP
PROS OF DASH
• open source, with industry standard, which means
more universal usage
• support 2 types of containers, the MPEG-4 file
format or the MPEG-2Transport Stream
GET FILES IN SMART WAY
• manifest parser - able to read different type of
manifest
• adaptive bitrate - able to decide which quality to
load
OUR PLAYER FOCUS ON (2)
.mp4 / .ts file
get files
in smart way
protection
logic
extract content
from container
a/v sync
codec decode
and
display
DRM ?

(DIGITAL RIGHTS MANAGEMENT)
Content provider /
DRM provider likes it
For end user
CLIENT SIDE PROTECTION
• Client get a license instead of a key from DRM
service
• A blackbox or sandbox get the key by processing
license
• That blackbox / sandbox decrypt content and
directly output it to display
H.264 / H.265
Encode
HOWTO PROTECT CONTENT
Raw data .mp4 / .ts file
DRM
implemented
here
PROTECTION LOGIC
• give what DRM server needs and retrieve license
• negotiate with browser in order to implement
protection on client side
• deal with different browsers
knows how to
NOW, LET’S STARTTALK
ABOUT BROWSER
<video>, MSE and EME
HTML5VIDEO ELEMENT
• <video></video> support progressive download
• For adaptive streaming, MSE is required
extract content
from container
WHAT ROLE MSE PLAYS
.mp4 / .ts file
MSE handles
a/v sync
codec decode
and
display
MSE handles
INTRODUCE MSE
• Given different bitrate segments and it helps

html5 video element to play smoothly
• SourceBuffer provide video and audio buffer
condition
Media Source Extension
EME
IS ABOUT PROTECTION
HOW BROWSER ADOPT DRM
• For browser, that blackbox called CDM 

(Content Decrypt Module)
• Each browser support different DRM
context - “a blackbox or sandbox get the key by
processing license”
DRM ON BROWSER
Widevine FairplayPlayready Primetime
INTRODUCE EME
• Even though browser support its own DRM, 

W3C defines a EME spec, in order to expose
same api for client
• prefixed api was implemented on earlier version
of chrome(smart tv)
Encrypted Media Extension
EME
CDM
provide context
from encrypted
content
get ‘challenge’
DRM
license
server
request with challenge
get license
provide license
for CDM to
decrypt content
player
EME
CDM
PROTECTION LOGIC FLOW
WHAT ROLE EME PLAYS
extract content
from container
.mp4 / .ts file
a/v sync
codec decode
and
display
decrypt content
in blackbox
INTRODUCE OUR PLAYER
OUR GOAL
• play not single file but sequence of segments, 

with different bitrate, a.k.a adaptive streaming
• play protected stuffs, for content providers’ goods
a player able to
影片
ya pi
yapi.js
DEVELOP PROCESS
make it work stable refactor
MAKE IT WORK FIRST
only 2 files in the very beginning
BE STABLE
• well structured
• modularized
• dependency management (dijon.js)
• consistent code style
MODULARIZED
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
UTILS
• Capabilities
• Debug
• ErrorHandler
• EventBus
• IntervalBus
• UrlModel
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
EXTENSION
• MediaSourceExtension
• SourceBufferExtension
• VideoModel
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
MANIFEST
• ManifestLoader
• ManifestExtension
• ManifestModel
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
STREAM
• StreamCtrl
• BufferCtrl
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
FRAGMENT
• FragmentCtrl
• FragmentLoader
• SegmentTemplate
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
ADAPTIVE
• AbrCtrl
• BandwidthRecorder
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
PROTECTION
• ProtectionCtrl
• ProtectionModel
• ProtectionRequest
• Playready / Widevine
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
STATS
• MetricsCtrl
• Metrics
• StatsCtrl
• BitrateHistory
api
adaptive
extension
fragment
manifest
protection
stats
stream
utils
REFACTOR
• review flow
• redefine api
APPLICATION FLOW
REDEFINE API
• use jsdoc to generate spec document
• define api, event and vo(value object)
• spec
• result
DEMO
Sample player
HOWTO MANAGE
THOSE MODULES
DEPENDENCY INJECTION
• not necessary in the beginning, but became very
important after it went much more complex
• use dijon.js as di framework
INTRODUCE DIJON.JS
• a system holds all dependencies, after mapping
modules to it
• an object get dependencies after injection
DEFINE DEPENDENCIES
// A dep
function A() {}
// B requires A
function B() {
this.a = undefined; // how dijon knows where to inject
}
// instantiate dijon
var system = new dijon.System();
3 KINDS OF MAPPING
var a = new A();
system.mapValue(‘aValue’, a);
// system.getObject(‘a’) would return an ‘a’ instance
system.mapSingleton(aSingleton,A);
// system.getObject(‘aSingleton’) would return a singleton a
system.mapClass(bClass, B);
// system.getObject(‘bClass’) would return a new inited B
OUTLET MAPPING
// map outlet to make dependency work
// @param sourceKey {String} - the key mapped to system would be
injected
// @param targetKey {String|'global'} - the key outlet is assigned to
// @param outletName {String|sourceKey} - the name of property used as
an outlet
system.mapOutlet('aSingleton', 'bClass',‘a');
var b = system.getObject(‘bClass’);
// b.a is aSingleton
DIRECTLY INJECTION
var b = new B();
system.injectInto(b);
// b WOULDN’T have dependency singleton A
// b/c we only mapOutlet to key bClass of system
// map outlet to global
system.mapOutlet(‘aSingleton’,‘global’,‘a’);
system.injectInto(b); // this would work
AUTO MAP OUTLET
function B(){
this.aSingleton = undefined;
this.c = undefined;
}
function C(){}
// auto mapped outlet would assign to ‘global’
// and outlet name is the same as mapped key (before mapping)
system.autoMapOutlets = true;
system.mapClass(‘bClass’, B); // map again b/c B is changed
system.mapClass(‘c’, C);
// system.getObject(‘b’) would have c dep
COMMUNICATE IN BETWEEN
Now B has dependencies of A and C
How would you do in this scenario:
A is doing something
when it’s done, invoke a method of B
–this is a very common situation in player
MAP HANDLER AND NOTIFY
function A() {
this.say = function() {
system.notify(‘aDoneSaying’);
};
}
function B() {
this.a = undefined;
this.afterAsays = function(){
// do something
};
}
system.mapSingleton(‘a’,A); system.mapSingleton(‘b’, B);
system.mapHandler(‘aDoneSaying’, ’b’,‘afterAsays’);
// system.getObject(‘b’).a.say() would invoke b.afterAsays
NOTIFYING CLASS
system.mapSingleton(‘a’,A);
system.mapClass(‘b’, B); // map class here
var b1 = system.getObject(‘b’);
// b1.say() would invoke a newly instantiated b.afterAsays
// instead of b1.afterAsays
system.mapValue(‘b1’, b1);
system.unmapHandler(‘aDoneSaying’,‘b’,‘afterAsays’)
system.mapHandler(‘aDoneSaying’,‘b1’,‘afterAsays’)
// b1.say() would invoke b1.afterAsays
function E() {
this.a = undefined;
this.setup = function () {};
}
var e = new E();
system.injectInto(e);
// e.setup invoked
CONVENTION
setup method of module would be invoked
after getObject or injectInto
INJECT SYSTEM ITSELF
system.mapValue('system', system);
function D() {
this.system = undefined;
}
system.mapSingleton('d', D);
// system.getObject(‘d’) has system as dependency
function A() {}; function B() {}
function Dep() {
return {
system: undefined,
setup: function () {
this.system.autoMapOutlets = true;
// map dep here
this.system.mapSingleton('a',A);
this.system.mapClass('b', B);
}
};
}
function App() {
var b;
var system = new dijon.System();
system.mapValue('system', system);
system.mapOutlet('system');
var dep = new Dep();
system.injectInto(dep); // inject system to dep and invoke setup function, which map all deps
return {
system: undefined,
a: undefined,
setup: function () {
b = system.getObject('b');
},
init: function () {
system.injectInto(this); // after init, app.a exists
}
};
}
// after new App().init(), app get all dep setup in Dep
SUMMARY OF DIJONJS
• 3kb
• very little convention
• focus on di and notify / handler
BUILD PROJECT
• list all source files in index.html of testing page
• grunt as task manager
• concat and minify scripts with grunt-usemin
• export to dist/player.min.js
ONE LAST NOTICE
• ui should be totally separated
• ui <-> player -> videoElement
• ui order player by api, respond to player behavior
by event
player
videoElement
ui
FUTURE OFYAPI.JS
• firefox / safari drm support
• live
• ads
• smart tv / chromecast / nexus player
THANKYOU
questions ?

Mais conteúdo relacionado

Mais procurados

Deploy, Scale and Manage your Application with AWS Elastic Beanstalk
Deploy, Scale and Manage your Application with AWS Elastic BeanstalkDeploy, Scale and Manage your Application with AWS Elastic Beanstalk
Deploy, Scale and Manage your Application with AWS Elastic BeanstalkAmazon Web Services
 
Exam Overview 70-533 Implementing Azure Infrastructure Solutions
Exam Overview 70-533 Implementing Azure Infrastructure SolutionsExam Overview 70-533 Implementing Azure Infrastructure Solutions
Exam Overview 70-533 Implementing Azure Infrastructure SolutionsGustavo Zimmermann (MVP)
 
CIRCUIT 2015 - Monitoring AEM
CIRCUIT 2015 - Monitoring AEMCIRCUIT 2015 - Monitoring AEM
CIRCUIT 2015 - Monitoring AEMICF CIRCUIT
 
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloudMigrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloudJohn Donaldson
 
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...Amazon Web Services
 
Plug in development
Plug in developmentPlug in development
Plug in developmentLucky Ali
 
Vmware vSphere Api Best Practices
Vmware vSphere Api Best PracticesVmware vSphere Api Best Practices
Vmware vSphere Api Best PracticesPablo Roesch
 
Exploring VMware APIs by Preetham Gopalaswamy
Exploring VMware APIs by Preetham GopalaswamyExploring VMware APIs by Preetham Gopalaswamy
Exploring VMware APIs by Preetham GopalaswamyAlan Renouf
 
Java and windows azure cloud service
Java and windows azure cloud serviceJava and windows azure cloud service
Java and windows azure cloud serviceJeffray Huang
 
Learn you some Ansible for great good!
Learn you some Ansible for great good!Learn you some Ansible for great good!
Learn you some Ansible for great good!David Lapsley
 
Don't touch that server
Don't touch that serverDon't touch that server
Don't touch that servercrdant
 
Docker for developers z java
Docker for developers z javaDocker for developers z java
Docker for developers z javaandrzejsydor
 
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)Roman Kharkovski
 
Adobe AEM Maintenance - Customer Care Office Hours
Adobe AEM Maintenance - Customer Care Office HoursAdobe AEM Maintenance - Customer Care Office Hours
Adobe AEM Maintenance - Customer Care Office HoursAndrew Khoury
 
Optimising Productivity with AWS Developer Tools
Optimising Productivity with AWS Developer ToolsOptimising Productivity with AWS Developer Tools
Optimising Productivity with AWS Developer ToolsAmazon Web Services
 

Mais procurados (20)

Deploy, Scale and Manage your Application with AWS Elastic Beanstalk
Deploy, Scale and Manage your Application with AWS Elastic BeanstalkDeploy, Scale and Manage your Application with AWS Elastic Beanstalk
Deploy, Scale and Manage your Application with AWS Elastic Beanstalk
 
Exam Overview 70-533 Implementing Azure Infrastructure Solutions
Exam Overview 70-533 Implementing Azure Infrastructure SolutionsExam Overview 70-533 Implementing Azure Infrastructure Solutions
Exam Overview 70-533 Implementing Azure Infrastructure Solutions
 
CIRCUIT 2015 - Monitoring AEM
CIRCUIT 2015 - Monitoring AEMCIRCUIT 2015 - Monitoring AEM
CIRCUIT 2015 - Monitoring AEM
 
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloudMigrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
Migrating from Pivotal tc Server on-prem to IBM Liberty in the cloud
 
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
AWS Elastic Beanstalk: Running Multi-Container Docker Applications - DevDay L...
 
Plug in development
Plug in developmentPlug in development
Plug in development
 
Vmware vSphere Api Best Practices
Vmware vSphere Api Best PracticesVmware vSphere Api Best Practices
Vmware vSphere Api Best Practices
 
Exploring VMware APIs by Preetham Gopalaswamy
Exploring VMware APIs by Preetham GopalaswamyExploring VMware APIs by Preetham Gopalaswamy
Exploring VMware APIs by Preetham Gopalaswamy
 
2014 cf summit_clustering
2014 cf summit_clustering2014 cf summit_clustering
2014 cf summit_clustering
 
Full slidescr16
Full slidescr16Full slidescr16
Full slidescr16
 
Java and windows azure cloud service
Java and windows azure cloud serviceJava and windows azure cloud service
Java and windows azure cloud service
 
Learn you some Ansible for great good!
Learn you some Ansible for great good!Learn you some Ansible for great good!
Learn you some Ansible for great good!
 
S903 palla
S903 pallaS903 palla
S903 palla
 
Don't touch that server
Don't touch that serverDon't touch that server
Don't touch that server
 
Docker for developers z java
Docker for developers z javaDocker for developers z java
Docker for developers z java
 
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
WebSphere App Server vs JBoss vs WebLogic vs Tomcat (InterConnect 2016)
 
Adobe AEM Maintenance - Customer Care Office Hours
Adobe AEM Maintenance - Customer Care Office HoursAdobe AEM Maintenance - Customer Care Office Hours
Adobe AEM Maintenance - Customer Care Office Hours
 
Google App Engine
Google App EngineGoogle App Engine
Google App Engine
 
Optimising Productivity with AWS Developer Tools
Optimising Productivity with AWS Developer ToolsOptimising Productivity with AWS Developer Tools
Optimising Productivity with AWS Developer Tools
 
Aem offline content
Aem offline contentAem offline content
Aem offline content
 

Destaque

Etude Rovi sur le comportement des consommateurs en matière de streaming en F...
Etude Rovi sur le comportement des consommateurs en matière de streaming en F...Etude Rovi sur le comportement des consommateurs en matière de streaming en F...
Etude Rovi sur le comportement des consommateurs en matière de streaming en F...Cedric Buisson
 
James Farrelly - Making Streaming Work [Darker Music Talks July 2015]
James Farrelly - Making Streaming Work [Darker Music Talks July 2015]James Farrelly - Making Streaming Work [Darker Music Talks July 2015]
James Farrelly - Making Streaming Work [Darker Music Talks July 2015]Tommy Darker
 
MoonosCNC Inc Introduce
MoonosCNC Inc Introduce MoonosCNC Inc Introduce
MoonosCNC Inc Introduce moonosCNC Inc.
 
Reed Hastings: Padre De Netflix
Reed Hastings: Padre De NetflixReed Hastings: Padre De Netflix
Reed Hastings: Padre De Netflixkaylajosh
 
The Power of Live Streaming: How To Build An Engaged Audience & Grow Your Brand
The Power of Live Streaming: How To Build An Engaged Audience & Grow Your BrandThe Power of Live Streaming: How To Build An Engaged Audience & Grow Your Brand
The Power of Live Streaming: How To Build An Engaged Audience & Grow Your BrandAlexa Carlin
 
Sony bravia Product Detail.
Sony bravia Product Detail.Sony bravia Product Detail.
Sony bravia Product Detail.sunny_Nexus
 
Streaming Api Design with Akka, Scala and Spray
Streaming Api Design with Akka, Scala and SprayStreaming Api Design with Akka, Scala and Spray
Streaming Api Design with Akka, Scala and SprayNatalino Busa
 
Introduction to Amazon Kinesis Firehose - AWS August Webinar Series
Introduction to Amazon Kinesis Firehose - AWS August Webinar SeriesIntroduction to Amazon Kinesis Firehose - AWS August Webinar Series
Introduction to Amazon Kinesis Firehose - AWS August Webinar SeriesAmazon Web Services
 
Spotify presentation
Spotify presentationSpotify presentation
Spotify presentationwmorris
 
1인미디어 전문기업 '미디어자몽' 회사소개서
1인미디어 전문기업 '미디어자몽' 회사소개서1인미디어 전문기업 '미디어자몽' 회사소개서
1인미디어 전문기업 '미디어자몽' 회사소개서Kunwon Kim
 
Comas 회사소개서
Comas 회사소개서Comas 회사소개서
Comas 회사소개서himcap
 
MacroPlan Company Profile 2017
MacroPlan Company Profile 2017MacroPlan Company Profile 2017
MacroPlan Company Profile 2017Amy Williams
 

Destaque (16)

Etude Rovi sur le comportement des consommateurs en matière de streaming en F...
Etude Rovi sur le comportement des consommateurs en matière de streaming en F...Etude Rovi sur le comportement des consommateurs en matière de streaming en F...
Etude Rovi sur le comportement des consommateurs en matière de streaming en F...
 
James Farrelly - Making Streaming Work [Darker Music Talks July 2015]
James Farrelly - Making Streaming Work [Darker Music Talks July 2015]James Farrelly - Making Streaming Work [Darker Music Talks July 2015]
James Farrelly - Making Streaming Work [Darker Music Talks July 2015]
 
MoonosCNC Inc Introduce
MoonosCNC Inc Introduce MoonosCNC Inc Introduce
MoonosCNC Inc Introduce
 
Reed Hastings: Padre De Netflix
Reed Hastings: Padre De NetflixReed Hastings: Padre De Netflix
Reed Hastings: Padre De Netflix
 
Music streaming service mkt 618
Music streaming service   mkt 618Music streaming service   mkt 618
Music streaming service mkt 618
 
The Power of Live Streaming: How To Build An Engaged Audience & Grow Your Brand
The Power of Live Streaming: How To Build An Engaged Audience & Grow Your BrandThe Power of Live Streaming: How To Build An Engaged Audience & Grow Your Brand
The Power of Live Streaming: How To Build An Engaged Audience & Grow Your Brand
 
Sony bravia Product Detail.
Sony bravia Product Detail.Sony bravia Product Detail.
Sony bravia Product Detail.
 
Streaming Api Design with Akka, Scala and Spray
Streaming Api Design with Akka, Scala and SprayStreaming Api Design with Akka, Scala and Spray
Streaming Api Design with Akka, Scala and Spray
 
Introduction to Amazon Kinesis Firehose - AWS August Webinar Series
Introduction to Amazon Kinesis Firehose - AWS August Webinar SeriesIntroduction to Amazon Kinesis Firehose - AWS August Webinar Series
Introduction to Amazon Kinesis Firehose - AWS August Webinar Series
 
Spotify presentation
Spotify presentationSpotify presentation
Spotify presentation
 
1인미디어 전문기업 '미디어자몽' 회사소개서
1인미디어 전문기업 '미디어자몽' 회사소개서1인미디어 전문기업 '미디어자몽' 회사소개서
1인미디어 전문기업 '미디어자몽' 회사소개서
 
Comas 회사소개서
Comas 회사소개서Comas 회사소개서
Comas 회사소개서
 
Google- company profile
Google- company profileGoogle- company profile
Google- company profile
 
MacroPlan Company Profile 2017
MacroPlan Company Profile 2017MacroPlan Company Profile 2017
MacroPlan Company Profile 2017
 
Netflix Case Study
Netflix Case StudyNetflix Case Study
Netflix Case Study
 
Company Overview Presentation
Company Overview PresentationCompany Overview Presentation
Company Overview Presentation
 

Semelhante a Introduce native html5 streaming player

Craft 2019 - “The Upside Down” Of The Web - Video technologies
Craft 2019 - “The Upside Down” Of The Web - Video technologiesCraft 2019 - “The Upside Down” Of The Web - Video technologies
Craft 2019 - “The Upside Down” Of The Web - Video technologiesMáté Nádasdi
 
20171122 aws usergrp_coretech-spn-cicd-aws-v01
20171122 aws usergrp_coretech-spn-cicd-aws-v0120171122 aws usergrp_coretech-spn-cicd-aws-v01
20171122 aws usergrp_coretech-spn-cicd-aws-v01Scott Miao
 
Windows Server AppFabric Caching - What it is & when you should use it?
Windows Server AppFabric Caching - What it is & when you should use it?Windows Server AppFabric Caching - What it is & when you should use it?
Windows Server AppFabric Caching - What it is & when you should use it?Robert MacLean
 
Docker presentasjon java bin
Docker presentasjon java binDocker presentasjon java bin
Docker presentasjon java binOlve Hansen
 
Microsoft Windows Server AppFabric
Microsoft Windows Server AppFabricMicrosoft Windows Server AppFabric
Microsoft Windows Server AppFabricMark Ginnebaugh
 
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018Mandi Walls
 
HTML5 Programming
HTML5 ProgrammingHTML5 Programming
HTML5 Programminghotrannam
 
Getting started with CFEngine - Webinar
Getting started with CFEngine - WebinarGetting started with CFEngine - Webinar
Getting started with CFEngine - WebinarCFEngine
 
APIs, now and in the future
APIs, now and in the futureAPIs, now and in the future
APIs, now and in the futureChris Mills
 
Download and restrict video files in android app
Download and restrict video files in android appDownload and restrict video files in android app
Download and restrict video files in android appKaty Slemon
 
Getting Started With CFEngine - Updated Version
Getting Started With CFEngine - Updated VersionGetting Started With CFEngine - Updated Version
Getting Started With CFEngine - Updated VersionCFEngine
 
Creating Flash Content for Multiple Screens
Creating Flash Content for Multiple ScreensCreating Flash Content for Multiple Screens
Creating Flash Content for Multiple Screenspaultrani
 
Platform - Technical architecture
Platform - Technical architecturePlatform - Technical architecture
Platform - Technical architectureDavid Rundle
 
Developing for Leap Motion
Developing for Leap MotionDeveloping for Leap Motion
Developing for Leap MotionIris Classon
 
(STG205) Secure Content Delivery Using Amazon CloudFront
(STG205) Secure Content Delivery Using Amazon CloudFront(STG205) Secure Content Delivery Using Amazon CloudFront
(STG205) Secure Content Delivery Using Amazon CloudFrontAmazon Web Services
 
AWS re:Invent 2016: Service Integration Delivery and Automation Using Amazon ...
AWS re:Invent 2016: Service Integration Delivery and Automation Using Amazon ...AWS re:Invent 2016: Service Integration Delivery and Automation Using Amazon ...
AWS re:Invent 2016: Service Integration Delivery and Automation Using Amazon ...Amazon Web Services
 
from ai.backend import python @ pycontw2018
from ai.backend import python @ pycontw2018from ai.backend import python @ pycontw2018
from ai.backend import python @ pycontw2018Chun-Yu Tseng
 

Semelhante a Introduce native html5 streaming player (20)

Craft 2019 - “The Upside Down” Of The Web - Video technologies
Craft 2019 - “The Upside Down” Of The Web - Video technologiesCraft 2019 - “The Upside Down” Of The Web - Video technologies
Craft 2019 - “The Upside Down” Of The Web - Video technologies
 
20171122 aws usergrp_coretech-spn-cicd-aws-v01
20171122 aws usergrp_coretech-spn-cicd-aws-v0120171122 aws usergrp_coretech-spn-cicd-aws-v01
20171122 aws usergrp_coretech-spn-cicd-aws-v01
 
Windows Server AppFabric Caching - What it is & when you should use it?
Windows Server AppFabric Caching - What it is & when you should use it?Windows Server AppFabric Caching - What it is & when you should use it?
Windows Server AppFabric Caching - What it is & when you should use it?
 
Docker presentasjon java bin
Docker presentasjon java binDocker presentasjon java bin
Docker presentasjon java bin
 
Web Apps
Web AppsWeb Apps
Web Apps
 
Microsoft Windows Server AppFabric
Microsoft Windows Server AppFabricMicrosoft Windows Server AppFabric
Microsoft Windows Server AppFabric
 
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
Habitat talk at CodeMonsters Sofia, Bulgaria Nov 27 2018
 
ITB2017 - Keynote
ITB2017 - KeynoteITB2017 - Keynote
ITB2017 - Keynote
 
HTML5 Programming
HTML5 ProgrammingHTML5 Programming
HTML5 Programming
 
Getting started with CFEngine - Webinar
Getting started with CFEngine - WebinarGetting started with CFEngine - Webinar
Getting started with CFEngine - Webinar
 
APIs, now and in the future
APIs, now and in the futureAPIs, now and in the future
APIs, now and in the future
 
HTML 5
HTML 5HTML 5
HTML 5
 
Download and restrict video files in android app
Download and restrict video files in android appDownload and restrict video files in android app
Download and restrict video files in android app
 
Getting Started With CFEngine - Updated Version
Getting Started With CFEngine - Updated VersionGetting Started With CFEngine - Updated Version
Getting Started With CFEngine - Updated Version
 
Creating Flash Content for Multiple Screens
Creating Flash Content for Multiple ScreensCreating Flash Content for Multiple Screens
Creating Flash Content for Multiple Screens
 
Platform - Technical architecture
Platform - Technical architecturePlatform - Technical architecture
Platform - Technical architecture
 
Developing for Leap Motion
Developing for Leap MotionDeveloping for Leap Motion
Developing for Leap Motion
 
(STG205) Secure Content Delivery Using Amazon CloudFront
(STG205) Secure Content Delivery Using Amazon CloudFront(STG205) Secure Content Delivery Using Amazon CloudFront
(STG205) Secure Content Delivery Using Amazon CloudFront
 
AWS re:Invent 2016: Service Integration Delivery and Automation Using Amazon ...
AWS re:Invent 2016: Service Integration Delivery and Automation Using Amazon ...AWS re:Invent 2016: Service Integration Delivery and Automation Using Amazon ...
AWS re:Invent 2016: Service Integration Delivery and Automation Using Amazon ...
 
from ai.backend import python @ pycontw2018
from ai.backend import python @ pycontw2018from ai.backend import python @ pycontw2018
from ai.backend import python @ pycontw2018
 

Último

HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 

Último (20)

HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 

Introduce native html5 streaming player