kaltura-client 19.1.0 → 19.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57e125bdd73e72a2eae080e73c89101b3de727e687932a03f6c07701bb8270f2
4
- data.tar.gz: f13dbb7951c15604f904c286f0222f983f086674bc0a51bd496e90a7a5477cea
3
+ metadata.gz: fae7a7286ee86e37dba68b2cf5af69b19d87bc9606c41e7d7fbd29801c826058
4
+ data.tar.gz: 15c04b4db0d86947187af6e22aafef36254bda8317b8e9213c37d4c1e2ac79ed
5
5
  SHA512:
6
- metadata.gz: 1c64bb7e70aa9d16cab67ce439e815c022d4797584df14ca59a7c6b84e6df20485b84aa4394ff1e0e76f418f9b261dffccaf8238bdf4d5495f5f220a0b2267f1
7
- data.tar.gz: 119323133da794991ea8e7c8efe096e768c340f43b7c5ba5211d1fcce12572bd03cf546ff3e72225fe9e209ac05715ffcf0ca9e52a9530b42379876eb8327fa0
6
+ metadata.gz: f648483dd4a7ff2a37d0a4b9339f7ba9ef0edf3930c3b80e05235a1d1226e817f2352984fe8f9014404d1f32db32efbe8b55f7a596e1628b969bd428fb1376dd
7
+ data.tar.gz: 172db5303cb1e182a974a1b9fcb62bc755055b2d693b074bdfacaddfdd89608f2d4793068cedb179bdc04809680820bb2f41dd327c8ab384f3b7452c88e82cc6
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
  Kaltura Ruby API Client Library.
2
- Compatible with Kaltura server version 19.1.0 and above.
2
+ Compatible with Kaltura server version 19.3.0 and above.
3
3
 
4
4
  This source contains:
5
5
  - The Kaltura client library (kaltura_client_base.rb)
@@ -6382,8 +6382,8 @@ module Kaltura
6382
6382
 
6383
6383
  def initialize(client)
6384
6384
  super(client)
6385
- self.client_tag = 'ruby:23-01-30'
6386
- self.api_version = '19.1.0'
6385
+ self.client_tag = 'ruby:23-02-27'
6386
+ self.api_version = '19.3.0'
6387
6387
  end
6388
6388
 
6389
6389
  def client_tag=(value)
@@ -71,6 +71,7 @@ module Kaltura
71
71
  class KalturaVendorCatalogItemOutputFormat
72
72
  SRT = 1
73
73
  DFXP = 2
74
+ VTT = 3
74
75
  end
75
76
 
76
77
  class KalturaVendorCatalogItemStatus
@@ -88,6 +89,7 @@ module Kaltura
88
89
  INTELLIGENT_TAGGING = 6
89
90
  DUBBING = 7
90
91
  LIVE_CAPTION = 8
92
+ EXTENDED_AUDIO_DESCRIPTION = 9
91
93
  end
92
94
 
93
95
  class KalturaVendorServiceTurnAroundTime
@@ -128,6 +130,7 @@ module Kaltura
128
130
  YUE = "Cantonese"
129
131
  CA = "Catalan"
130
132
  ZH = "Chinese"
133
+ CS = "Czech"
131
134
  DA = "Danish"
132
135
  NL = "Dutch"
133
136
  EN = "English"
@@ -1111,6 +1114,36 @@ module Kaltura
1111
1114
 
1112
1115
  end
1113
1116
 
1117
+ class KalturaVendorExtendedAudioDescriptionCatalogItem < KalturaVendorCatalogItem
1118
+ attr_accessor :flavor_params_id
1119
+ attr_accessor :clear_audio_flavor_params_id
1120
+ attr_accessor :output_format
1121
+
1122
+ def flavor_params_id=(val)
1123
+ @flavor_params_id = val.to_i
1124
+ end
1125
+ def clear_audio_flavor_params_id=(val)
1126
+ @clear_audio_flavor_params_id = val.to_i
1127
+ end
1128
+ def output_format=(val)
1129
+ @output_format = val.to_i
1130
+ end
1131
+
1132
+ def from_xml(xml_element)
1133
+ super
1134
+ if xml_element.elements['flavorParamsId'] != nil
1135
+ self.flavor_params_id = xml_element.elements['flavorParamsId'].text
1136
+ end
1137
+ if xml_element.elements['clearAudioFlavorParamsId'] != nil
1138
+ self.clear_audio_flavor_params_id = xml_element.elements['clearAudioFlavorParamsId'].text
1139
+ end
1140
+ if xml_element.elements['outputFormat'] != nil
1141
+ self.output_format = xml_element.elements['outputFormat'].text
1142
+ end
1143
+ end
1144
+
1145
+ end
1146
+
1114
1147
  class KalturaVendorIntelligentTaggingCatalogItem < KalturaVendorCatalogItem
1115
1148
 
1116
1149
 
@@ -1733,6 +1766,15 @@ module Kaltura
1733
1766
 
1734
1767
  end
1735
1768
 
1769
+ class KalturaVendorExtendedAudioDescriptionCatalogItemFilter < KalturaVendorCaptionsCatalogItemBaseFilter
1770
+
1771
+
1772
+ def from_xml(xml_element)
1773
+ super
1774
+ end
1775
+
1776
+ end
1777
+
1736
1778
  class KalturaVendorLiveCaptionCatalogItemFilter < KalturaVendorCaptionsCatalogItemBaseFilter
1737
1779
 
1738
1780
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kaltura-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 19.1.0
4
+ version: 19.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kaltura Inc.