SlideShare uma empresa Scribd logo
1 de 38
Baixar para ler offline
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Stream Video, Analyze It, and Share It
in Real Time
Adi Krishnan
Head of Kinesis Video
Amazon Web Services
A N T 3 5 7
Girish Sood
Sr. Product Manager
Amazon Web Services
Vijay Joshi
Software Engineer
Amazon Web Services
Mitchell Loeppky
Software Engineer
Amazon Web Services
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Session Abstract
Video is ‘big data’. Image sensors—in our smartphones, smart home devices, traffic
cameras—are getting internet-connected. Massive streams of video data are generated,
but currently not mined for real-time insights to drive businesses forward. In this
workshop, learn to capture, process, and analyze video streams. Build and configure
your camera device’s media pipeline to start streaming video into the AWS Cloud using
Amazon Kinesis Video Streams. Next, build and deploy your own machine learning (ML)
model in Amazon SageMaker to generate inferences about objects or activities in your
video stream. Finally, build a browser-based web player to view the video in Live and On-
Demand modes, including the analyzed video stream. In this workshop, you use Amazon
Kinesis Video Streams, Amazon SageMaker, Amazon Rekognition Video, and Amazon
Elastic Container Service (Amazon ECS).
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Workshop objectives
• Work through the video ingestion data pipeline
• Focus on capturing, playback, and ML-driven analytics of video
• Capture live video from your device and stream to AWS
• Playback video using HTTP Live Streaming (HLS) capability
• Analyze video using Amazon SageMaker
• Demonstrate how to use related services to solve typical problems
and leave with a working end to end demonstration
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Target audience
• Architects, software developers / engineers
• Interested in building video oriented workflows from devices and
integrating with ML-services
• Level 300 – Working knowledge of core AWS services
• Sample code will be provided
• A desire to learn
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
What prior knowledge do I need?
• Working knowledge of some AWS foundational technologies:-
• AWS Identify and Access Management (IAM)
• AWS AWS CloudFormation
• Amazon CloudWatch
• Amazon ECS
• Your laptop that runs Windows, Mac, or Ubuntu Linux
• Note ML Services will be used and the model shared, not an in-depth
ML session however
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Workshop set-up steps
• Ensure you have a valid AWS account with appropriate access
• Ready access to your AK/ Secret AK (to help with SDK installs)
• Your laptop with Windows, MacOS, or Ubuntu Linux
• Download the ‘step-by-step’ instruction guides for the 3 modules from
the following links:
• Module 1: Capture live video (Producer): https://s3-us-west-2.amazonaws.com/kvsit-
beta-us-west-2/reinvent/producer.pdf
• Module 2: View live video (HLS Playback): https://s3-us-west-2.amazonaws.com/kvsit-
beta-us-west-2/reinvent/hls.pdf
• Module 3: Real-time video analytics with Amazon SageMaker (KIT): https://s3-us-west-
2.amazonaws.com/kvsit-beta-us-west-2/reinvent/kit.pdf
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Video is critical to many applications
Smart home Security
monitoring
Smart city
Industrial automation Computer vision
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Building a video system is complex
• Cumbersome to rewrite code for various devices and development
environments
• Difficult to “elastically” scale to millions of devices
• Requires reliable support for cadence, latency, and jitter on streams
• Requires secure streaming and storage by default
• Need easy-to-use APIs to retrieve, replay, and process video at any scale
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Stream video from millions of devices
Easily build vision-enabled apps
Playback in live or on-demand mode
Durable, time-indexed storage
Secure and Fully managed
Amazon Kinesis video streams
Stream video in real-time for playback, storage, and analytics
Kinesis Video
Streams
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Amazon Kinesis video streams concept
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Module objectives
• Learn about ways to produce media into KVS with the producer SDK
• Discover basics of Gstreamer-based media pipeline construction
• Capture and stream video feed from your laptop / USB cam
• View video on the Amazon Kinesis Video Streams management console
• (Optional) Perform basic configuration changes such as FPS and/ resolution
changes
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Kinesis Video Streams ingestion process
• Stream directly from (supported)
device
• Stream using a proxy/ gateway
that connects with device on the
same
• Both approaches use the KVS
producer SDK assets
Proxied Video
Stream
(Optional)
Customer
Producer
Producer SDK writes directly to
the video stream
RTSP Stream
Read by proxy and
send to stream
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Amazon Confidential
Kinesis Video Streams producer SDK
Easily connect and stream from camera sources
Producer SDK offers … … that enables developers to
• Flexible SDK for integration with on-device
hardware media pipelines
• Out-of-the-box integration with AWS auth
mechanism: SigV4 / AWS IoT certs
• Handles streaming Put API to stream
continuously in a reliable manner
• Add metadata to video fragments applied by
the device directly
• Build custom integrations with diverse
camera and device types
• Secure authN and authZ to connect devices
w/ image sensors to AWS
• Stream video data based on the preferred
transmission scenario
• Annotated video fragments enable cloud-
based analytics and advanced indexing
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Kinesis Video Streams producer SDK
Easily connect and stream from camera sources
Platform independent layer (C)
OO wrapper layer (C++ and Java)
Android Win Linux MacOS Raspian
For app devs to install on target OS to build
producer applications
For camera-level integrators who want a high-
performance integration model to build their
camera platforms
Docker image
Docker images on target OSes for easy
getting started experience
Gstreamer
plugin
Gstreamer
plugin
Gstreamer
plugin
Gstreamer
plugin
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Module activities
• MacOS: Run pre-built binary of the producer SDK and start streaming from
built-in webcam
• Windows: Run pre-built binary of the producer SDK and start streaming from
built-in webcam. If webcam is inaccessible; request USB cam.
• Ubuntu: Run Gstreamer plug-in as a Docker container (for Windows/ Mac). If
internal webcam is inaccessible; request USB cam.
• Playback on KVS management console to view streaming content
• Change FPS/ Resolution options and see changes in playback –
Note: hardware media pipelines are finicky – so your mileage may vary.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Gstreamer: Standard environment to construct media pipelines on the devices
• Popular media framework used in cameras / video sources for media pipelines
by combining modular plugins
• KVS GStreamer plugin simplifies integration existing GStreamer media pipeline
on the hardware to stream to KVS
• After integration, you can stream video from on-board webcam or an RTSP
(Real Time Streaming Protocol)/ IP camera to KVS
• Plugin manages transfer of video to KVS by encapsulating the functionality
provided by the Kinesis Video Streams producer SDK
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Module outcomes
• For your target platform: build/ install Kinesis Video Streams producer SDK
asset to capture and stream live video
• Access to video stream in your Kinesis Video Streams management console
• (Optional) Modify producer side settings and see changes
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Playback video streams in live and on-demand mode
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Kinesis Video playback using HLS
• HTTP Live Streaming (HLS) is an industry-
standard HTTP-based media streaming
communications protocol
• KVS supports HLS to view the video,
either for live playback or to view
archived video
• Ensure media fragment type is AVC
(Advanced Video Coding) for H264 format
• Ensure non-zero data retention for stream
Connected
camera
Mobile client
Playback Devices
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
How HTTP live streaming works with KVS
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Module activities
• Create an HTML webpage that performs the following actions:
• Loads the VideoJS video player
• Creates Kinesis Video Streams SDK clients
• Retrieves the Kinesis Video Streams Archived Content Endpoint
• Retrieves an HLS Streaming Session URL
• Plays a live video stream in the video player
• Plays an on-demand video clip in the video player
• Learn best practices on fine-tuning end-to-end latency
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Video Playback latency best practices
• Fragment duration: Decrease fragment duration (1 second recommended) to reduce the
amount of video that needs to be combined into a fragment before it can be persisted and
loaded by the player
• Bitrate: Decrease bitrate as it takes less time to read, write, and transmit smaller
fragments
• Fragment count in media playlists: Decrease the max number of fragments (3-5
recommended) per playlist because some players start playback from the oldest fragment
in a media playlist.
• Player buffer size: Decrease the player minimum buffer size (0 sec recommended)
• Player "catch up": Players don't automatically catch playback up to the front of the video
buffer. Custom player can avoid this by dropping frames, or increasing the playback speed
(to 1.1x) to catch up to front.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Module outcomes
• Learn the basics of HTTP Live Streaming (HLS) in the context of Kinesis Video
Streams
• Perform live/on-demand playback actions using sample video player
• Learn playback latency tuning options
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Sample, parse, and decode frames in video stream to invoke Amazon
SageMaker in real-time
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Objectives
• Create an Amazon SageMaker endpoint using Amazon’s object classification
algorithm and sample training data through a AWS AWS CloudFormation
Template
• Create associated Amazon Kinesis Video Streams infrastructure to parse,
sample, and decode frames reliably to invoke Amazon SageMaker endpoint
• Investigate AWS Lambda logs to verify detections performed
• Dive into AWS CloudWatch dashboard for high level overview.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Amazon SageMaker
Fully managed
hosting with auto-
scaling
One-click
deployment
Pre-built
notebooks for
common
problems
Built-in, high
performance
algorithms
One-click
training
Hyperparameter
optimization
BUILD TRAIN DEPLOY
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
KVS Inference Template for Amazon SageMaker (KIT)
Sample, decode, invoke Amazon SageMaker at scale, in real-time
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Module Activities
• Spin up relevant resources: Amazon ECS, Fargate, DynamoDB
• Host a pre-created object detection model in Amazon SageMaker
• Run AWS CloudFormation template to create a Amazon SageMaker
endpoint using object classification algorithm
PDX
• Run AWS CloudFormation template to create inference stack
PDX
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Module Outcomes
• Create an Amazon SageMaker endpoint hosting a pre-built object detection
model
• Deployed infrastructure including Amazon ECS/ Fargate, AWS DynamoDB,
Amazon Kinesis Data Stream, and more.
• Investigated the pre-created Amazon CloudWatch dashboard to understand
the various metrics
• Dove into AWS Lambda logs to verify results processed
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Amazon CloudWatch Dashboard
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Recap
• Understood what a hardware media pipeline looks like, incl. an intro
to Gstreamer
• Dove into key steps needed with focus on capture, playback, and ML-
driven analytics of video
• Streamed from a camera
• Played video back on a webpage
• Analyzed media using Amazon SageMaker
• Built an end-to-end demo from device to ML-backend
• Don’t forget to teardown the AWS CloudFormation stacks
Thank you!
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
Kinesis Video Team
adikri@amazon.com
© 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.

Mais conteúdo relacionado

Mais procurados

AWS CLOUD 2017 - Amazon Athena 및 Glue를 통한 빠른 데이터 질의 및 처리 기능 소개 (김상필 솔루션즈 아키텍트)
AWS CLOUD 2017 - Amazon Athena 및 Glue를 통한 빠른 데이터 질의 및 처리 기능 소개 (김상필 솔루션즈 아키텍트)AWS CLOUD 2017 - Amazon Athena 및 Glue를 통한 빠른 데이터 질의 및 처리 기능 소개 (김상필 솔루션즈 아키텍트)
AWS CLOUD 2017 - Amazon Athena 및 Glue를 통한 빠른 데이터 질의 및 처리 기능 소개 (김상필 솔루션즈 아키텍트)
Amazon Web Services Korea
 
Amazon.com 사례와 함께하는 유통 차세대 DW 구축을 위한 Data Lake 전략::구태훈::AWS Summit Seoul 2018
Amazon.com 사례와 함께하는 유통 차세대 DW 구축을 위한 Data Lake 전략::구태훈::AWS Summit Seoul 2018Amazon.com 사례와 함께하는 유통 차세대 DW 구축을 위한 Data Lake 전략::구태훈::AWS Summit Seoul 2018
Amazon.com 사례와 함께하는 유통 차세대 DW 구축을 위한 Data Lake 전략::구태훈::AWS Summit Seoul 2018
Amazon Web Services Korea
 
Data Migration to AWS with DataSync & Transfer for SFTP
Data Migration to AWS with DataSync & Transfer for SFTPData Migration to AWS with DataSync & Transfer for SFTP
Data Migration to AWS with DataSync & Transfer for SFTP
Amazon Web Services
 
가상 데이터 센터 만들기 VPC 기본 및 연결 옵션- AWS Summit Seoul 2017
가상 데이터 센터 만들기 VPC 기본 및 연결 옵션- AWS Summit Seoul 2017가상 데이터 센터 만들기 VPC 기본 및 연결 옵션- AWS Summit Seoul 2017
가상 데이터 센터 만들기 VPC 기본 및 연결 옵션- AWS Summit Seoul 2017
Amazon Web Services Korea
 

Mais procurados (20)

Edge Computing Use Cases: Interactive Deep Dive on AWS Snowball Edge (STG387)...
Edge Computing Use Cases: Interactive Deep Dive on AWS Snowball Edge (STG387)...Edge Computing Use Cases: Interactive Deep Dive on AWS Snowball Edge (STG387)...
Edge Computing Use Cases: Interactive Deep Dive on AWS Snowball Edge (STG387)...
 
AWS CLOUD 2017 - Amazon Athena 및 Glue를 통한 빠른 데이터 질의 및 처리 기능 소개 (김상필 솔루션즈 아키텍트)
AWS CLOUD 2017 - Amazon Athena 및 Glue를 통한 빠른 데이터 질의 및 처리 기능 소개 (김상필 솔루션즈 아키텍트)AWS CLOUD 2017 - Amazon Athena 및 Glue를 통한 빠른 데이터 질의 및 처리 기능 소개 (김상필 솔루션즈 아키텍트)
AWS CLOUD 2017 - Amazon Athena 및 Glue를 통한 빠른 데이터 질의 및 처리 기능 소개 (김상필 솔루션즈 아키텍트)
 
Amazon.com 사례와 함께하는 유통 차세대 DW 구축을 위한 Data Lake 전략::구태훈::AWS Summit Seoul 2018
Amazon.com 사례와 함께하는 유통 차세대 DW 구축을 위한 Data Lake 전략::구태훈::AWS Summit Seoul 2018Amazon.com 사례와 함께하는 유통 차세대 DW 구축을 위한 Data Lake 전략::구태훈::AWS Summit Seoul 2018
Amazon.com 사례와 함께하는 유통 차세대 DW 구축을 위한 Data Lake 전략::구태훈::AWS Summit Seoul 2018
 
현대백화점 리테일테크랩과 AWS Prototyping 팀 개발자가 들려주는 인공 지능 무인 스토어 개발 여정 - 최권열 AWS 프로토타이핑...
현대백화점 리테일테크랩과 AWS Prototyping 팀 개발자가 들려주는 인공 지능 무인 스토어 개발 여정 - 최권열 AWS 프로토타이핑...현대백화점 리테일테크랩과 AWS Prototyping 팀 개발자가 들려주는 인공 지능 무인 스토어 개발 여정 - 최권열 AWS 프로토타이핑...
현대백화점 리테일테크랩과 AWS Prototyping 팀 개발자가 들려주는 인공 지능 무인 스토어 개발 여정 - 최권열 AWS 프로토타이핑...
 
AWS 6월 웨비나 | Amazon VPC Deep Dive (김상필 솔루션즈아키텍트)
AWS 6월 웨비나 | Amazon VPC Deep Dive (김상필 솔루션즈아키텍트)AWS 6월 웨비나 | Amazon VPC Deep Dive (김상필 솔루션즈아키텍트)
AWS 6월 웨비나 | Amazon VPC Deep Dive (김상필 솔루션즈아키텍트)
 
Deep Dive - Amazon Kinesis Video Streams - AWS Online Tech Talks
Deep Dive - Amazon Kinesis Video Streams - AWS Online Tech TalksDeep Dive - Amazon Kinesis Video Streams - AWS Online Tech Talks
Deep Dive - Amazon Kinesis Video Streams - AWS Online Tech Talks
 
한글과컴퓨터의 클라우드 마이그레이션, 거버넌스 그리고 모더나이제이션-박인재, AWS ISV SA Manager / 박상형, 한글과컴퓨터 I...
한글과컴퓨터의 클라우드 마이그레이션, 거버넌스 그리고 모더나이제이션-박인재, AWS ISV SA Manager / 박상형, 한글과컴퓨터 I...한글과컴퓨터의 클라우드 마이그레이션, 거버넌스 그리고 모더나이제이션-박인재, AWS ISV SA Manager / 박상형, 한글과컴퓨터 I...
한글과컴퓨터의 클라우드 마이그레이션, 거버넌스 그리고 모더나이제이션-박인재, AWS ISV SA Manager / 박상형, 한글과컴퓨터 I...
 
AWS Summit Seoul 2023 | 천만 사용자 서비스를 위한 Amazon SageMaker 활용 방법 진화하기
AWS Summit Seoul 2023 | 천만 사용자 서비스를 위한 Amazon SageMaker 활용 방법 진화하기AWS Summit Seoul 2023 | 천만 사용자 서비스를 위한 Amazon SageMaker 활용 방법 진화하기
AWS Summit Seoul 2023 | 천만 사용자 서비스를 위한 Amazon SageMaker 활용 방법 진화하기
 
Data Migration to AWS with DataSync & Transfer for SFTP
Data Migration to AWS with DataSync & Transfer for SFTPData Migration to AWS with DataSync & Transfer for SFTP
Data Migration to AWS with DataSync & Transfer for SFTP
 
AWS Summit Seoul 2023 | 잘나가는 애플리케이션 성능? 알맞은 스토리지로부터!
AWS Summit Seoul 2023 | 잘나가는 애플리케이션 성능? 알맞은 스토리지로부터!AWS Summit Seoul 2023 | 잘나가는 애플리케이션 성능? 알맞은 스토리지로부터!
AWS Summit Seoul 2023 | 잘나가는 애플리케이션 성능? 알맞은 스토리지로부터!
 
Securing your Amazon SageMaker model development in a highly regulated enviro...
Securing your Amazon SageMaker model development in a highly regulated enviro...Securing your Amazon SageMaker model development in a highly regulated enviro...
Securing your Amazon SageMaker model development in a highly regulated enviro...
 
AWS for Manufacturing: Digital Transformation throughout the Value Chain (MFG...
AWS for Manufacturing: Digital Transformation throughout the Value Chain (MFG...AWS for Manufacturing: Digital Transformation throughout the Value Chain (MFG...
AWS for Manufacturing: Digital Transformation throughout the Value Chain (MFG...
 
글로벌 고객 사례를 통하여 소개하는 혁신적인 데이터 웨어하우스 - 김형일 (AWS 솔루션즈 아키텍트)
글로벌 고객 사례를 통하여 소개하는 혁신적인 데이터 웨어하우스 - 김형일 (AWS 솔루션즈 아키텍트)글로벌 고객 사례를 통하여 소개하는 혁신적인 데이터 웨어하우스 - 김형일 (AWS 솔루션즈 아키텍트)
글로벌 고객 사례를 통하여 소개하는 혁신적인 데이터 웨어하우스 - 김형일 (AWS 솔루션즈 아키텍트)
 
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...
[금융사를 위한 AWS Generative AI Day 2023] 4_AWS Generative AI 서비스의 활용 방ᄇ...
 
AWS Partner Data Analytics on AWS_Handout.pdf
AWS Partner Data Analytics on AWS_Handout.pdfAWS Partner Data Analytics on AWS_Handout.pdf
AWS Partner Data Analytics on AWS_Handout.pdf
 
[AWS & 베스핀글로벌, 바이오∙헬스케어∙제약사를 위한 세미나] AWS 클라우드 보안
[AWS & 베스핀글로벌, 바이오∙헬스케어∙제약사를 위한 세미나] AWS 클라우드 보안[AWS & 베스핀글로벌, 바이오∙헬스케어∙제약사를 위한 세미나] AWS 클라우드 보안
[AWS & 베스핀글로벌, 바이오∙헬스케어∙제약사를 위한 세미나] AWS 클라우드 보안
 
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...
KB국민은행은 시작했다 -  쉽고 빠른 클라우드 거버넌스 적용 전략 - 강병억 AWS 솔루션즈 아키텍트 / 장강홍 클라우드플랫폼단 차장, ...
 
AWS Single Sign-On (SSO) 서비스 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
AWS Single Sign-On (SSO) 서비스 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나AWS Single Sign-On (SSO) 서비스 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
AWS Single Sign-On (SSO) 서비스 집중 탐구 - 윤석찬 :: AWS Unboxing 온라인 세미나
 
대규모 온프레미스 하둡 마이그레이션을 위한 실행 전략과 최적화 방안 소개-유철민, AWS Data Architect / 박성열,AWS Pr...
대규모 온프레미스 하둡 마이그레이션을 위한 실행 전략과 최적화 방안 소개-유철민, AWS Data Architect / 박성열,AWS Pr...대규모 온프레미스 하둡 마이그레이션을 위한 실행 전략과 최적화 방안 소개-유철민, AWS Data Architect / 박성열,AWS Pr...
대규모 온프레미스 하둡 마이그레이션을 위한 실행 전략과 최적화 방안 소개-유철민, AWS Data Architect / 박성열,AWS Pr...
 
가상 데이터 센터 만들기 VPC 기본 및 연결 옵션- AWS Summit Seoul 2017
가상 데이터 센터 만들기 VPC 기본 및 연결 옵션- AWS Summit Seoul 2017가상 데이터 센터 만들기 VPC 기본 및 연결 옵션- AWS Summit Seoul 2017
가상 데이터 센터 만들기 VPC 기본 및 연결 옵션- AWS Summit Seoul 2017
 

Semelhante a Stream Video, Analyze It in Real Time, and Share It in Real Time (ANT357) - AWS re:Invent 2018

Semelhante a Stream Video, Analyze It in Real Time, and Share It in Real Time (ANT357) - AWS re:Invent 2018 (20)

Serverless Video Ingestion & Analytics with Amazon Kinesis Video Streams (ANT...
Serverless Video Ingestion & Analytics with Amazon Kinesis Video Streams (ANT...Serverless Video Ingestion & Analytics with Amazon Kinesis Video Streams (ANT...
Serverless Video Ingestion & Analytics with Amazon Kinesis Video Streams (ANT...
 
A Tale of Two Pizzas: Accelerating Software Delivery with AWS Developer Tools
A Tale of Two Pizzas: Accelerating Software Delivery with AWS Developer ToolsA Tale of Two Pizzas: Accelerating Software Delivery with AWS Developer Tools
A Tale of Two Pizzas: Accelerating Software Delivery with AWS Developer Tools
 
Customize a "VOD on AWS" Transcoding Solution with QC, DRM, and More (CTD412)...
Customize a "VOD on AWS" Transcoding Solution with QC, DRM, and More (CTD412)...Customize a "VOD on AWS" Transcoding Solution with QC, DRM, and More (CTD412)...
Customize a "VOD on AWS" Transcoding Solution with QC, DRM, and More (CTD412)...
 
CI CD using AWS Developer Tools @ AWS Community Day Bengaluru 2018
CI CD using AWS Developer Tools @ AWS Community Day Bengaluru 2018CI CD using AWS Developer Tools @ AWS Community Day Bengaluru 2018
CI CD using AWS Developer Tools @ AWS Community Day Bengaluru 2018
 
PaaS – From Code to Running Application using AWS Elastic Beanstalk (DEV323) ...
PaaS – From Code to Running Application using AWS Elastic Beanstalk (DEV323) ...PaaS – From Code to Running Application using AWS Elastic Beanstalk (DEV323) ...
PaaS – From Code to Running Application using AWS Elastic Beanstalk (DEV323) ...
 
Community day _aws_ci_cd_v0.2
Community day _aws_ci_cd_v0.2Community day _aws_ci_cd_v0.2
Community day _aws_ci_cd_v0.2
 
20200930 AWS Black Belt Online Seminar Amazon Kinesis Video Streams
20200930 AWS Black Belt Online Seminar Amazon Kinesis Video Streams20200930 AWS Black Belt Online Seminar Amazon Kinesis Video Streams
20200930 AWS Black Belt Online Seminar Amazon Kinesis Video Streams
 
Data Lake Patterns for Voice, Vision, Advanced Analytics, & ML Using Serverle...
Data Lake Patterns for Voice, Vision, Advanced Analytics, & ML Using Serverle...Data Lake Patterns for Voice, Vision, Advanced Analytics, & ML Using Serverle...
Data Lake Patterns for Voice, Vision, Advanced Analytics, & ML Using Serverle...
 
Build CICD Pipeline for Container Presentation Slides
Build CICD Pipeline for Container Presentation SlidesBuild CICD Pipeline for Container Presentation Slides
Build CICD Pipeline for Container Presentation Slides
 
NEW LAUNCH! Introducing Amazon Kinesis Video Streams - ABD216 - re:Invent 2017
NEW LAUNCH! Introducing Amazon Kinesis Video Streams - ABD216 - re:Invent 2017NEW LAUNCH! Introducing Amazon Kinesis Video Streams - ABD216 - re:Invent 2017
NEW LAUNCH! Introducing Amazon Kinesis Video Streams - ABD216 - re:Invent 2017
 
Improve Productivity with Continuous Integration & Delivery
Improve Productivity with Continuous Integration & DeliveryImprove Productivity with Continuous Integration & Delivery
Improve Productivity with Continuous Integration & Delivery
 
NEW LAUNCH! Stream video from edge devices to AWS for playback, storage and p...
NEW LAUNCH! Stream video from edge devices to AWS for playback, storage and p...NEW LAUNCH! Stream video from edge devices to AWS for playback, storage and p...
NEW LAUNCH! Stream video from edge devices to AWS for playback, storage and p...
 
Kaltura Inspire Webinar: API Driven Video Platform - The Key to Scalability a...
Kaltura Inspire Webinar: API Driven Video Platform - The Key to Scalability a...Kaltura Inspire Webinar: API Driven Video Platform - The Key to Scalability a...
Kaltura Inspire Webinar: API Driven Video Platform - The Key to Scalability a...
 
CI CD using AWS Developer Tools @ AWS Community Day Chennai 2019
CI CD using AWS Developer Tools @ AWS Community Day Chennai 2019CI CD using AWS Developer Tools @ AWS Community Day Chennai 2019
CI CD using AWS Developer Tools @ AWS Community Day Chennai 2019
 
CI/CD using AWS developer tools
CI/CD using AWS developer toolsCI/CD using AWS developer tools
CI/CD using AWS developer tools
 
NEW LAUNCH! Build your own live streaming and on-demand video service with AW...
NEW LAUNCH! Build your own live streaming and on-demand video service with AW...NEW LAUNCH! Build your own live streaming and on-demand video service with AW...
NEW LAUNCH! Build your own live streaming and on-demand video service with AW...
 
Innovation in the Partner Ecosystem: NY Symposium
Innovation in the Partner Ecosystem: NY SymposiumInnovation in the Partner Ecosystem: NY Symposium
Innovation in the Partner Ecosystem: NY Symposium
 
Build an AppStream 2.0 Environment to Deliver Desktop Applications to Any Com...
Build an AppStream 2.0 Environment to Deliver Desktop Applications to Any Com...Build an AppStream 2.0 Environment to Deliver Desktop Applications to Any Com...
Build an AppStream 2.0 Environment to Deliver Desktop Applications to Any Com...
 
DevSecOps 的規模化實踐 (Level: 300-400)
DevSecOps 的規模化實踐 (Level: 300-400)DevSecOps 的規模化實踐 (Level: 300-400)
DevSecOps 的規模化實踐 (Level: 300-400)
 
Perfecting the Media Workflow Experience on AWS - Ben Masek, 월드와이드 미디어 사업개발 헤...
Perfecting the Media Workflow Experience on AWS - Ben Masek, 월드와이드 미디어 사업개발 헤...Perfecting the Media Workflow Experience on AWS - Ben Masek, 월드와이드 미디어 사업개발 헤...
Perfecting the Media Workflow Experience on AWS - Ben Masek, 월드와이드 미디어 사업개발 헤...
 

Mais de Amazon Web Services

Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
Amazon Web Services
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
Amazon Web Services
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
Amazon Web Services
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
Amazon Web Services
 

Mais de Amazon Web Services (20)

Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
Come costruire servizi di Forecasting sfruttando algoritmi di ML e deep learn...
 
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
Big Data per le Startup: come creare applicazioni Big Data in modalità Server...
 
Esegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS FargateEsegui pod serverless con Amazon EKS e AWS Fargate
Esegui pod serverless con Amazon EKS e AWS Fargate
 
Costruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWSCostruire Applicazioni Moderne con AWS
Costruire Applicazioni Moderne con AWS
 
Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot Come spendere fino al 90% in meno con i container e le istanze spot
Come spendere fino al 90% in meno con i container e le istanze spot
 
Open banking as a service
Open banking as a serviceOpen banking as a service
Open banking as a service
 
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
Rendi unica l’offerta della tua startup sul mercato con i servizi Machine Lea...
 
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...OpsWorks Configuration Management: automatizza la gestione e i deployment del...
OpsWorks Configuration Management: automatizza la gestione e i deployment del...
 
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows WorkloadsMicrosoft Active Directory su AWS per supportare i tuoi Windows Workloads
Microsoft Active Directory su AWS per supportare i tuoi Windows Workloads
 
Computer Vision con AWS
Computer Vision con AWSComputer Vision con AWS
Computer Vision con AWS
 
Database Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatareDatabase Oracle e VMware Cloud on AWS i miti da sfatare
Database Oracle e VMware Cloud on AWS i miti da sfatare
 
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJSCrea la tua prima serverless ledger-based app con QLDB e NodeJS
Crea la tua prima serverless ledger-based app con QLDB e NodeJS
 
API moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e webAPI moderne real-time per applicazioni mobili e web
API moderne real-time per applicazioni mobili e web
 
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatareDatabase Oracle e VMware Cloud™ on AWS: i miti da sfatare
Database Oracle e VMware Cloud™ on AWS: i miti da sfatare
 
Tools for building your MVP on AWS
Tools for building your MVP on AWSTools for building your MVP on AWS
Tools for building your MVP on AWS
 
How to Build a Winning Pitch Deck
How to Build a Winning Pitch DeckHow to Build a Winning Pitch Deck
How to Build a Winning Pitch Deck
 
Building a web application without servers
Building a web application without serversBuilding a web application without servers
Building a web application without servers
 
Fundraising Essentials
Fundraising EssentialsFundraising Essentials
Fundraising Essentials
 
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
AWS_HK_StartupDay_Building Interactive websites while automating for efficien...
 
Introduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container ServiceIntroduzione a Amazon Elastic Container Service
Introduzione a Amazon Elastic Container Service
 

Stream Video, Analyze It in Real Time, and Share It in Real Time (ANT357) - AWS re:Invent 2018

  • 1.
  • 2. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Stream Video, Analyze It, and Share It in Real Time Adi Krishnan Head of Kinesis Video Amazon Web Services A N T 3 5 7 Girish Sood Sr. Product Manager Amazon Web Services Vijay Joshi Software Engineer Amazon Web Services Mitchell Loeppky Software Engineer Amazon Web Services
  • 3. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Session Abstract Video is ‘big data’. Image sensors—in our smartphones, smart home devices, traffic cameras—are getting internet-connected. Massive streams of video data are generated, but currently not mined for real-time insights to drive businesses forward. In this workshop, learn to capture, process, and analyze video streams. Build and configure your camera device’s media pipeline to start streaming video into the AWS Cloud using Amazon Kinesis Video Streams. Next, build and deploy your own machine learning (ML) model in Amazon SageMaker to generate inferences about objects or activities in your video stream. Finally, build a browser-based web player to view the video in Live and On- Demand modes, including the analyzed video stream. In this workshop, you use Amazon Kinesis Video Streams, Amazon SageMaker, Amazon Rekognition Video, and Amazon Elastic Container Service (Amazon ECS).
  • 4. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Workshop objectives • Work through the video ingestion data pipeline • Focus on capturing, playback, and ML-driven analytics of video • Capture live video from your device and stream to AWS • Playback video using HTTP Live Streaming (HLS) capability • Analyze video using Amazon SageMaker • Demonstrate how to use related services to solve typical problems and leave with a working end to end demonstration
  • 5. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Target audience • Architects, software developers / engineers • Interested in building video oriented workflows from devices and integrating with ML-services • Level 300 – Working knowledge of core AWS services • Sample code will be provided • A desire to learn
  • 6. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. What prior knowledge do I need? • Working knowledge of some AWS foundational technologies:- • AWS Identify and Access Management (IAM) • AWS AWS CloudFormation • Amazon CloudWatch • Amazon ECS • Your laptop that runs Windows, Mac, or Ubuntu Linux • Note ML Services will be used and the model shared, not an in-depth ML session however
  • 7. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 8. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Workshop set-up steps • Ensure you have a valid AWS account with appropriate access • Ready access to your AK/ Secret AK (to help with SDK installs) • Your laptop with Windows, MacOS, or Ubuntu Linux • Download the ‘step-by-step’ instruction guides for the 3 modules from the following links: • Module 1: Capture live video (Producer): https://s3-us-west-2.amazonaws.com/kvsit- beta-us-west-2/reinvent/producer.pdf • Module 2: View live video (HLS Playback): https://s3-us-west-2.amazonaws.com/kvsit- beta-us-west-2/reinvent/hls.pdf • Module 3: Real-time video analytics with Amazon SageMaker (KIT): https://s3-us-west- 2.amazonaws.com/kvsit-beta-us-west-2/reinvent/kit.pdf
  • 9. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 10. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Video is critical to many applications Smart home Security monitoring Smart city Industrial automation Computer vision
  • 11. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Building a video system is complex • Cumbersome to rewrite code for various devices and development environments • Difficult to “elastically” scale to millions of devices • Requires reliable support for cadence, latency, and jitter on streams • Requires secure streaming and storage by default • Need easy-to-use APIs to retrieve, replay, and process video at any scale
  • 12. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Stream video from millions of devices Easily build vision-enabled apps Playback in live or on-demand mode Durable, time-indexed storage Secure and Fully managed Amazon Kinesis video streams Stream video in real-time for playback, storage, and analytics Kinesis Video Streams
  • 13. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Kinesis video streams concept
  • 14. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 15. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Module objectives • Learn about ways to produce media into KVS with the producer SDK • Discover basics of Gstreamer-based media pipeline construction • Capture and stream video feed from your laptop / USB cam • View video on the Amazon Kinesis Video Streams management console • (Optional) Perform basic configuration changes such as FPS and/ resolution changes
  • 16. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Kinesis Video Streams ingestion process • Stream directly from (supported) device • Stream using a proxy/ gateway that connects with device on the same • Both approaches use the KVS producer SDK assets Proxied Video Stream (Optional) Customer Producer Producer SDK writes directly to the video stream RTSP Stream Read by proxy and send to stream
  • 17. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon Confidential Kinesis Video Streams producer SDK Easily connect and stream from camera sources Producer SDK offers … … that enables developers to • Flexible SDK for integration with on-device hardware media pipelines • Out-of-the-box integration with AWS auth mechanism: SigV4 / AWS IoT certs • Handles streaming Put API to stream continuously in a reliable manner • Add metadata to video fragments applied by the device directly • Build custom integrations with diverse camera and device types • Secure authN and authZ to connect devices w/ image sensors to AWS • Stream video data based on the preferred transmission scenario • Annotated video fragments enable cloud- based analytics and advanced indexing
  • 18. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Kinesis Video Streams producer SDK Easily connect and stream from camera sources Platform independent layer (C) OO wrapper layer (C++ and Java) Android Win Linux MacOS Raspian For app devs to install on target OS to build producer applications For camera-level integrators who want a high- performance integration model to build their camera platforms Docker image Docker images on target OSes for easy getting started experience Gstreamer plugin Gstreamer plugin Gstreamer plugin Gstreamer plugin
  • 19. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Module activities • MacOS: Run pre-built binary of the producer SDK and start streaming from built-in webcam • Windows: Run pre-built binary of the producer SDK and start streaming from built-in webcam. If webcam is inaccessible; request USB cam. • Ubuntu: Run Gstreamer plug-in as a Docker container (for Windows/ Mac). If internal webcam is inaccessible; request USB cam. • Playback on KVS management console to view streaming content • Change FPS/ Resolution options and see changes in playback – Note: hardware media pipelines are finicky – so your mileage may vary.
  • 20. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Gstreamer: Standard environment to construct media pipelines on the devices • Popular media framework used in cameras / video sources for media pipelines by combining modular plugins • KVS GStreamer plugin simplifies integration existing GStreamer media pipeline on the hardware to stream to KVS • After integration, you can stream video from on-board webcam or an RTSP (Real Time Streaming Protocol)/ IP camera to KVS • Plugin manages transfer of video to KVS by encapsulating the functionality provided by the Kinesis Video Streams producer SDK
  • 21. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Module outcomes • For your target platform: build/ install Kinesis Video Streams producer SDK asset to capture and stream live video • Access to video stream in your Kinesis Video Streams management console • (Optional) Modify producer side settings and see changes
  • 22. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Playback video streams in live and on-demand mode
  • 23. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Kinesis Video playback using HLS • HTTP Live Streaming (HLS) is an industry- standard HTTP-based media streaming communications protocol • KVS supports HLS to view the video, either for live playback or to view archived video • Ensure media fragment type is AVC (Advanced Video Coding) for H264 format • Ensure non-zero data retention for stream Connected camera Mobile client Playback Devices
  • 24. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. How HTTP live streaming works with KVS
  • 25. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Module activities • Create an HTML webpage that performs the following actions: • Loads the VideoJS video player • Creates Kinesis Video Streams SDK clients • Retrieves the Kinesis Video Streams Archived Content Endpoint • Retrieves an HLS Streaming Session URL • Plays a live video stream in the video player • Plays an on-demand video clip in the video player • Learn best practices on fine-tuning end-to-end latency
  • 26. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Video Playback latency best practices • Fragment duration: Decrease fragment duration (1 second recommended) to reduce the amount of video that needs to be combined into a fragment before it can be persisted and loaded by the player • Bitrate: Decrease bitrate as it takes less time to read, write, and transmit smaller fragments • Fragment count in media playlists: Decrease the max number of fragments (3-5 recommended) per playlist because some players start playback from the oldest fragment in a media playlist. • Player buffer size: Decrease the player minimum buffer size (0 sec recommended) • Player "catch up": Players don't automatically catch playback up to the front of the video buffer. Custom player can avoid this by dropping frames, or increasing the playback speed (to 1.1x) to catch up to front.
  • 27. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Module outcomes • Learn the basics of HTTP Live Streaming (HLS) in the context of Kinesis Video Streams • Perform live/on-demand playback actions using sample video player • Learn playback latency tuning options
  • 28. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Sample, parse, and decode frames in video stream to invoke Amazon SageMaker in real-time
  • 29. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Objectives • Create an Amazon SageMaker endpoint using Amazon’s object classification algorithm and sample training data through a AWS AWS CloudFormation Template • Create associated Amazon Kinesis Video Streams infrastructure to parse, sample, and decode frames reliably to invoke Amazon SageMaker endpoint • Investigate AWS Lambda logs to verify detections performed • Dive into AWS CloudWatch dashboard for high level overview.
  • 30. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon SageMaker Fully managed hosting with auto- scaling One-click deployment Pre-built notebooks for common problems Built-in, high performance algorithms One-click training Hyperparameter optimization BUILD TRAIN DEPLOY
  • 31. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. KVS Inference Template for Amazon SageMaker (KIT) Sample, decode, invoke Amazon SageMaker at scale, in real-time
  • 32. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Module Activities • Spin up relevant resources: Amazon ECS, Fargate, DynamoDB • Host a pre-created object detection model in Amazon SageMaker • Run AWS CloudFormation template to create a Amazon SageMaker endpoint using object classification algorithm PDX • Run AWS CloudFormation template to create inference stack PDX
  • 33. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Module Outcomes • Create an Amazon SageMaker endpoint hosting a pre-built object detection model • Deployed infrastructure including Amazon ECS/ Fargate, AWS DynamoDB, Amazon Kinesis Data Stream, and more. • Investigated the pre-created Amazon CloudWatch dashboard to understand the various metrics • Dove into AWS Lambda logs to verify results processed
  • 34. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Amazon CloudWatch Dashboard
  • 35. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.
  • 36. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Recap • Understood what a hardware media pipeline looks like, incl. an intro to Gstreamer • Dove into key steps needed with focus on capture, playback, and ML- driven analytics of video • Streamed from a camera • Played video back on a webpage • Analyzed media using Amazon SageMaker • Built an end-to-end demo from device to ML-backend • Don’t forget to teardown the AWS CloudFormation stacks
  • 37. Thank you! © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved. Kinesis Video Team adikri@amazon.com
  • 38. © 2018, Amazon Web Services, Inc. or its affiliates. All rights reserved.