Class WebmApi
Inheritance
System.Object
WebmApi
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.Manifests.Dash.Periods.Adaptationsets.Representations.Webm
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class WebmApi
Constructors
WebmApi(IBitmovinApiClientFactory)
Declaration
public WebmApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type | Name | Description |
---|---|---|
IBitmovinApiClientFactory | apiClientFactory |
Properties
Builder
Fluent builder for creating an instance of WebmApi
Declaration
public static BitmovinApiBuilder<WebmApi> Builder { get; }
Property Value
Type | Description |
---|---|
BitmovinApiBuilder<WebmApi> |
Contentprotection
Declaration
public ContentprotectionApi Contentprotection { get; }
Property Value
Type | Description |
---|---|
ContentprotectionApi |
Methods
CreateAsync(String, String, String, DashWebmRepresentation)
Add WebM Representation
Declaration
public Task<DashWebmRepresentation> CreateAsync(string manifestId, string periodId, string adaptationsetId, DashWebmRepresentation dashWebmRepresentation)
Parameters
Type | Name | Description |
---|---|---|
System.String | manifestId | Id of the manifest (required) |
System.String | periodId | Id of the period (required) |
System.String | adaptationsetId | Id of the adaptation set (required) |
DashWebmRepresentation | dashWebmRepresentation | The WebM representation to be added to the adaptation set |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<DashWebmRepresentation> |
DeleteAsync(String, String, String, String)
Delete WebM Representation
Declaration
public Task<BitmovinResponse> DeleteAsync(string manifestId, string periodId, string adaptationsetId, string representationId)
Parameters
Type | Name | Description |
---|---|---|
System.String | manifestId | Id of the manifest (required) |
System.String | periodId | Id of the period (required) |
System.String | adaptationsetId | Id of the adaptation set (required) |
System.String | representationId | Id of the WebM representation to be deleted (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<BitmovinResponse> |
GetAsync(String, String, String, String)
WebM Representation Details
Declaration
public Task<DashWebmRepresentation> GetAsync(string manifestId, string periodId, string adaptationsetId, string representationId)
Parameters
Type | Name | Description |
---|---|---|
System.String | manifestId | Id of the manifest (required) |
System.String | periodId | Id of the period (required) |
System.String | adaptationsetId | Id of the adaptation set (required) |
System.String | representationId | Id of the representation (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<DashWebmRepresentation> |
ListAsync(String, String, String, Func<WebmApi.ListQueryParams, WebmApi.ListQueryParams>[])
List all WebM Representations
Declaration
public Task<PaginationResponse<DashWebmRepresentation>> ListAsync(string manifestId, string periodId, string adaptationsetId, params Func<WebmApi.ListQueryParams, WebmApi.ListQueryParams>[] queryParams)
Parameters
Type | Name | Description |
---|---|---|
System.String | manifestId | Id of the manifest (required) |
System.String | periodId | Id of the period (required) |
System.String | adaptationsetId | Id of the adaptation set (required) |
System.Func<WebmApi.ListQueryParams, WebmApi.ListQueryParams>[] | queryParams | The query parameters for sorting, filtering and paging options (optional) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<PaginationResponse<DashWebmRepresentation>> |