Class: Kaltura::Service::FlavorAssetService
Instance Attribute Summary
Attributes inherited from BaseService
#client
Instance Method Summary
collapse
Methods inherited from BaseService
#initialize, #perform_request
Instance Method Details
#convert(entry_id, flavor_params_id) ⇒ Object
23
24
25
26
27
28
|
# File 'lib/kaltura/service/flavor_asset_service.rb', line 23
def convert(entry_id, flavor_params_id)
kparams = {}
client.add_param(kparams, 'entryId', entry_id)
client.add_param(kparams, 'flavorParamsId', flavor_params_id)
perform_request('flavorAsset','convert',kparams,false)
end
|
#delete(id) ⇒ Object
36
37
38
39
40
|
# File 'lib/kaltura/service/flavor_asset_service.rb', line 36
def delete(id)
kparams = {}
client.add_param(kparams, 'id', id)
perform_request('flavorAsset','delete',kparams,false)
end
|
#get(id) ⇒ Object
5
6
7
8
9
|
# File 'lib/kaltura/service/flavor_asset_service.rb', line 5
def get(id)
kparams = {}
client.add_param(kparams, 'id', id)
perform_request('flavorAsset','get',kparams,false)
end
|
#get_by_entry_id(entry_id) ⇒ Object
11
12
13
14
15
|
# File 'lib/kaltura/service/flavor_asset_service.rb', line 11
def get_by_entry_id(entry_id)
kparams = {}
client.add_param(kparams, 'entryId', entry_id)
perform_request('flavorAsset','getByEntryId',kparams,false)
end
|
#get_download_url(id) ⇒ Object
42
43
44
45
46
|
# File 'lib/kaltura/service/flavor_asset_service.rb', line 42
def get_download_url(id)
kparams = {}
client.add_param(kparams, 'id', id)
perform_request('flavorAsset','getDownloadUrl',kparams,false)
end
|
#get_flavor_assets_with_params(entry_id) ⇒ Object
48
49
50
51
52
|
# File 'lib/kaltura/service/flavor_asset_service.rb', line 48
def get_flavor_assets_with_params(entry_id)
kparams = {}
client.add_param(kparams, 'entryId', entry_id)
perform_request('flavorAsset','getFlavorAssetsWithParams',kparams,false)
end
|
#get_web_playable_by_entry_id(entry_id) ⇒ Object
17
18
19
20
21
|
# File 'lib/kaltura/service/flavor_asset_service.rb', line 17
def get_web_playable_by_entry_id(entry_id)
kparams = {}
client.add_param(kparams, 'entryId', entry_id)
perform_request('flavorAsset','getWebPlayableByEntryId',kparams,false)
end
|
#reconvert(id) ⇒ Object
30
31
32
33
34
|
# File 'lib/kaltura/service/flavor_asset_service.rb', line 30
def reconvert(id)
kparams = {}
client.add_param(kparams, 'id', id)
perform_request('flavorAsset','reconvert',kparams,false)
end
|