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