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=None, limit=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, stream_info, **kwargs)[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, stream_id, **kwargs)[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, stream_id, **kwargs)[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, query_params=None, **kwargs)[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