Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Class to specify drm configurations of CommonEncryptionCbcs scheme in
* Class to specify DRM configurations of CommonEncryptionCbcs scheme in
* Streaming Policy.
*/
public class CbcsDrmConfiguration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* Class to specify drm configurations of CommonEncryptionCenc scheme in
* Class to specify DRM configurations of CommonEncryptionCenc scheme in
* Streaming Policy.
*/
public class CencDrmConfiguration {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class CommonEncryptionCbcs {
private StreamingPolicyContentKeys contentKeys;

/**
* Configuration of DRMs for current encryption scheme.
* Configuration of DRM for current encryption scheme.
*/
@JsonProperty(value = "drm")
private CbcsDrmConfiguration drm;
Expand Down Expand Up @@ -101,7 +101,7 @@ public CommonEncryptionCbcs withContentKeys(StreamingPolicyContentKeys contentKe
}

/**
* Get configuration of DRMs for current encryption scheme.
* Get configuration of DRM for current encryption scheme.
*
* @return the drm value
*/
Expand All @@ -110,7 +110,7 @@ public CbcsDrmConfiguration drm() {
}

/**
* Set configuration of DRMs for current encryption scheme.
* Set configuration of DRM for current encryption scheme.
*
* @param drm the drm value to set
* @return the CommonEncryptionCbcs object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class CommonEncryptionCenc {
private StreamingPolicyContentKeys contentKeys;

/**
* Configuration of DRMs for CommonEncryptionCenc encryption scheme.
* Configuration of DRM for CommonEncryptionCenc encryption scheme.
*/
@JsonProperty(value = "drm")
private CencDrmConfiguration drm;
Expand Down Expand Up @@ -101,7 +101,7 @@ public CommonEncryptionCenc withContentKeys(StreamingPolicyContentKeys contentKe
}

/**
* Get configuration of DRMs for CommonEncryptionCenc encryption scheme.
* Get configuration of DRM for CommonEncryptionCenc encryption scheme.
*
* @return the drm value
*/
Expand All @@ -110,7 +110,7 @@ public CencDrmConfiguration drm() {
}

/**
* Set configuration of DRMs for CommonEncryptionCenc encryption scheme.
* Set configuration of DRM for CommonEncryptionCenc encryption scheme.
*
* @param drm the drm value to set
* @return the CommonEncryptionCenc object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ public enum EncoderNamedPreset {
/** Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. Auto-generates a bitrate ladder based on the input resolution and bitrate. The auto-generated preset will never exceed the input resolution and bitrate. For example, if the input is 720p at 3 Mbps, output will remain 720p at best, and will start at rates lower than 3 Mbps. The output will have video and audio in separate MP4 files, which is optimal for adaptive streaming. */
ADAPTIVE_STREAMING("AdaptiveStreaming"),

/** Produces a single MP4 file containing only stereo audio encoded at 192 kbps. */
/** Produces a single MP4 file containing only stereo audio encoded at 192 Kbps. */
AACGOOD_QUALITY_AUDIO("AACGoodQualityAudio"),

/** Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 kbps to 400 kbps, and stereo AAC audio. Resolution starts at 1080p and goes down to 360p. */
/** Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 1080p and goes down to 360p. */
H264MULTIPLE_BITRATE1080P("H264MultipleBitrate1080p"),

/** Produces a set of 6 GOP-aligned MP4 files, ranging from 3400 kbps to 400 kbps, and stereo AAC audio. Resolution starts at 720p and goes down to 360p. */
/** Produces a set of 6 GOP-aligned MP4 files, ranging from 3400 Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 720p and goes down to 360p. */
H264MULTIPLE_BITRATE720P("H264MultipleBitrate720p"),

/** Produces a set of 5 GOP-aligned MP4 files, ranging from 1600kbps to 400 kbps, and stereo AAC audio. Resolution starts at 480p and goes down to 360p. */
/** Produces a set of 5 GOP-aligned MP4 files, ranging from 1600Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 480p and goes down to 360p. */
H264MULTIPLE_BITRATE_SD("H264MultipleBitrateSD");

/** The actual serialized value for a EncoderNamedPreset instance. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* The parameters to the list SAS requet.
* The parameters to the list SAS request.
*/
public class ListContainerSasInput {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public Observable<ServiceResponse<Page<AssetInner>>> call(Response<ResponseBody>
* @param accountName The Media Services account name.
* @param filter Restricts the set of items returned.
* @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
* @param orderby Specifies the the key by which the result collection should be ordered.
* @param orderby Specifies the key by which the result collection should be ordered.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws ApiErrorException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
Expand All @@ -254,7 +254,7 @@ public Page<AssetInner> nextPage(String nextPageLink) {
* @param accountName The Media Services account name.
* @param filter Restricts the set of items returned.
* @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
* @param orderby Specifies the the key by which the result collection should be ordered.
* @param orderby Specifies the key by which the result collection should be ordered.
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
Expand All @@ -279,7 +279,7 @@ public Observable<ServiceResponse<Page<AssetInner>>> call(String nextPageLink) {
* @param accountName The Media Services account name.
* @param filter Restricts the set of items returned.
* @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
* @param orderby Specifies the the key by which the result collection should be ordered.
* @param orderby Specifies the key by which the result collection should be ordered.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;AssetInner&gt; object
*/
Expand All @@ -301,7 +301,7 @@ public Page<AssetInner> call(ServiceResponse<Page<AssetInner>> response) {
* @param accountName The Media Services account name.
* @param filter Restricts the set of items returned.
* @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
* @param orderby Specifies the the key by which the result collection should be ordered.
* @param orderby Specifies the key by which the result collection should be ordered.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;AssetInner&gt; object
*/
Expand All @@ -327,7 +327,7 @@ public Observable<ServiceResponse<Page<AssetInner>>> call(ServiceResponse<Page<A
ServiceResponse<PageImpl<AssetInner>> * @param accountName The Media Services account name.
ServiceResponse<PageImpl<AssetInner>> * @param filter Restricts the set of items returned.
ServiceResponse<PageImpl<AssetInner>> * @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
ServiceResponse<PageImpl<AssetInner>> * @param orderby Specifies the the key by which the result collection should be ordered.
ServiceResponse<PageImpl<AssetInner>> * @param orderby Specifies the key by which the result collection should be ordered.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;AssetInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public Observable<ServiceResponse<Page<ContentKeyPolicyInner>>> call(Response<Re
* @param accountName The Media Services account name.
* @param filter Restricts the set of items returned.
* @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
* @param orderby Specifies the the key by which the result collection should be ordered.
* @param orderby Specifies the key by which the result collection should be ordered.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @throws ApiErrorException thrown if the request is rejected by server
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent
Expand All @@ -249,7 +249,7 @@ public Page<ContentKeyPolicyInner> nextPage(String nextPageLink) {
* @param accountName The Media Services account name.
* @param filter Restricts the set of items returned.
* @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
* @param orderby Specifies the the key by which the result collection should be ordered.
* @param orderby Specifies the key by which the result collection should be ordered.
* @param serviceCallback the async ServiceCallback to handle successful and failed responses.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the {@link ServiceFuture} object
Expand All @@ -274,7 +274,7 @@ public Observable<ServiceResponse<Page<ContentKeyPolicyInner>>> call(String next
* @param accountName The Media Services account name.
* @param filter Restricts the set of items returned.
* @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
* @param orderby Specifies the the key by which the result collection should be ordered.
* @param orderby Specifies the key by which the result collection should be ordered.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;ContentKeyPolicyInner&gt; object
*/
Expand All @@ -296,7 +296,7 @@ public Page<ContentKeyPolicyInner> call(ServiceResponse<Page<ContentKeyPolicyInn
* @param accountName The Media Services account name.
* @param filter Restricts the set of items returned.
* @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
* @param orderby Specifies the the key by which the result collection should be ordered.
* @param orderby Specifies the key by which the result collection should be ordered.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable to the PagedList&lt;ContentKeyPolicyInner&gt; object
*/
Expand All @@ -322,7 +322,7 @@ public Observable<ServiceResponse<Page<ContentKeyPolicyInner>>> call(ServiceResp
ServiceResponse<PageImpl<ContentKeyPolicyInner>> * @param accountName The Media Services account name.
ServiceResponse<PageImpl<ContentKeyPolicyInner>> * @param filter Restricts the set of items returned.
ServiceResponse<PageImpl<ContentKeyPolicyInner>> * @param top Specifies a non-negative integer n that limits the number of items returned from a collection. The service returns the number of available items up to but not greater than the specified value n.
ServiceResponse<PageImpl<ContentKeyPolicyInner>> * @param orderby Specifies the the key by which the result collection should be ordered.
ServiceResponse<PageImpl<ContentKeyPolicyInner>> * @param orderby Specifies the key by which the result collection should be ordered.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the PagedList&lt;ContentKeyPolicyInner&gt; object wrapped in {@link ServiceResponse} if successful.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class CommonEncryptionCbcs {
private StreamingPolicyContentKeys contentKeys;

/**
* Configuration of DRMs for current encryption scheme.
* Configuration of DRM for current encryption scheme.
*/
@JsonProperty(value = "drm")
private CbcsDrmConfiguration drm;
Expand Down Expand Up @@ -101,7 +101,7 @@ public CommonEncryptionCbcs withContentKeys(StreamingPolicyContentKeys contentKe
}

/**
* Get configuration of DRMs for current encryption scheme.
* Get configuration of DRM for current encryption scheme.
*
* @return the drm value
*/
Expand All @@ -110,7 +110,7 @@ public CbcsDrmConfiguration drm() {
}

/**
* Set configuration of DRMs for current encryption scheme.
* Set configuration of DRM for current encryption scheme.
*
* @param drm the drm value to set
* @return the CommonEncryptionCbcs object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class CommonEncryptionCenc {
private StreamingPolicyContentKeys contentKeys;

/**
* Configuration of DRMs for CommonEncryptionCenc encryption scheme.
* Configuration of DRM for CommonEncryptionCenc encryption scheme.
*/
@JsonProperty(value = "drm")
private CencDrmConfiguration drm;
Expand Down Expand Up @@ -101,7 +101,7 @@ public CommonEncryptionCenc withContentKeys(StreamingPolicyContentKeys contentKe
}

/**
* Get configuration of DRMs for CommonEncryptionCenc encryption scheme.
* Get configuration of DRM for CommonEncryptionCenc encryption scheme.
*
* @return the drm value
*/
Expand All @@ -110,7 +110,7 @@ public CencDrmConfiguration drm() {
}

/**
* Set configuration of DRMs for CommonEncryptionCenc encryption scheme.
* Set configuration of DRM for CommonEncryptionCenc encryption scheme.
*
* @param drm the drm value to set
* @return the CommonEncryptionCenc object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ public enum EncoderNamedPreset {
/** Produces a set of GOP aligned MP4 files with H.264 video and stereo AAC audio. Auto-generates a bitrate ladder based on the input resolution and bitrate. The auto-generated preset will never exceed the input resolution and bitrate. For example, if the input is 720p at 3 Mbps, output will remain 720p at best, and will start at rates lower than 3 Mbps. The output will have video and audio in separate MP4 files, which is optimal for adaptive streaming. */
ADAPTIVE_STREAMING("AdaptiveStreaming"),

/** Produces a single MP4 file containing only stereo audio encoded at 192 kbps. */
/** Produces a single MP4 file containing only stereo audio encoded at 192 Kbps. */
AACGOOD_QUALITY_AUDIO("AACGoodQualityAudio"),

/** Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 kbps to 400 kbps, and stereo AAC audio. Resolution starts at 1080p and goes down to 360p. */
/** Produces a set of 8 GOP-aligned MP4 files, ranging from 6000 Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 1080p and goes down to 360p. */
H264MULTIPLE_BITRATE1080P("H264MultipleBitrate1080p"),

/** Produces a set of 6 GOP-aligned MP4 files, ranging from 3400 kbps to 400 kbps, and stereo AAC audio. Resolution starts at 720p and goes down to 360p. */
/** Produces a set of 6 GOP-aligned MP4 files, ranging from 3400 Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 720p and goes down to 360p. */
H264MULTIPLE_BITRATE720P("H264MultipleBitrate720p"),

/** Produces a set of 5 GOP-aligned MP4 files, ranging from 1600kbps to 400 kbps, and stereo AAC audio. Resolution starts at 480p and goes down to 360p. */
/** Produces a set of 5 GOP-aligned MP4 files, ranging from 1600Kbps to 400 Kbps, and stereo AAC audio. Resolution starts at 480p and goes down to 360p. */
H264MULTIPLE_BITRATE_SD("H264MultipleBitrateSD");

/** The actual serialized value for a EncoderNamedPreset instance. */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* The parameters to the list SAS requet.
* The parameters to the list SAS request.
*/
public class ListContainerSasInput {
/**
Expand Down
Loading