You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Asset.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,8 @@
11
11
|**max_stored_resolution**|**String**| This field is deprecated. Please use `resolution_tier` instead. The maximum resolution that has been stored for the asset. The asset may be delivered at lower resolutions depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. |[optional]|
12
12
|**resolution_tier**|**String**| The resolution tier that the asset was ingested at, affecting billing for ingest & storage. This field also represents the highest resolution tier that the content can be delivered at, however the actual resolution may be lower depending on the device, bandwidth, and exact resolution of the uploaded asset. |[optional]|
13
13
|**max_resolution_tier**|**String**| Max resolution tier can be used to control the maximum `resolution_tier` your asset is encoded, stored, and streamed at. If not set, this defaults to `1080p`. |[optional]|
14
-
|**encoding_tier**|**String**| The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
14
+
|**encoding_tier**|**String**| This field is deprecated. Please use `video_quality` instead. The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
15
+
|**video_quality**|**String**| The video quality controls the cost, quality, and available platform features for the asset. By default the `plus` video quality is used. This field replaces the deprecated `encoding_tier` value. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
15
16
|**max_stored_frame_rate**|**Float**| The maximum frame rate that has been stored for the asset. The asset may be delivered at lower frame rates depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. This field may return -1 if the frame rate of the input cannot be reliably determined. |[optional]|
16
17
|**aspect_ratio**|**String**| The aspect ratio of the asset in the form of `width:height`, for example `16:9`. |[optional]|
17
18
|**playback_ids**|[**Array<PlaybackID>**](PlaybackID.md)| An array of Playback ID objects. Use these to create HLS playback URLs. See [Play your videos](https://docs.mux.com/guides/play-your-videos) for more details. |[optional]|
Copy file name to clipboardExpand all lines: docs/CreateAssetRequest.md
+4-2
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,8 @@
14
14
|**master_access**|**String**| Specify what level (if any) of support for master access. Master access can be enabled temporarily for your asset to be downloaded. See the [Download your videos guide](https://docs.mux.com/guides/enable-static-mp4-renditions) for more information. |[optional]|
15
15
|**test**|**Boolean**| Marks the asset as a test asset when the value is set to true. A Test asset can help evaluate the Mux Video APIs without incurring any cost. There is no limit on number of test assets created. Test asset are watermarked with the Mux logo, limited to 10 seconds, deleted after 24 hrs. |[optional]|
16
16
|**max_resolution_tier**|**String**| Max resolution tier can be used to control the maximum `resolution_tier` your asset is encoded, stored, and streamed at. If not set, this defaults to `1080p`. |[optional]|
17
-
|**encoding_tier**|**String**| The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
17
+
|**encoding_tier**|**String**| This field is deprecated. Please use `video_quality` instead. The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
18
+
|**video_quality**|**String**| The video quality controls the cost, quality, and available platform features for the asset. By default the `plus` video quality is used. This field replaces the deprecated `encoding_tier` value. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
Copy file name to clipboardExpand all lines: docs/DeliveryReport.md
+3-1
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,8 @@
12
12
|**asset_state**|**String**| The state of the asset. |[optional]|
13
13
|**asset_duration**|**Float**| The duration of the asset in seconds. |[optional]|
14
14
|**asset_resolution_tier**|**String**| The resolution tier that the asset was ingested at, affecting billing for ingest & storage |[optional]|
15
-
|**asset_encoding_tier**|**String**| The encoding tier that the asset was ingested at. [See the encoding tiers guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
15
+
|**asset_encoding_tier**|**String**| This field is deprecated. Please use `asset_video_quality` instead. The encoding tier that the asset was ingested at. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
16
+
|**asset_video_quality**|**String**| The video quality that the asset was ingested at. This field replaces `asset_encoding_tier`. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)|[optional]|
16
17
|**delivered_seconds**|**Float**| Total number of delivered seconds during this time window. |[optional]|
Copy file name to clipboardExpand all lines: lib/mux_ruby/models/asset.rb
+24-2
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,12 @@ class Asset
36
36
# Max resolution tier can be used to control the maximum `resolution_tier` your asset is encoded, stored, and streamed at. If not set, this defaults to `1080p`.
37
37
attr_accessor:max_resolution_tier
38
38
39
-
# The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
39
+
# This field is deprecated. Please use `video_quality` instead. The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
40
40
attr_accessor:encoding_tier
41
41
42
+
# The video quality controls the cost, quality, and available platform features for the asset. By default the `plus` video quality is used. This field replaces the deprecated `encoding_tier` value. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
43
+
attr_accessor:video_quality
44
+
42
45
# The maximum frame rate that has been stored for the asset. The asset may be delivered at lower frame rates depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. This field may return -1 if the frame rate of the input cannot be reliably determined.
Copy file name to clipboardExpand all lines: lib/mux_ruby/models/create_asset_request.rb
+27-5
Original file line number
Diff line number
Diff line change
@@ -44,9 +44,12 @@ class CreateAssetRequest
44
44
# Max resolution tier can be used to control the maximum `resolution_tier` your asset is encoded, stored, and streamed at. If not set, this defaults to `1080p`.
45
45
attr_accessor:max_resolution_tier
46
46
47
-
# The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
47
+
# This field is deprecated. Please use `video_quality` instead. The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
48
48
attr_accessor:encoding_tier
49
49
50
+
# The video quality controls the cost, quality, and available platform features for the asset. By default the `plus` video quality is used. This field replaces the deprecated `encoding_tier` value. [See the video quality guide for more details.](https://docs.mux.com/guides/use-encoding-tiers)
0 commit comments