Source code for bitmovin_api_sdk.encoding.encodings.streams.captions.cea.srt.srt_api

# coding: utf-8

from __future__ import absolute_import

from bitmovin_api_sdk.common import BaseApi, BitmovinApiLoggerBase
from bitmovin_api_sdk.common.poscheck import poscheck_except
from bitmovin_api_sdk.models.bitmovin_response import BitmovinResponse
from bitmovin_api_sdk.models.response_envelope import ResponseEnvelope
from bitmovin_api_sdk.models.response_error import ResponseError
from bitmovin_api_sdk.models.srt_to_cea608708_caption import SrtToCea608708Caption
from bitmovin_api_sdk.encoding.encodings.streams.captions.cea.srt.customdata.customdata_api import CustomdataApi
from bitmovin_api_sdk.encoding.encodings.streams.captions.cea.srt.srt_to_cea608708_caption_list_query_params import SrtToCea608708CaptionListQueryParams


[docs]class SrtApi(BaseApi): @poscheck_except(2) def __init__(self, api_key, tenant_org_id=None, base_url=None, logger=None): # type: (str, str, str, BitmovinApiLoggerBase) -> None super(SrtApi, self).__init__( api_key=api_key, tenant_org_id=tenant_org_id, base_url=base_url, logger=logger ) self.customdata = CustomdataApi( api_key=api_key, tenant_org_id=tenant_org_id, base_url=base_url, logger=logger )
[docs] def create(self, encoding_id, stream_id, srt_to_cea608708_caption, **kwargs): # type: (string_types, string_types, SrtToCea608708Caption, dict) -> SrtToCea608708Caption """Embed SRT captions as 608/708 into Stream :param encoding_id: Id of the encoding. :type encoding_id: string_types, required :param stream_id: Id of the stream. :type stream_id: string_types, required :param srt_to_cea608708_caption: The SRT captions to be embedded as 607/708 into Stream :type srt_to_cea608708_caption: SrtToCea608708Caption, required :return: Caption resource :rtype: SrtToCea608708Caption """ return self.api_client.post( '/encoding/encodings/{encoding_id}/streams/{stream_id}/captions/608-708/srt', srt_to_cea608708_caption, path_params={'encoding_id': encoding_id, 'stream_id': stream_id}, type=SrtToCea608708Caption, **kwargs )
[docs] def delete(self, encoding_id, stream_id, captions_id, **kwargs): # type: (string_types, string_types, string_types, dict) -> BitmovinResponse """Delete SRT captions as 608/708 from Stream :param encoding_id: Id of the encoding. :type encoding_id: string_types, required :param stream_id: Id of the stream. :type stream_id: string_types, required :param captions_id: Id of the caption. :type captions_id: string_types, required :return: Id of the caption :rtype: BitmovinResponse """ return self.api_client.delete( '/encoding/encodings/{encoding_id}/streams/{stream_id}/captions/608-708/srt/{captions_id}', path_params={'encoding_id': encoding_id, 'stream_id': stream_id, 'captions_id': captions_id}, type=BitmovinResponse, **kwargs )
[docs] def get(self, encoding_id, stream_id, captions_id, **kwargs): # type: (string_types, string_types, string_types, dict) -> SrtToCea608708Caption """Embed SRT captions as 608/708 Details :param encoding_id: Id of the encoding. :type encoding_id: string_types, required :param stream_id: Id of the stream. :type stream_id: string_types, required :param captions_id: Id of the caption. :type captions_id: string_types, required :return: Caption :rtype: SrtToCea608708Caption """ return self.api_client.get( '/encoding/encodings/{encoding_id}/streams/{stream_id}/captions/608-708/srt/{captions_id}', path_params={'encoding_id': encoding_id, 'stream_id': stream_id, 'captions_id': captions_id}, type=SrtToCea608708Caption, **kwargs )
[docs] def list(self, encoding_id, stream_id, query_params=None, **kwargs): # type: (string_types, string_types, SrtToCea608708CaptionListQueryParams, dict) -> SrtToCea608708Caption """List SRT captions as 608/708 from Stream :param encoding_id: Id of the encoding. :type encoding_id: string_types, required :param stream_id: Id of the stream. :type stream_id: string_types, required :param query_params: Query parameters :type query_params: SrtToCea608708CaptionListQueryParams :return: List of caption configurations :rtype: SrtToCea608708Caption """ return self.api_client.get( '/encoding/encodings/{encoding_id}/streams/{stream_id}/captions/608-708/srt', path_params={'encoding_id': encoding_id, 'stream_id': stream_id}, query_params=query_params, pagination_response=True, type=SrtToCea608708Caption, **kwargs )