Class CmafApi
Inheritance
System.Object
CmafApi
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.Cmaf
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class CmafApi
Constructors
CmafApi(IBitmovinApiClientFactory)
Declaration
public CmafApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type | Name | Description |
---|---|---|
IBitmovinApiClientFactory | apiClientFactory |
Properties
Builder
Fluent builder for creating an instance of CmafApi
Declaration
public static BitmovinApiBuilder<CmafApi> Builder { get; }
Property Value
Type | Description |
---|---|
BitmovinApiBuilder<CmafApi> |
Customdata
Declaration
public CustomdataApi Customdata { get; }
Property Value
Type | Description |
---|---|
CustomdataApi |
Methods
CreateAsync(String, CmafMuxing)
Add CMAF muxing
Declaration
public Task<CmafMuxing> CreateAsync(string encodingId, CmafMuxing cmafMuxing)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | Id of the encoding. (required) |
CmafMuxing | cmafMuxing | The CMAF muxing to be created |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<CmafMuxing> |
DeleteAsync(String, String)
Delete CMAF muxing
Declaration
public Task<BitmovinResponse> DeleteAsync(string encodingId, string muxingId)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | Id of the encoding. (required) |
System.String | muxingId | Id of the CMAF muxing (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<BitmovinResponse> |
GetAsync(String, String)
CMAF muxing details
Declaration
public Task<CmafMuxing> GetAsync(string encodingId, string muxingId)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | Id of the encoding. (required) |
System.String | muxingId | Id of the CMAF muxing (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<CmafMuxing> |
ListAsync(String, Func<CmafApi.ListQueryParams, CmafApi.ListQueryParams>[])
List CMAF muxings
Declaration
public Task<PaginationResponse<CmafMuxing>> ListAsync(string encodingId, params Func<CmafApi.ListQueryParams, CmafApi.ListQueryParams>[] queryParams)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | Id of the encoding. (required) |
System.Func<CmafApi.ListQueryParams, CmafApi.ListQueryParams>[] | queryParams | The query parameters for sorting, filtering and paging options (optional) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<PaginationResponse<CmafMuxing>> |