Class: Kaltura::KalturaCaptionAssetService
- Inherits:
-
KalturaServiceBase
- Object
- KalturaServiceBase
- Kaltura::KalturaCaptionAssetService
- Defined in:
- lib/kaltura_plugins/kaltura_caption_client_plugin.rb
Overview
Retrieve information and invoke actions on caption Asset
Instance Attribute Summary
Attributes inherited from KalturaServiceBase
Instance Method Summary collapse
-
#add(entry_id, caption_asset) ⇒ KalturaCaptionAsset
Add caption asset.
-
#delete(caption_asset_id) ⇒ Object
[].
- #get(caption_asset_id) ⇒ KalturaCaptionAsset
-
#get_remote_paths(id) ⇒ KalturaRemotePathListResponse
Get remote storage existing paths for the asset.
-
#get_url(id, storage_id = KalturaNotImplemented) ⇒ string
Get download URL for the asset.
-
#initialize(client) ⇒ KalturaCaptionAssetService
constructor
A new instance of KalturaCaptionAssetService.
-
#list(filter = KalturaNotImplemented, pager = KalturaNotImplemented) ⇒ KalturaCaptionAssetListResponse
List caption Assets by filter and pager.
-
#serve(caption_asset_id) ⇒ file
Serves caption by its id.
-
#serve_by_entry_id(entry_id, caption_param_id = KalturaNotImplemented) ⇒ file
Serves caption by entry id and thumnail params id.
-
#serve_web_vtt(caption_asset_id, segment_duration = 30, segment_index = KalturaNotImplemented, local_timestamp = 10000) ⇒ file
Serves caption by its id converting it to segmented WebVTT.
-
#set_as_default(caption_asset_id) ⇒ Object
Markss the caption as default and removes that mark from all other caption assets of the entry.
-
#set_content(id, content_resource) ⇒ KalturaCaptionAsset
Update content of caption asset.
-
#update(id, caption_asset) ⇒ KalturaCaptionAsset
Update caption asset.
Constructor Details
#initialize(client) ⇒ KalturaCaptionAssetService
Returns a new instance of KalturaCaptionAssetService.
374 375 376 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 374 def initialize(client) super(client) end |
Instance Method Details
#add(entry_id, caption_asset) ⇒ KalturaCaptionAsset
Add caption asset
380 381 382 383 384 385 386 387 388 389 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 380 def add(entry_id, caption_asset) kparams = {} client.add_param(kparams, 'entryId', entry_id) client.add_param(kparams, 'captionAsset', caption_asset) client.queue_service_action_call('caption_captionasset', 'add', 'KalturaCaptionAsset', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#delete(caption_asset_id) ⇒ Object
Returns [].
392 393 394 395 396 397 398 399 400 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 392 def delete(caption_asset_id) kparams = {} client.add_param(kparams, 'captionAssetId', caption_asset_id) client.queue_service_action_call('caption_captionasset', 'delete', '', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#get(caption_asset_id) ⇒ KalturaCaptionAsset
403 404 405 406 407 408 409 410 411 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 403 def get(caption_asset_id) kparams = {} client.add_param(kparams, 'captionAssetId', caption_asset_id) client.queue_service_action_call('caption_captionasset', 'get', 'KalturaCaptionAsset', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#get_remote_paths(id) ⇒ KalturaRemotePathListResponse
Get remote storage existing paths for the asset
415 416 417 418 419 420 421 422 423 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 415 def get_remote_paths(id) kparams = {} client.add_param(kparams, 'id', id) client.queue_service_action_call('caption_captionasset', 'getRemotePaths', 'KalturaRemotePathListResponse', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#get_url(id, storage_id = KalturaNotImplemented) ⇒ string
Get download URL for the asset
427 428 429 430 431 432 433 434 435 436 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 427 def get_url(id, storage_id=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'id', id) client.add_param(kparams, 'storageId', storage_id) client.queue_service_action_call('caption_captionasset', 'getUrl', 'string', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#list(filter = KalturaNotImplemented, pager = KalturaNotImplemented) ⇒ KalturaCaptionAssetListResponse
List caption Assets by filter and pager
440 441 442 443 444 445 446 447 448 449 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 440 def list(filter=KalturaNotImplemented, pager=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'filter', filter) client.add_param(kparams, 'pager', pager) client.queue_service_action_call('caption_captionasset', 'list', 'KalturaCaptionAssetListResponse', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#serve(caption_asset_id) ⇒ file
Serves caption by its id
453 454 455 456 457 458 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 453 def serve(caption_asset_id) kparams = {} client.add_param(kparams, 'captionAssetId', caption_asset_id) client.queue_service_action_call('caption_captionasset', 'serve', 'file', kparams) return client.get_serve_url() end |
#serve_by_entry_id(entry_id, caption_param_id = KalturaNotImplemented) ⇒ file
Serves caption by entry id and thumnail params id
462 463 464 465 466 467 468 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 462 def serve_by_entry_id(entry_id, caption_param_id=KalturaNotImplemented) kparams = {} client.add_param(kparams, 'entryId', entry_id) client.add_param(kparams, 'captionParamId', caption_param_id) client.queue_service_action_call('caption_captionasset', 'serveByEntryId', 'file', kparams) return client.get_serve_url() end |
#serve_web_vtt(caption_asset_id, segment_duration = 30, segment_index = KalturaNotImplemented, local_timestamp = 10000) ⇒ file
Serves caption by its id converting it to segmented WebVTT
472 473 474 475 476 477 478 479 480 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 472 def serve_web_vtt(caption_asset_id, segment_duration=30, segment_index=KalturaNotImplemented, =10000) kparams = {} client.add_param(kparams, 'captionAssetId', caption_asset_id) client.add_param(kparams, 'segmentDuration', segment_duration) client.add_param(kparams, 'segmentIndex', segment_index) client.add_param(kparams, 'localTimestamp', ) client.queue_service_action_call('caption_captionasset', 'serveWebVTT', 'file', kparams) return client.get_serve_url() end |
#set_as_default(caption_asset_id) ⇒ Object
Markss the caption as default and removes that mark from all other caption assets of the entry.
484 485 486 487 488 489 490 491 492 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 484 def set_as_default(caption_asset_id) kparams = {} client.add_param(kparams, 'captionAssetId', caption_asset_id) client.queue_service_action_call('caption_captionasset', 'setAsDefault', '', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#set_content(id, content_resource) ⇒ KalturaCaptionAsset
Update content of caption asset
496 497 498 499 500 501 502 503 504 505 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 496 def set_content(id, content_resource) kparams = {} client.add_param(kparams, 'id', id) client.add_param(kparams, 'contentResource', content_resource) client.queue_service_action_call('caption_captionasset', 'setContent', 'KalturaCaptionAsset', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |
#update(id, caption_asset) ⇒ KalturaCaptionAsset
Update caption asset
509 510 511 512 513 514 515 516 517 518 |
# File 'lib/kaltura_plugins/kaltura_caption_client_plugin.rb', line 509 def update(id, caption_asset) kparams = {} client.add_param(kparams, 'id', id) client.add_param(kparams, 'captionAsset', caption_asset) client.queue_service_action_call('caption_captionasset', 'update', 'KalturaCaptionAsset', kparams) if (client.is_multirequest) return nil end return client.do_queue() end |