bitmovin_api_sdk.encoding.encodings.streams package

Subpackages

Submodules

bitmovin_api_sdk.encoding.encodings.streams.stream_list_query_params module

class bitmovin_api_sdk.encoding.encodings.streams.stream_list_query_params.StreamListQueryParams(offset=None, limit=None)[source]

Bases: object

property attribute_map
property openapi_types

bitmovin_api_sdk.encoding.encodings.streams.streams_api module

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

Bases: BaseApi

create(encoding_id, stream, **kwargs)[source]

Add Stream

Parameters:
  • encoding_id (string_types, required) – Id of the encoding.

  • stream (Stream, required) – The Stream to be created

Returns:

Stream

Return type:

Stream

delete(encoding_id, stream_id, **kwargs)[source]

Delete Stream

Parameters:
  • encoding_id (string_types, required) – Id of the encoding.

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

Returns:

Id of the stream

Return type:

BitmovinResponse

get(encoding_id, stream_id, **kwargs)[source]

Stream Details

Parameters:
  • encoding_id (string_types, required) – Id of the encoding.

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

Returns:

Stream

Return type:

Stream

list(encoding_id, query_params=None, **kwargs)[source]

List Streams

Parameters:
  • encoding_id (string_types, required) – Id of the encoding.

  • query_params (StreamListQueryParams) – Query parameters

Returns:

List of streams

Return type:

Stream

Module contents