bitmovin_api_sdk.encoding.manifests.hls.streams package

Subpackages

Submodules

bitmovin_api_sdk.encoding.manifests.hls.streams.stream_info_list_query_params module

class bitmovin_api_sdk.encoding.manifests.hls.streams.stream_info_list_query_params.StreamInfoListQueryParams(offset: Optional[int] = None, limit: Optional[int] = None)[source]

Bases: object

property attribute_map
property openapi_types

bitmovin_api_sdk.encoding.manifests.hls.streams.streams_api module

class bitmovin_api_sdk.encoding.manifests.hls.streams.streams_api.StreamsApi(**kwargs)[source]

Bases: BaseApi

create(manifest_id: string_types, stream_info: StreamInfo, **kwargs: dict) StreamInfo[source]

Add Variant Stream

Parameters
  • manifest_id (string_types, required) – Id of the hls manifest.

  • stream_info (StreamInfo, required) – The Variant Stream to be added

Returns

Variant stream details

Return type

StreamInfo

delete(manifest_id: string_types, stream_id: string_types, **kwargs: dict) BitmovinResponse[source]

Delete Variant Stream

Parameters
  • manifest_id (string_types, required) – Id of the hls manifest.

  • stream_id (string_types, required) – Id of the variant stream.

Returns

Id of the stream inf

Return type

BitmovinResponse

get(manifest_id: string_types, stream_id: string_types, **kwargs: dict) StreamInfo[source]

Variant Stream Details

Parameters
  • manifest_id (string_types, required) – Id of the hls manifest.

  • stream_id (string_types, required) – Id of the variant stream.

Returns

Variant stream details

Return type

StreamInfo

list(manifest_id: string_types, query_params: StreamInfoListQueryParams = None, **kwargs: dict) StreamInfo[source]

List all Variant Streams

Parameters
  • manifest_id (string_types, required) – Id of the hls manifest.

  • query_params (StreamInfoListQueryParams) – Query parameters

Returns

Variant streams

Return type

StreamInfo

Module contents