aws-sdk-kinesisvideoarchivedmedia 1.18.0 → 1.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de6aec3d0922d6ecae4b266b3ca169fb15fb26e0
4
- data.tar.gz: f3c3c5fd5dbe1f9efa7c25f19798b71e88fe40c2
3
+ metadata.gz: 2c63f8222ba081bf804fcf84b7d3ec9c9cda98a9
4
+ data.tar.gz: b6041842d2005028573c9d1e78609fcd604ba80d
5
5
  SHA512:
6
- metadata.gz: 18fbcbd2b41297dd2e8e8cb4088bcaa6cfe1de3ff5ab1d920812b27fb04e2977d33cc9540cca869e9aed0f4ce5a405b7df8eac3ef241aeb8a1e19e07432325b2
7
- data.tar.gz: 3a05620af6aeff3fe5873e6a8e85d7e1d0fbf279b4e8991725ef35e5fd1b1c49a7f6ec80abaa9a8b9fe1def319d50b6e58ce765743d01b9a2bbd5dbf21966b4a
6
+ metadata.gz: cfffcf4f8beafff1a36a07d6e6ddb428bea95508e6bb7175674d274e9ab3cf9072f44a94b8c99b21a72f3d0f2328c756b111939eb3f7fb7ad8f40dd38e70cab6
7
+ data.tar.gz: 1beac9db327d3cf993bfba4d66645b69c4e0534b393aed67589cbda55f3a3def6c00830dee2b6342c2e7ba25e3509276c897d84fceb4757d092a5d4c93a9a419
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-kinesisvideoarchivedmedia/customizations'
42
42
  # @service
43
43
  module Aws::KinesisVideoArchivedMedia
44
44
 
45
- GEM_VERSION = '1.18.0'
45
+ GEM_VERSION = '1.19.0'
46
46
 
47
47
  end
@@ -266,9 +266,9 @@ module Aws::KinesisVideoArchivedMedia
266
266
  # providing data through MPEG-DASH:
267
267
  #
268
268
  # * The media must contain h.264 or h.265 encoded video and, optionally,
269
- # AAC or G.711 encoded audio. Specifically, the codec id of track 1
269
+ # AAC or G.711 encoded audio. Specifically, the codec ID of track 1
270
270
  # should be `V_MPEG/ISO/AVC` (for h.264) or V\_MPEGH/ISO/HEVC (for
271
- # H.265). Optionally, the codec id of track 2 should be `A_AAC` (for
271
+ # H.265). Optionally, the codec ID of track 2 should be `A_AAC` (for
272
272
  # AAC) or A\_MS/ACM (for G.711).
273
273
  #
274
274
  # * Data retention must be greater than 0.
@@ -311,7 +311,7 @@ module Aws::KinesisVideoArchivedMedia
311
311
  #
312
312
  # 3. Provide the URL (containing the encrypted session token) for the
313
313
  # MPEG-DASH manifest to a media player that supports the MPEG-DASH
314
- # protocol. Kinesis Video Streams makes the initialization fragment,
314
+ # protocol. Kinesis Video Streams makes the initialization fragment
315
315
  # and media fragments available through the manifest URL. The
316
316
  # initialization fragment contains the codec private data for the
317
317
  # stream, and other data needed to set up the video or audio decoder
@@ -522,7 +522,7 @@ module Aws::KinesisVideoArchivedMedia
522
522
  # The default value is `NEVER`.
523
523
  #
524
524
  # @option params [Types::DASHFragmentSelector] :dash_fragment_selector
525
- # The time range of the requested fragment, and the source of the
525
+ # The time range of the requested fragment and the source of the
526
526
  # timestamps.
527
527
  #
528
528
  # This parameter is required if `PlaybackMode` is `ON_DEMAND` or
@@ -613,9 +613,9 @@ module Aws::KinesisVideoArchivedMedia
613
613
  # providing data through HLS:
614
614
  #
615
615
  # * The media must contain h.264 or h.265 encoded video and, optionally,
616
- # AAC encoded audio. Specifically, the codec id of track 1 should be
616
+ # AAC encoded audio. Specifically, the codec ID of track 1 should be
617
617
  # `V_MPEG/ISO/AVC` (for h.264) or `V_MPEG/ISO/HEVC` (for h.265).
618
- # Optionally, the codec id of track 2 should be `A_AAC`.
618
+ # Optionally, the codec ID of track 2 should be `A_AAC`.
619
619
  #
620
620
  # * Data retention must be greater than 0.
621
621
  #
@@ -871,7 +871,7 @@ module Aws::KinesisVideoArchivedMedia
871
871
  # The default is `LIVE`.
872
872
  #
873
873
  # @option params [Types::HLSFragmentSelector] :hls_fragment_selector
874
- # The time range of the requested fragment, and the source of the
874
+ # The time range of the requested fragment and the source of the
875
875
  # timestamps.
876
876
  #
877
877
  # This parameter is required if `PlaybackMode` is `ON_DEMAND` or
@@ -896,23 +896,40 @@ module Aws::KinesisVideoArchivedMedia
896
896
  # The default is `FRAGMENTED_MP4`.
897
897
  #
898
898
  # @option params [String] :discontinuity_mode
899
- # Specifies when flags marking discontinuities between fragments will be
900
- # added to the media playlists. The default is `ALWAYS` when
901
- # HLSFragmentSelector is `SERVER_TIMESTAMP`, and `NEVER` when it is
902
- # `PRODUCER_TIMESTAMP`.
899
+ # Specifies when flags marking discontinuities between fragments are
900
+ # added to the media playlists.
903
901
  #
904
902
  # Media players typically build a timeline of media content to play,
905
903
  # based on the timestamps of each fragment. This means that if there is
906
- # any overlap between fragments (as is typical if HLSFragmentSelector is
907
- # `SERVER_TIMESTAMP`), the media player timeline has small gaps between
908
- # fragments in some places, and overwrites frames in other places. When
909
- # there are discontinuity flags between fragments, the media player is
910
- # expected to reset the timeline, resulting in the fragment being played
911
- # immediately after the previous fragment. We recommend that you always
912
- # have discontinuity flags between fragments if the fragment timestamps
913
- # are not accurate or if fragments might be missing. You should not
914
- # place discontinuity flags between fragments for the player timeline to
915
- # accurately map to the producer timestamps.
904
+ # any overlap or gap between fragments (as is typical if
905
+ # HLSFragmentSelector is set to `SERVER_TIMESTAMP`), the media player
906
+ # timeline will also have small gaps between fragments in some places,
907
+ # and will overwrite frames in other places. Gaps in the media player
908
+ # timeline can cause playback to stall and overlaps can cause playback
909
+ # to be jittery. When there are discontinuity flags between fragments,
910
+ # the media player is expected to reset the timeline, resulting in the
911
+ # next fragment being played immediately after the previous fragment.
912
+ #
913
+ # The following modes are supported:
914
+ #
915
+ # * `ALWAYS`\: a discontinuity marker is placed between every fragment
916
+ # in the HLS media playlist. It is recommended to use a value of
917
+ # `ALWAYS` if the fragment timestamps are not accurate.
918
+ #
919
+ # * `NEVER`\: no discontinuity markers are placed anywhere. It is
920
+ # recommended to use a value of `NEVER` to ensure the media player
921
+ # timeline most accurately maps to the producer timestamps.
922
+ #
923
+ # * `ON_DISCONTIUNITY`\: a discontinuity marker is placed between
924
+ # fragments that have a gap or overlap of more than 50 milliseconds.
925
+ # For most playback scenarios, it is recommended to use a value of
926
+ # `ON_DISCONTINUITY` so that the media player timeline is only reset
927
+ # when there is a significant issue with the media timeline (e.g. a
928
+ # missing fragment).
929
+ #
930
+ # The default is `ALWAYS` when HLSFragmentSelector is set to
931
+ # `SERVER_TIMESTAMP`, and `NEVER` when it is set to
932
+ # `PRODUCER_TIMESTAMP`.
916
933
  #
917
934
  # @option params [String] :display_fragment_timestamp
918
935
  # Specifies when the fragment start timestamps should be included in the
@@ -980,7 +997,7 @@ module Aws::KinesisVideoArchivedMedia
980
997
  # },
981
998
  # },
982
999
  # container_format: "FRAGMENTED_MP4", # accepts FRAGMENTED_MP4, MPEG_TS
983
- # discontinuity_mode: "ALWAYS", # accepts ALWAYS, NEVER
1000
+ # discontinuity_mode: "ALWAYS", # accepts ALWAYS, NEVER, ON_DISCONTINUITY
984
1001
  # display_fragment_timestamp: "ALWAYS", # accepts ALWAYS, NEVER
985
1002
  # expires: 1,
986
1003
  # max_media_playlist_fragment_results: 1,
@@ -1187,7 +1204,7 @@ module Aws::KinesisVideoArchivedMedia
1187
1204
  params: params,
1188
1205
  config: config)
1189
1206
  context[:gem_name] = 'aws-sdk-kinesisvideoarchivedmedia'
1190
- context[:gem_version] = '1.18.0'
1207
+ context[:gem_version] = '1.19.0'
1191
1208
  Seahorse::Client::Request.new(handlers, context)
1192
1209
  end
1193
1210
 
@@ -355,7 +355,7 @@ module Aws::KinesisVideoArchivedMedia
355
355
  # @return [String]
356
356
  #
357
357
  # @!attribute [rw] dash_fragment_selector
358
- # The time range of the requested fragment, and the source of the
358
+ # The time range of the requested fragment and the source of the
359
359
  # timestamps.
360
360
  #
361
361
  # This parameter is required if `PlaybackMode` is `ON_DEMAND` or
@@ -442,7 +442,7 @@ module Aws::KinesisVideoArchivedMedia
442
442
  # },
443
443
  # },
444
444
  # container_format: "FRAGMENTED_MP4", # accepts FRAGMENTED_MP4, MPEG_TS
445
- # discontinuity_mode: "ALWAYS", # accepts ALWAYS, NEVER
445
+ # discontinuity_mode: "ALWAYS", # accepts ALWAYS, NEVER, ON_DISCONTINUITY
446
446
  # display_fragment_timestamp: "ALWAYS", # accepts ALWAYS, NEVER
447
447
  # expires: 1,
448
448
  # max_media_playlist_fragment_results: 1,
@@ -523,7 +523,7 @@ module Aws::KinesisVideoArchivedMedia
523
523
  # @return [String]
524
524
  #
525
525
  # @!attribute [rw] hls_fragment_selector
526
- # The time range of the requested fragment, and the source of the
526
+ # The time range of the requested fragment and the source of the
527
527
  # timestamps.
528
528
  #
529
529
  # This parameter is required if `PlaybackMode` is `ON_DEMAND` or
@@ -550,24 +550,40 @@ module Aws::KinesisVideoArchivedMedia
550
550
  # @return [String]
551
551
  #
552
552
  # @!attribute [rw] discontinuity_mode
553
- # Specifies when flags marking discontinuities between fragments will
554
- # be added to the media playlists. The default is `ALWAYS` when
555
- # HLSFragmentSelector is `SERVER_TIMESTAMP`, and `NEVER` when it is
556
- # `PRODUCER_TIMESTAMP`.
553
+ # Specifies when flags marking discontinuities between fragments are
554
+ # added to the media playlists.
557
555
  #
558
556
  # Media players typically build a timeline of media content to play,
559
557
  # based on the timestamps of each fragment. This means that if there
560
- # is any overlap between fragments (as is typical if
561
- # HLSFragmentSelector is `SERVER_TIMESTAMP`), the media player
562
- # timeline has small gaps between fragments in some places, and
563
- # overwrites frames in other places. When there are discontinuity
564
- # flags between fragments, the media player is expected to reset the
565
- # timeline, resulting in the fragment being played immediately after
566
- # the previous fragment. We recommend that you always have
567
- # discontinuity flags between fragments if the fragment timestamps are
568
- # not accurate or if fragments might be missing. You should not place
569
- # discontinuity flags between fragments for the player timeline to
570
- # accurately map to the producer timestamps.
558
+ # is any overlap or gap between fragments (as is typical if
559
+ # HLSFragmentSelector is set to `SERVER_TIMESTAMP`), the media player
560
+ # timeline will also have small gaps between fragments in some places,
561
+ # and will overwrite frames in other places. Gaps in the media player
562
+ # timeline can cause playback to stall and overlaps can cause playback
563
+ # to be jittery. When there are discontinuity flags between fragments,
564
+ # the media player is expected to reset the timeline, resulting in the
565
+ # next fragment being played immediately after the previous fragment.
566
+ #
567
+ # The following modes are supported:
568
+ #
569
+ # * `ALWAYS`\: a discontinuity marker is placed between every fragment
570
+ # in the HLS media playlist. It is recommended to use a value of
571
+ # `ALWAYS` if the fragment timestamps are not accurate.
572
+ #
573
+ # * `NEVER`\: no discontinuity markers are placed anywhere. It is
574
+ # recommended to use a value of `NEVER` to ensure the media player
575
+ # timeline most accurately maps to the producer timestamps.
576
+ #
577
+ # * `ON_DISCONTIUNITY`\: a discontinuity marker is placed between
578
+ # fragments that have a gap or overlap of more than 50 milliseconds.
579
+ # For most playback scenarios, it is recommended to use a value of
580
+ # `ON_DISCONTINUITY` so that the media player timeline is only reset
581
+ # when there is a significant issue with the media timeline (e.g. a
582
+ # missing fragment).
583
+ #
584
+ # The default is `ALWAYS` when HLSFragmentSelector is set to
585
+ # `SERVER_TIMESTAMP`, and `NEVER` when it is set to
586
+ # `PRODUCER_TIMESTAMP`.
571
587
  # @return [String]
572
588
  #
573
589
  # @!attribute [rw] display_fragment_timestamp
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kinesisvideoarchivedmedia
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-25 00:00:00.000000000 Z
11
+ date: 2019-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core