Show / Hide Table of Contents

Class SpekeApi

Inheritance
System.Object
SpekeApi
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Encoding.Encodings.Muxings.Mp4.Drm.Speke
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class SpekeApi

Constructors

SpekeApi(IBitmovinApiClientFactory)

Declaration
public SpekeApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type Name Description
IBitmovinApiClientFactory apiClientFactory

Properties

Builder

Fluent builder for creating an instance of SpekeApi

Declaration
public static BitmovinApiBuilder<SpekeApi> Builder { get; }
Property Value
Type Description
BitmovinApiBuilder<SpekeApi>

Customdata

Declaration
public CustomdataApi Customdata { get; }
Property Value
Type Description
CustomdataApi

Methods

CreateAsync(String, String, SpekeDrm)

Add SPEKE DRM key provider to an MP4 muxing

Declaration
public Task<SpekeDrm> CreateAsync(string encodingId, string muxingId, SpekeDrm spekeDrm)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String muxingId

Id of the MP4 muxing (required)

SpekeDrm spekeDrm

The SPEKE DRM key provider to be created

Returns
Type Description
System.Threading.Tasks.Task<SpekeDrm>

DeleteAsync(String, String, String)

Delete SPEKE DRM from an MP4 muxing

Declaration
public Task<BitmovinResponse> DeleteAsync(string encodingId, string muxingId, string drmId)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String muxingId

Id of the MP4 muxing (required)

System.String drmId

Id of the SPEKE DRM. (required)

Returns
Type Description
System.Threading.Tasks.Task<BitmovinResponse>

GetAsync(String, String, String)

SPEKE DRM Details of an MP4 muxing

Declaration
public Task<SpekeDrm> GetAsync(string encodingId, string muxingId, string drmId)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String muxingId

Id of the MP4 muxing (required)

System.String drmId

Id of the SPEKE DRM. (required)

Returns
Type Description
System.Threading.Tasks.Task<SpekeDrm>

ListAsync(String, String, Func<SpekeApi.ListQueryParams, SpekeApi.ListQueryParams>[])

List SPEKE DRM of an MP4 muxing

Declaration
public Task<PaginationResponse<SpekeDrm>> ListAsync(string encodingId, string muxingId, params Func<SpekeApi.ListQueryParams, SpekeApi.ListQueryParams>[] queryParams)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String muxingId

Id of the MP4 muxing (required)

System.Func<SpekeApi.ListQueryParams, SpekeApi.ListQueryParams>[] queryParams

The query parameters for sorting, filtering and paging options (optional)

Returns
Type Description
System.Threading.Tasks.Task<PaginationResponse<SpekeDrm>>
Back to top Generated by DocFX