PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::KinesisVideoArchivedMedia; use Moose; sub service { 'kinesisvideo' } sub signing_name { 'kinesisvideo' } sub version { '2017-09-30' } sub flattened_arrays { 0 } has max_attempts => (is => 'ro', isa => 'Int', default => 5); has retry => (is => 'ro', isa => 'HashRef', default => sub { { base => 'rand', type => 'exponential', growth_factor => 2 } }); has retriables => (is => 'ro', isa => 'ArrayRef', default => sub { [ ] }); with 'Paws::API::Caller', 'Paws::API::EndpointResolver', 'Paws::Net::V4Signature', 'Paws::Net::RestJsonCaller'; sub GetClip { my $self = shift; my $call_object = $self->new_with_coercions('Paws::KinesisVideoArchivedMedia::GetClip', @_); return $self->caller->do_call($self, $call_object); } sub GetDASHStreamingSessionURL { my $self = shift; my $call_object = $self->new_with_coercions('Paws::KinesisVideoArchivedMedia::GetDASHStreamingSessionURL', @_); return $self->caller->do_call($self, $call_object); } sub GetHLSStreamingSessionURL { my $self = shift; my $call_object = $self->new_with_coercions('Paws::KinesisVideoArchivedMedia::GetHLSStreamingSessionURL', @_); return $self->caller->do_call($self, $call_object); } sub GetMediaForFragmentList { my $self = shift; my $call_object = $self->new_with_coercions('Paws::KinesisVideoArchivedMedia::GetMediaForFragmentList', @_); return $self->caller->do_call($self, $call_object); } sub ListFragments { my $self = shift; my $call_object = $self->new_with_coercions('Paws::KinesisVideoArchivedMedia::ListFragments', @_); return $self->caller->do_call($self, $call_object); } sub ListAllFragments { my $self = shift; my $callback = shift @_ if (ref($_[0]) eq 'CODE'); my $result = $self->ListFragments(@_); my $next_result = $result; if (not defined $callback) { while ($next_result->NextToken) { $next_result = $self->ListFragments(@_, NextToken => $next_result->NextToken); push @{ $result->Fragments }, @{ $next_result->Fragments }; } return $result; } else { while ($result->NextToken) { $callback->($_ => 'Fragments') foreach (@{ $result->Fragments }); $result = $self->ListFragments(@_, NextToken => $result->NextToken); } $callback->($_ => 'Fragments') foreach (@{ $result->Fragments }); } return undef } sub operations { qw/GetClip GetDASHStreamingSessionURL GetHLSStreamingSessionURL GetMediaForFragmentList ListFragments / } 1; ### main pod documentation begin ### =head1 NAME Paws::KinesisVideoArchivedMedia - Perl Interface to AWS Amazon Kinesis Video Streams Archived Media =head1 SYNOPSIS use Paws; my $obj = Paws->service('KinesisVideoArchivedMedia'); my $res = $obj->Method( Arg1 => $val1, Arg2 => [ 'V1', 'V2' ], # if Arg3 is an object, the HashRef will be used as arguments to the constructor # of the arguments type Arg3 => { Att1 => 'Val1' }, # if Arg4 is an array of objects, the HashRefs will be passed as arguments to # the constructor of the arguments type Arg4 => [ { Att1 => 'Val1' }, { Att1 => 'Val2' } ], ); =head1 DESCRIPTION For the AWS API documentation, see L =head1 METHODS =head2 GetClip =over =item ClipFragmentSelector => L =item [StreamARN => Str] =item [StreamName => Str] =back Each argument is described in detail in: L Returns: a L instance Downloads an MP4 file (clip) containing the archived, on-demand media from the specified video stream over the specified time range. Both the StreamName and the StreamARN parameters are optional, but you must specify either the StreamName or the StreamARN when invoking this API operation. As a prerequisite to using GetCLip API, you must obtain an endpoint using C, specifying GET_CLIP forC< the C parameter.> An Amazon Kinesis video stream has the following requirements for providing data through MP4: =over =item * The media must contain h.264 or h.265 encoded video and, optionally, AAC or G.711 encoded audio. Specifically, the codec ID of track 1 should be C (for h.264) or V_MPEGH/ISO/HEVC (for H.265). Optionally, the codec ID of track 2 should be C (for AAC) or A_MS/ACM (for G.711). =item * Data retention must be greater than 0. =item * The video track of each fragment must contain codec private data in the Advanced Video Coding (AVC) for H.264 format and HEVC for H.265 format. For more information, see MPEG-4 specification ISO/IEC 14496-15 (https://www.iso.org/standard/55980.html). For information about adapting stream data to a given format, see NAL Adaptation Flags (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/producer-reference-nal.html). =item * The audio track (if present) of each fragment must contain codec private data in the AAC format (AAC specification ISO/IEC 13818-7 (https://www.iso.org/standard/43345.html)) or the MS Wave format (http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/WAVE.html). =back You can monitor the amount of outgoing data by monitoring the C Amazon CloudWatch metric. For information about using CloudWatch to monitor Kinesis Video Streams, see Monitoring Kinesis Video Streams (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/monitoring.html). For pricing information, see Amazon Kinesis Video Streams Pricing (https://aws.amazon.com/kinesis/video-streams/pricing/) and AWS Pricing (https://aws.amazon.com/pricing/). Charges for outgoing AWS data apply. =head2 GetDASHStreamingSessionURL =over =item [DASHFragmentSelector => L] =item [DisplayFragmentNumber => Str] =item [DisplayFragmentTimestamp => Str] =item [Expires => Int] =item [MaxManifestFragmentResults => Int] =item [PlaybackMode => Str] =item [StreamARN => Str] =item [StreamName => Str] =back Each argument is described in detail in: L Returns: a L instance Retrieves an MPEG Dynamic Adaptive Streaming over HTTP (DASH) URL for the stream. You can then open the URL in a media player to view the stream contents. Both the C and the C parameters are optional, but you must specify either the C or the C when invoking this API operation. An Amazon Kinesis video stream has the following requirements for providing data through MPEG-DASH: =over =item * The media must contain h.264 or h.265 encoded video and, optionally, AAC or G.711 encoded audio. Specifically, the codec ID of track 1 should be C (for h.264) or V_MPEGH/ISO/HEVC (for H.265). Optionally, the codec ID of track 2 should be C (for AAC) or A_MS/ACM (for G.711). =item * Data retention must be greater than 0. =item * The video track of each fragment must contain codec private data in the Advanced Video Coding (AVC) for H.264 format and HEVC for H.265 format. For more information, see MPEG-4 specification ISO/IEC 14496-15 (https://www.iso.org/standard/55980.html). For information about adapting stream data to a given format, see NAL Adaptation Flags (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/producer-reference-nal.html). =item * The audio track (if present) of each fragment must contain codec private data in the AAC format (AAC specification ISO/IEC 13818-7 (https://www.iso.org/standard/43345.html)) or the MS Wave format (http://www-mmsp.ece.mcgill.ca/Documents/AudioFormats/WAVE/WAVE.html). =back The following procedure shows how to use MPEG-DASH with Kinesis Video Streams: =over =item 1. Get an endpoint using GetDataEndpoint (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_GetDataEndpoint.html), specifying C for the C parameter. =item 2. Retrieve the MPEG-DASH URL using C. Kinesis Video Streams creates an MPEG-DASH streaming session to be used for accessing content in a stream using the MPEG-DASH protocol. C returns an authenticated URL (that includes an encrypted session token) for the session's MPEG-DASH I (the root resource needed for streaming with MPEG-DASH). Don't share or store this token where an unauthorized entity can access it. The token provides access to the content of the stream. Safeguard the token with the same measures that you use with your AWS credentials. The media that is made available through the manifest consists only of the requested stream, time range, and format. No other media data (such as frames outside the requested window or alternate bitrates) is made available. =item 3. Provide the URL (containing the encrypted session token) for the MPEG-DASH manifest to a media player that supports the MPEG-DASH protocol. Kinesis Video Streams makes the initialization fragment and media fragments available through the manifest URL. The initialization fragment contains the codec private data for the stream, and other data needed to set up the video or audio decoder and renderer. The media fragments contain encoded video frames or encoded audio samples. =item 4. 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: =over =item * B Retrieves an MPEG DASH manifest, which contains the metadata for the media that you want to playback. =item * B Retrieves the MP4 initialization fragment. The media player typically loads the initialization fragment before loading any media fragments. This fragment contains the "C" and "C" 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 and respective track, which the media player needs to decode the media frames. =item * B Retrieves MP4 media fragments. These fragments contain the "C" and "C" MP4 atoms and their child atoms, containing the encoded fragment's media frames and their timestamps. After the first media fragment is made available in a streaming session, any fragments that don't contain the same codec private data cause an error to be returned when those different media fragments are loaded. Therefore, the codec private data should not change between fragments in a session. This also means that the session fails if the fragments in a stream change from having only video to having both audio and video. Data retrieved with this action is billable. See Pricing (https://aws.amazon.com/kinesis/video-streams/pricing/) for details. =back =back For restrictions that apply to MPEG-DASH sessions, see Kinesis Video Streams Limits (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/limits.html). You can monitor the amount of data that the media player consumes by monitoring the C Amazon CloudWatch metric. For information about using CloudWatch to monitor Kinesis Video Streams, see Monitoring Kinesis Video Streams (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/monitoring.html). For pricing information, see Amazon Kinesis Video Streams Pricing (https://aws.amazon.com/kinesis/video-streams/pricing/) and AWS Pricing (https://aws.amazon.com/pricing/). Charges for both HLS sessions and outgoing AWS data apply. For more information about HLS, see HTTP Live Streaming (https://developer.apple.com/streaming/) on the Apple Developer site (https://developer.apple.com). If an error is thrown after invoking a Kinesis Video Streams archived media API, in addition to the HTTP status code and the response body, it includes the following pieces of information: =over =item * C HTTP header E contains a more specific error type in addition to what the HTTP status code provides. =item * C HTTP header E if you want to report an issue to AWS, the support team can better diagnose the problem if given the Request Id. =back Both the HTTP status code and the ErrorType header can be utilized to make programmatic decisions about whether errors are retry-able and under what conditions, as well as provide information on what actions the client programmer might need to take in order to successfully try again. For more information, see the B section at the bottom of this topic, as well as Common Errors (https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/CommonErrors.html). =head2 GetHLSStreamingSessionURL =over =item [ContainerFormat => Str] =item [DiscontinuityMode => Str] =item [DisplayFragmentTimestamp => Str] =item [Expires => Int] =item [HLSFragmentSelector => L] =item [MaxMediaPlaylistFragmentResults => Int] =item [PlaybackMode => Str] =item [StreamARN => Str] =item [StreamName => Str] =back Each argument is described in detail in: L Returns: a L instance Retrieves an HTTP Live Streaming (HLS) URL for the stream. You can then open the URL in a browser or media player to view the stream contents. Both the C and the C parameters are optional, but you must specify either the C or the C when invoking this API operation. An Amazon Kinesis video stream has the following requirements for providing data through HLS: =over =item * The media must contain h.264 or h.265 encoded video and, optionally, AAC encoded audio. Specifically, the codec ID of track 1 should be C (for h.264) or C (for h.265). Optionally, the codec ID of track 2 should be C. =item * Data retention must be greater than 0. =item * The video track of each fragment must contain codec private data in the Advanced Video Coding (AVC) for H.264 format or HEVC for H.265 format (MPEG-4 specification ISO/IEC 14496-15 (https://www.iso.org/standard/55980.html)). For information about adapting stream data to a given format, see NAL Adaptation Flags (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/producer-reference-nal.html). =item * The audio track (if present) of each fragment must contain codec private data in the AAC format (AAC specification ISO/IEC 13818-7 (https://www.iso.org/standard/43345.html)). =back Kinesis Video Streams HLS sessions contain fragments in the fragmented MPEG-4 form (also called fMP4 or CMAF) or 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 (https://tools.ietf.org/html/draft-pantos-http-live-streaming-23). The following procedure shows how to use HLS with Kinesis Video Streams: =over =item 1. Get an endpoint using GetDataEndpoint (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_GetDataEndpoint.html), specifying C for the C parameter. =item 2. Retrieve the HLS URL using C. Kinesis Video Streams creates an HLS streaming session to be used for accessing content in a stream using the HLS protocol. C returns an authenticated URL (that includes an encrypted session token) for the session's HLS I (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 bitrates) is made available. =item 3. 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 or audio decoder and renderer. The media fragments contain H.264-encoded video frames or AAC-encoded audio samples. =item 4. 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: =over =item * B Retrieves an HLS master playlist, which contains a URL for the C action for each track, and additional metadata for the media player, including estimated bitrate and resolution. =item * B Retrieves an HLS media playlist, which contains a URL to access the MP4 initialization fragment with the C action, and URLs to access the MP4 media fragments with the C actions. The HLS media playlist also contains metadata about the stream that the player needs to play it, such as whether the C is C or C. The HLS media playlist is typically static for sessions with a C of C. The HLS media playlist is continually updated with new fragments for sessions with a C of C. There is a distinct HLS media playlist for the video track and the audio track (if applicable) that contains MP4 media URLs for the specific track. =item * B Retrieves the MP4 initialization fragment. The media player typically loads the initialization fragment before loading any media fragments. This fragment contains the "C" and "C" 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 and respective track, which the media player needs to decode the media frames. =item * B Retrieves MP4 media fragments. These fragments contain the "C" and "C" MP4 atoms and their child atoms, containing the encoded fragment's media frames and their timestamps. After the first media fragment is made available in a streaming session, any fragments that don't contain the same codec private data cause an error to be returned when those different media fragments are loaded. Therefore, the codec private data should not change between fragments in a session. This also means that the session fails if the fragments in a stream change from having only video to having both audio and video. Data retrieved with this action is billable. See Pricing (https://aws.amazon.com/kinesis/video-streams/pricing/) for details. =item * B Retrieves MPEG TS fragments containing both initialization and media data for all tracks in the stream. If the C is C, this API is used instead of C and C to retrieve stream media. Data retrieved with this action is billable. For more information, see Kinesis Video Streams pricing (https://aws.amazon.com/kinesis/video-streams/pricing/). =back =back A streaming session URL must 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 (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/limits.html). You can monitor the amount of data that the media player consumes by monitoring the C Amazon CloudWatch metric. For information about using CloudWatch to monitor Kinesis Video Streams, see Monitoring Kinesis Video Streams (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/monitoring.html). For pricing information, see Amazon Kinesis Video Streams Pricing (https://aws.amazon.com/kinesis/video-streams/pricing/) and AWS Pricing (https://aws.amazon.com/pricing/). Charges for both HLS sessions and outgoing AWS data apply. For more information about HLS, see HTTP Live Streaming (https://developer.apple.com/streaming/) on the Apple Developer site (https://developer.apple.com). If an error is thrown after invoking a Kinesis Video Streams archived media API, in addition to the HTTP status code and the response body, it includes the following pieces of information: =over =item * C HTTP header E contains a more specific error type in addition to what the HTTP status code provides. =item * C HTTP header E if you want to report an issue to AWS, the support team can better diagnose the problem if given the Request Id. =back Both the HTTP status code and the ErrorType header can be utilized to make programmatic decisions about whether errors are retry-able and under what conditions, as well as provide information on what actions the client programmer might need to take in order to successfully try again. For more information, see the B section at the bottom of this topic, as well as Common Errors (https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/CommonErrors.html). =head2 GetMediaForFragmentList =over =item Fragments => ArrayRef[Str|Undef] =item [StreamARN => Str] =item [StreamName => Str] =back Each argument is described in detail in: L Returns: a L instance Gets media for a list of fragments (specified by fragment number) from the archived data in an Amazon Kinesis video stream. You must first call the C API to get an endpoint. Then send the C requests to this endpoint using the --endpoint-url parameter (https://docs.aws.amazon.com/cli/latest/reference/). For limits, see Kinesis Video Streams Limits (http://docs.aws.amazon.com/kinesisvideostreams/latest/dg/limits.html). If an error is thrown after invoking a Kinesis Video Streams archived media API, in addition to the HTTP status code and the response body, it includes the following pieces of information: =over =item * C HTTP header E contains a more specific error type in addition to what the HTTP status code provides. =item * C HTTP header E if you want to report an issue to AWS, the support team can better diagnose the problem if given the Request Id. =back Both the HTTP status code and the ErrorType header can be utilized to make programmatic decisions about whether errors are retry-able and under what conditions, as well as provide information on what actions the client programmer might need to take in order to successfully try again. For more information, see the B section at the bottom of this topic, as well as Common Errors (https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/CommonErrors.html). =head2 ListFragments =over =item [FragmentSelector => L] =item [MaxResults => Int] =item [NextToken => Str] =item [StreamARN => Str] =item [StreamName => Str] =back Each argument is described in detail in: L Returns: a L instance Returns a list of Fragment objects from the specified stream and timestamp range within the archived data. Listing fragments is eventually consistent. This means that even if the producer receives an acknowledgment that a fragment is persisted, the result might not be returned immediately from a request to C. However, results are typically available in less than one second. You must first call the C API to get an endpoint. Then send the C requests to this endpoint using the --endpoint-url parameter (https://docs.aws.amazon.com/cli/latest/reference/). If an error is thrown after invoking a Kinesis Video Streams archived media API, in addition to the HTTP status code and the response body, it includes the following pieces of information: =over =item * C HTTP header E contains a more specific error type in addition to what the HTTP status code provides. =item * C HTTP header E if you want to report an issue to AWS, the support team can better diagnose the problem if given the Request Id. =back Both the HTTP status code and the ErrorType header can be utilized to make programmatic decisions about whether errors are retry-able and under what conditions, as well as provide information on what actions the client programmer might need to take in order to successfully try again. For more information, see the B section at the bottom of this topic, as well as Common Errors (https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/CommonErrors.html). =head1 PAGINATORS Paginator methods are helpers that repetively call methods that return partial results =head2 ListAllFragments(sub { },[FragmentSelector => L, MaxResults => Int, NextToken => Str, StreamARN => Str, StreamName => Str]) =head2 ListAllFragments([FragmentSelector => L, MaxResults => Int, NextToken => Str, StreamARN => Str, StreamName => Str]) If passed a sub as first parameter, it will call the sub for each element found in : - Fragments, passing the object as the first parameter, and the string 'Fragments' as the second parameter If not, it will return a a L instance with all the Cs; from all the responses. Please take into account that this mode can potentially consume vasts ammounts of memory. =head1 SEE ALSO This service class forms part of L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut