bitmovin_api_sdk.encoding.encodings.keyframes package

Submodules

bitmovin_api_sdk.encoding.encodings.keyframes.keyframe_list_query_params module

class bitmovin_api_sdk.encoding.encodings.keyframes.keyframe_list_query_params.KeyframeListQueryParams(offset=None, limit=None)[source]

Bases: object

property attribute_map
property openapi_types

bitmovin_api_sdk.encoding.encodings.keyframes.keyframes_api module

class bitmovin_api_sdk.encoding.encodings.keyframes.keyframes_api.KeyframesApi(**kwargs)[source]

Bases: BaseApi

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

Create Keyframes

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

  • keyframe (Keyframe, required) – The Keyframes to be created

Returns:

Keyframe

Return type:

Keyframe

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

Delete Keyframe

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

  • keyframe_id (string_types, required) – Id of the keyframe.

Returns:

Id of the keyframe

Return type:

BitmovinResponse

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

Keyframe Details

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

  • keyframe_id (string_types, required) – Id of the keyframe.

Returns:

Keyframe

Return type:

Keyframe

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

List all Keyframes

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

  • query_params (KeyframeListQueryParams) – Query parameters

Returns:

List of keyframes

Return type:

Keyframe

Module contents