public interface AWSKinesisVideoArchivedMedia
Modifier and Type | Method and Description |
---|---|
ResponseMetadata |
getCachedResponseMetadata(AmazonWebServiceRequest request)
Returns additional metadata for a previously executed successful request,
typically used for debugging issues where a service isn't acting as
expected.
|
GetHLSStreamingSessionURLResult |
getHLSStreamingSessionURL(GetHLSStreamingSessionURLRequest getHLSStreamingSessionURLRequest)
Retrieves an HTTP Live Streaming (HLS) URL for the stream.
|
GetMediaForFragmentListResult |
getMediaForFragmentList(GetMediaForFragmentListRequest getMediaForFragmentListRequest)
Gets media for a list of fragments (specified by fragment number) from
the archived data in an Amazon Kinesis video stream.
|
ListFragmentsResult |
listFragments(ListFragmentsRequest listFragmentsRequest)
Returns a list of Fragment objects from the specified stream and
start location within the archived data.
|
void |
setEndpoint(java.lang.String endpoint)
Overrides the default endpoint for this client
("https://https://kinesisvideo.us-west-2.amazonaws.com").
|
void |
setRegion(Region region)
An alternative to
setEndpoint(String) , sets the
regional endpoint for this client's service calls. |
void |
shutdown()
Shuts down this client object, releasing any resources that might be held
open.
|
void setEndpoint(java.lang.String endpoint) throws java.lang.IllegalArgumentException
Callers can pass in just the endpoint (ex:
"https://kinesisvideo.us-west-2.amazonaws.com") or a full URL, including
the protocol (ex:
"https://https://kinesisvideo.us-west-2.amazonaws.com"). If the protocol
is not specified here, the default protocol from this client's
ClientConfiguration
will be used, which by default is HTTPS.
For more information on using AWS regions with the AWS SDK for Java, and a complete list of all available endpoints for all AWS services, see: http://developer.amazonwebservices.com/connect/entry.jspa?externalID= 3912
This method is not threadsafe. An endpoint should be configured when the client is created and before any service requests are made. Changing it afterwards creates inevitable race conditions for any service requests in transit or retrying.
endpoint
- The endpoint (ex:
"https://kinesisvideo.us-west-2.amazonaws.com") or a full URL,
including the protocol (ex:
"https://https://kinesisvideo.us-west-2.amazonaws.com") of the
region specific AWS endpoint this client will communicate
with.java.lang.IllegalArgumentException
- If any problems are detected with the
specified endpoint.void setRegion(Region region) throws java.lang.IllegalArgumentException
setEndpoint(String)
, sets the
regional endpoint for this client's service calls. Callers can use this
method to control which AWS region they want to work with.
By default, all service endpoints in all regions use the https protocol.
To use http instead, specify it in the ClientConfiguration
supplied at construction.
This method is not threadsafe. A region should be configured when the client is created and before any service requests are made. Changing it afterwards creates inevitable race conditions for any service requests in transit or retrying.
region
- The region this client will communicate with. See
Region.getRegion(com.amazonaws.regions.Regions)
for
accessing a given region.java.lang.IllegalArgumentException
- If the given region is null,
or if this service isn't available in the given region. See
Region.isServiceSupported(String)
Region.getRegion(com.amazonaws.regions.Regions)
,
Region.createClient(Class,
com.amazonaws.auth.AWSCredentialsProvider, ClientConfiguration)
GetHLSStreamingSessionURLResult getHLSStreamingSessionURL(GetHLSStreamingSessionURLRequest getHLSStreamingSessionURLRequest) throws AmazonClientException, AmazonServiceException
Retrieves an HTTP Live Streaming (HLS) URL for the stream. The URL can then be opened in a browser or media player to view the stream contents.
You must specify either the StreamName
or the
StreamARN
.
An Amazon Kinesis video stream has the following requirements for providing data through HLS:
The media type must be video/h264
.
Data retention must be greater than 0.
The fragments must contain codec private data in the AVC (Advanced Video Coding) for H.264 format (MPEG-4 specification ISO/IEC 14496-15). For information about adapting stream data to a given format, see NAL Adaptation Flags.
Kinesis Video Streams HLS sessions contain fragments in the fragmented MPEG-4 form (also called fMP4 or CMAF), rather than the MPEG-2 form (also called TS chunks, which the HLS specification also supports). For more information about HLS fragment types, see the HLS specification.
The following procedure shows how to use HLS with Kinesis Video Streams:
Get an endpoint using GetDataEndpoint, specifying
GET_HLS_STREAMING_SESSION_URL
for the APIName
parameter.
Retrieve the HLS URL using GetHLSStreamingSessionURL
.
Kinesis Video Streams creates an HLS streaming session to be used for
accessing content in a stream using the HLS protocol.
GetHLSStreamingSessionURL
returns an authenticated URL (that
includes an encrypted session token) for the session's HLS master
playlist (the root resource needed for streaming with HLS).
Don't share or store this token where an unauthorized entity could access it. The token provides access to the content of the stream. Safeguard the token with the same measures that you would use with your AWS credentials.
The media that is made available through the playlist consists only of the requested stream, time range, and format. No other media data (such as frames outside the requested window or alternate bit rates) is made available.
Provide the URL (containing the encrypted session token) for the HLS master playlist to a media player that supports the HLS protocol. Kinesis Video Streams makes the HLS media playlist, initialization fragment, and media fragments available through the master playlist URL. The initialization fragment contains the codec private data for the stream, and other data needed to set up the video decoder and renderer. The media fragments contain H.264-encoded video frames and time stamps.
The media player receives the authenticated URL and requests stream metadata and media data normally. When the media player requests data, it calls the following actions:
GetHLSMasterPlaylist: Retrieves an HLS master playlist, which
contains a URL for the GetHLSMediaPlaylist
action, and
additional metadata for the media player, including estimated bit rate
and resolution.
GetHLSMediaPlaylist: Retrieves an HLS media playlist, which
contains a URL to access the MP4 intitialization fragment with the
GetMP4InitFragment
action, and URLs to access the MP4 media
fragments with the GetMP4MediaFragment
actions. The HLS
media playlist also contains metadata about the stream that the player
needs to play it, such as whether the PlaybackMode
is
LIVE
or ON_DEMAND
. The HLS media playlist is
typically static for sessions with a PlaybackType
of
ON_DEMAND
. The HLS media playlist is continually updated
with new fragments for sessions with a PlaybackType
of
LIVE
.
GetMP4InitFragment: Retrieves the MP4 initialization fragment. The
media player typically loads the initialization fragment before loading
any media fragments. This fragment contains the "fytp
" and "
moov
" MP4 atoms, and the child atoms that are needed to
initialize the media player decoder.
The initialization fragment does not correspond to a fragment in a Kinesis video stream. It contains only the codec private data for the stream, which the media player needs to decode video frames.
GetMP4MediaFragment: Retrieves MP4 media fragments. These
fragments contain the "moof
" and "mdat
" MP4
atoms and their child atoms, containing the encoded fragment's video
frames and their time stamps.
After the first media fragment is made available in a streaming session, any fragments that don't contain the same codec private data are excluded in the HLS media playlist. Therefore, the codec private data does not change between fragments in a session.
The following restrictions apply to HLS sessions:
A streaming session URL should not be shared between players. The service might throttle a session if multiple media players are sharing it. For connection limits, see Kinesis Video Streams Limits.
A Kinesis video stream can have a maximum of five active HLS streaming
sessions. If a new session is created when the maximum number of sessions
is already active, the oldest (earliest created) session is closed. The
number of active GetMedia
connections on a Kinesis video
stream does not count against this limit, and the number of active HLS
sessions does not count against the active GetMedia
connection limit.
You can monitor the amount of data that the media player consumes by
monitoring the GetMP4MediaFragment.OutgoingBytes
Amazon
CloudWatch metric. For information about using CloudWatch to monitor
Kinesis Video Streams, see Monitoring Kinesis Video Streams. For pricing information, see Amazon
Kinesis Video Streams Pricing and AWS Pricing. Charges for both
HLS sessions and outgoing AWS data apply.
For more information about HLS, see HTTP Live Streaming on the Apple Developer site.
getHLSStreamingSessionURLRequest
- ResourceNotFoundException
InvalidArgumentException
ClientLimitExceededException
NotAuthorizedException
UnsupportedStreamMediaTypeException
NoDataRetentionException
MissingCodecPrivateDataException
InvalidCodecPrivateDataException
AmazonClientException
- If any internal errors are encountered
inside the client while attempting to make the request or
handle the response. For example if a network connection is
not available.AmazonServiceException
- If an error response is returned by
AWSKinesisVideoFrontend indicating either a problem with the
data in the request, or a server side issue.GetMediaForFragmentListResult getMediaForFragmentList(GetMediaForFragmentListRequest getMediaForFragmentListRequest) throws AmazonClientException, AmazonServiceException
Gets media for a list of fragments (specified by fragment number) from the archived data in an Amazon Kinesis video stream.
The following limits apply when using the
GetMediaForFragmentList
API:
A client can call GetMediaForFragmentList
up to five times
per second per stream.
Kinesis Video Streams sends media data at a rate of up to 25 megabytes
per second (or 200 megabits per second) during a
GetMediaForFragmentList
session.
getMediaForFragmentListRequest
- ResourceNotFoundException
InvalidArgumentException
ClientLimitExceededException
NotAuthorizedException
AmazonClientException
- If any internal errors are encountered
inside the client while attempting to make the request or
handle the response. For example if a network connection is
not available.AmazonServiceException
- If an error response is returned by
AWSKinesisVideoFrontend indicating either a problem with the
data in the request, or a server side issue.ListFragmentsResult listFragments(ListFragmentsRequest listFragmentsRequest) throws AmazonClientException, AmazonServiceException
Returns a list of Fragment objects from the specified stream and start location within the archived data.
listFragmentsRequest
- ResourceNotFoundException
InvalidArgumentException
ClientLimitExceededException
NotAuthorizedException
AmazonClientException
- If any internal errors are encountered
inside the client while attempting to make the request or
handle the response. For example if a network connection is
not available.AmazonServiceException
- If an error response is returned by
AWSKinesisVideoFrontend indicating either a problem with the
data in the request, or a server side issue.void shutdown()
ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic information for an executed request, you should use this method to retrieve it as soon as possible after executing a request.
request
- The originally executed request.Copyright © 2018 Amazon Web Services, Inc. All Rights Reserved.