unimatrix 3.3.3 → 3.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/lib/unimatrix.rb +8 -0
  4. data/lib/unimatrix/alchemist/clipping_rendition.rb +6 -0
  5. data/lib/unimatrix/alchemist/text.rb +2 -1
  6. data/lib/unimatrix/alchemist/text_rendition.rb +4 -1
  7. data/lib/unimatrix/alchemist/video.rb +1 -0
  8. data/lib/unimatrix/alchemist/video_clipping_activity_proxy.rb +9 -0
  9. data/lib/unimatrix/alchemist/video_encoder.rb +2 -1
  10. data/lib/unimatrix/alchemist/video_encoding_activity_proxy.rb +5 -2
  11. data/lib/unimatrix/alchemist/video_rendition.rb +3 -2
  12. data/lib/unimatrix/iris/stream_converter.rb +2 -1
  13. data/lib/unimatrix/iris/stream_encoder.rb +2 -1
  14. data/lib/unimatrix/iris/stream_input.rb +1 -0
  15. data/lib/unimatrix/iris/stream_output.rb +2 -1
  16. data/lib/unimatrix/iris/stream_recorder.rb +1 -0
  17. data/lib/unimatrix/iris/stream_transcriber.rb +1 -0
  18. data/lib/unimatrix/iris/stream_transformer.rb +2 -1
  19. data/lib/unimatrix/iris/stream_transmutator.rb +1 -0
  20. data/lib/unimatrix/organizer/filter.rb +17 -0
  21. data/lib/unimatrix/organizer/filter_criteria.rb +18 -0
  22. data/lib/unimatrix/player/media.rb +23 -0
  23. data/lib/unimatrix/player/media_source.rb +18 -0
  24. data/lib/unimatrix/player/media_text.rb +17 -0
  25. data/lib/unimatrix/regent/service.rb +18 -0
  26. data/lib/unimatrix/regent/setting.rb +1 -1
  27. data/lib/unimatrix/zephyrus/conversion_output.rb +3 -3
  28. data/lib/unimatrix/zephyrus/input.rb +2 -0
  29. data/lib/unimatrix/zephyrus/output.rb +2 -0
  30. data/lib/unimatrix/zephyrus/recording_output.rb +2 -2
  31. data/lib/unimatrix/zephyrus/routing_output.rb +2 -2
  32. data/lib/unimatrix/zephyrus/transcoding_output.rb +2 -2
  33. data/lib/unimatrix/zephyrus/transcoding_rendition.rb +2 -2
  34. data/lib/unimatrix/zephyrus/transcribing_output.rb +2 -2
  35. data/lib/unimatrix/zephyrus/transformation_output.rb +3 -3
  36. data/lib/unimatrix/zephyrus/transmutation_output.rb +3 -3
  37. metadata +11 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 71affb0257dacf5bb14f458dff80d1e9ba26286d
4
- data.tar.gz: 4b007d61ff573047c98f336877276919c2fb209f
3
+ metadata.gz: e6c921d76a08a9d2e78d8947e3d32dd94edae298
4
+ data.tar.gz: a441d6d4b0495ca8345ff62cddd321710d97f1bc
5
5
  SHA512:
6
- metadata.gz: 4627d185ea05e30a7437aa486ca32d558f4cd675e757aa9167ac03acb55b3f1476be051ba9004db8e02be73b75278b5e9cd3bb1dd36675c3aee2cc7ef27c8ade
7
- data.tar.gz: d7b4b35f30c44bad821f8341df81d0b650c05d40bc22ec91baa34cbc934c6845938c12b57d20159b30517d9376f382f3dc8eee2b05b6f41ef996ed88437cc641
6
+ metadata.gz: dfd7eb5ea683b65dc591fc4cd99c156d5d178262a2cc4f01cf444c3aab0a866b8f965f1ef6e734e175fba4588e1bcebd98c0d703e71b2d7b5124d46dc29c9857
7
+ data.tar.gz: 351aac6f312883f53bbc49403d0cb5e154ce01ad8742760f83da138a5355fd50bc5fbd344917694b74a27cffac902aa77763d32532406c528108504a8e2c8ee4
data/VERSION CHANGED
@@ -1 +1 @@
1
- 3.3.3
1
+ 3.3.4
data/lib/unimatrix.rb CHANGED
@@ -48,8 +48,10 @@ require 'unimatrix/alchemist/aws_rendition_profile'
48
48
  require 'unimatrix/alchemist/picture_rendition'
49
49
  require 'unimatrix/alchemist/sprite_rendition'
50
50
  require 'unimatrix/alchemist/text_rendition'
51
+ require 'unimatrix/alchemist/clipping_rendition'
51
52
  require 'unimatrix/alchemist/text_storage_activity_proxy'
52
53
  require 'unimatrix/alchemist/video_encoding_activity_proxy'
54
+ require 'unimatrix/alchemist/video_clipping_activity_proxy'
53
55
  require 'unimatrix/alchemist/video_picture_activity_proxy'
54
56
  require 'unimatrix/alchemist/video_rendition'
55
57
  require 'unimatrix/alchemist/video_rendition_interrogation_activity_proxy'
@@ -114,9 +116,15 @@ require 'unimatrix/iris/stream_transcriber'
114
116
  require 'unimatrix/iris/stream_transformer'
115
117
  require 'unimatrix/iris/stream_transmutator'
116
118
 
119
+ # player
120
+ require 'unimatrix/player/media'
121
+ require 'unimatrix/player/media_source'
122
+ require 'unimatrix/player/media_text'
123
+
117
124
  # regent
118
125
  require 'unimatrix/regent/realm'
119
126
  require 'unimatrix/regent/setting'
127
+ require 'unimatrix/regent/service'
120
128
 
121
129
  # zephyrus
122
130
  require 'unimatrix/zephyrus/input'
@@ -0,0 +1,6 @@
1
+ module Unimatrix::Alchemist
2
+
3
+ class ClippingRendition < Rendition
4
+ end
5
+
6
+ end
@@ -7,6 +7,7 @@ module Unimatrix::Alchemist
7
7
  field :realm_uuid
8
8
  field :input_url
9
9
  field :storage_url
10
+ field :language
10
11
  field :content_type
11
12
  field :content_length
12
13
  field :video_id
@@ -19,4 +20,4 @@ module Unimatrix::Alchemist
19
20
 
20
21
  end
21
22
 
22
- end
23
+ end
@@ -1,6 +1,9 @@
1
1
  module Unimatrix::Alchemist
2
2
 
3
3
  class TextRendition < Rendition
4
+
5
+ field :language
6
+
4
7
  end
5
8
 
6
- end
9
+ end
@@ -35,6 +35,7 @@ module Unimatrix::Alchemist
35
35
  field :audio_bit_rate
36
36
  field :audio_sample_rate
37
37
  field :ingestion_status
38
+ field :file_size
38
39
 
39
40
  has_many :video_encoders
40
41
  has_many :renditions
@@ -0,0 +1,9 @@
1
+ module Unimatrix::Alchemist
2
+
3
+ class VideoClippingActivityProxy < ActivityProxy
4
+
5
+ field :rendition_url
6
+
7
+ end
8
+
9
+ end
@@ -8,10 +8,11 @@ module Unimatrix::Alchemist
8
8
  field :realm_uuid
9
9
  field :created_at
10
10
  field :updated_at
11
+ field :clipping_enabled
11
12
 
12
13
  has_many :rendition_profiles
13
14
  has_many :videos
14
15
 
15
16
  end
16
17
 
17
- end
18
+ end
@@ -1,6 +1,9 @@
1
1
  module Unimatrix::Alchemist
2
2
 
3
3
  class VideoEncodingActivityProxy < ActivityProxy
4
+
5
+ field :video_encoder_uuid
6
+
4
7
  end
5
-
6
- end
8
+
9
+ end
@@ -22,7 +22,8 @@ module Unimatrix::Alchemist
22
22
  field :audio_bit_rate
23
23
  field :audio_sample_rate
24
24
  field :transcoder
25
-
25
+ field :file_size
26
+
26
27
  end
27
28
 
28
- end
29
+ end
@@ -12,7 +12,8 @@ module Unimatrix::Iris
12
12
  field :loop
13
13
  field :stream_id
14
14
  field :stream_uuid
15
-
15
+ field :realm_uuid
16
+
16
17
  end
17
18
 
18
19
  end
@@ -11,7 +11,8 @@ module Unimatrix::Iris
11
11
  field :region
12
12
  field :stream_id
13
13
  field :stream_uuid
14
-
14
+ field :realm_uuid
15
+
15
16
  end
16
17
 
17
18
  end
@@ -11,6 +11,7 @@ module Unimatrix::Iris
11
11
  field :region
12
12
  field :stream_id
13
13
  field :stream_uuid
14
+ field :realm_uuid
14
15
 
15
16
  end
16
17
 
@@ -13,7 +13,8 @@ module Unimatrix::Iris
13
13
  field :stream_uuid
14
14
  field :authentication_username
15
15
  field :authentication_password
16
-
16
+ field :realm_uuid
17
+
17
18
  end
18
19
 
19
20
  end
@@ -12,6 +12,7 @@ module Unimatrix::Iris
12
12
  field :duration_limit
13
13
  field :stream_id
14
14
  field :stream_uuid
15
+ field :realm_uuid
15
16
 
16
17
  end
17
18
 
@@ -10,6 +10,7 @@ module Unimatrix::Iris
10
10
  field :minimum_segment_duration
11
11
  field :stream_id
12
12
  field :stream_uuid
13
+ field :realm_uuid
13
14
 
14
15
  end
15
16
 
@@ -11,7 +11,8 @@ module Unimatrix::Iris
11
11
  field :url_in
12
12
  field :stream_id
13
13
  field :stream_uuid
14
-
14
+ field :realm_uuid
15
+
15
16
  end
16
17
 
17
18
  end
@@ -15,6 +15,7 @@ module Unimatrix::Iris
15
15
  field :audio_sample_rate
16
16
  field :stream_id
17
17
  field :stream_uuid
18
+ field :realm_uuid
18
19
 
19
20
  end
20
21
 
@@ -0,0 +1,17 @@
1
+ module Unimatrix::Organizer
2
+
3
+ class Filter < Unimatrix::Resource
4
+
5
+ field :id
6
+ field :uuid
7
+ field :type_name
8
+ field :realm_uuid
9
+ field :operator
10
+ field :created_at
11
+ field :updated_at
12
+
13
+ has_many :filter_criteria
14
+
15
+ end
16
+
17
+ end
@@ -0,0 +1,18 @@
1
+ module Unimatrix::Organizer
2
+
3
+ class FilterCriteria < Unimatrix::Resource
4
+
5
+ field :id
6
+ field :uuid
7
+ field :realm_uuid
8
+ field :type_name
9
+ field :filter_uuid
10
+ field :condition
11
+ field :field
12
+ field :values
13
+ field :created_at
14
+ field :updated_at
15
+
16
+ end
17
+
18
+ end
@@ -0,0 +1,23 @@
1
+ module Unimatrix::Player
2
+
3
+ class Media < Unimatrix::Resource
4
+
5
+ field :id
6
+ field :uuid
7
+ field :realm_uuid
8
+ field :provider
9
+ field :provider_uid
10
+ field :type_name
11
+ field :media_type
12
+ field :name
13
+ field :poster_url
14
+ field :sprite_url
15
+ field :stream_type
16
+ field :state_url
17
+
18
+ has_many :media_sources
19
+ has_many :media_texts
20
+
21
+ end
22
+
23
+ end
@@ -0,0 +1,18 @@
1
+ module Unimatrix::Player
2
+
3
+ class MediaSource < Unimatrix::Resource
4
+
5
+ field :id
6
+ field :uuid
7
+ field :realm_uuid
8
+ field :media_id
9
+ field :type_name
10
+ field :url
11
+ field :content_type
12
+ field :source_type
13
+ field :height
14
+ field :width
15
+
16
+ end
17
+
18
+ end
@@ -0,0 +1,17 @@
1
+ module Unimatrix::Player
2
+
3
+ class MediaText < Unimatrix::Resource
4
+
5
+ field :id
6
+ field :uuid
7
+ field :realm_uuid
8
+ field :media_id
9
+ field :type_name
10
+ field :url
11
+ field :content_type
12
+ field :source_type
13
+ field :language
14
+
15
+ end
16
+
17
+ end
@@ -0,0 +1,18 @@
1
+ module Unimatrix::Regent
2
+
3
+ class Service < Unimatrix::DynamicResource
4
+ field :id
5
+ field :uuid
6
+ field :provider
7
+ field :type
8
+ field :provider_uid
9
+ field :authorized
10
+ field :properties
11
+ field :realm_uuid
12
+ field :created_at
13
+ field :updated_at
14
+
15
+ has_one :realm
16
+ end
17
+
18
+ end
@@ -1,6 +1,6 @@
1
1
  module Unimatrix::Regent
2
2
 
3
- class Setting < Unimatrix::Resource
3
+ class Setting < Unimatrix::DynamicResource
4
4
 
5
5
  field :id
6
6
  field :uuid
@@ -5,7 +5,7 @@ module Unimatrix::Zephyrus
5
5
  field :url
6
6
  field :url_in
7
7
  field :loop
8
-
8
+
9
9
  end
10
-
11
- end
10
+
11
+ end
@@ -9,6 +9,8 @@ module Unimatrix::Zephyrus
9
9
  field :key
10
10
  field :uid
11
11
  field :uuid
12
+ field :realm_uuid
13
+ field :provider
12
14
 
13
15
  has_many :outputs
14
16
 
@@ -10,6 +10,8 @@ module Unimatrix::Zephyrus
10
10
  field :uuid
11
11
  field :state
12
12
  field :input_id
13
+ field :realm_uuid
14
+ field :provider
13
15
 
14
16
  has_many :renditions
15
17
 
@@ -3,7 +3,7 @@ module Unimatrix::Zephyrus
3
3
  class RecordingOutput < Output
4
4
 
5
5
  field :duration_limit
6
-
6
+
7
7
  end
8
8
 
9
- end
9
+ end
@@ -5,7 +5,7 @@ module Unimatrix::Zephyrus
5
5
  field :url
6
6
  field :authentication_username
7
7
  field :authentication_password
8
-
8
+
9
9
  end
10
10
 
11
- end
11
+ end
@@ -5,7 +5,7 @@ module Unimatrix::Zephyrus
5
5
  field :segment_duration
6
6
  field :segment_count
7
7
  field :content_type
8
-
8
+
9
9
  end
10
10
 
11
- end
11
+ end
@@ -4,7 +4,7 @@ module Unimatrix::Zephyrus
4
4
 
5
5
  field :profile_idc
6
6
  field :level_idc
7
-
7
+
8
8
  end
9
9
 
10
- end
10
+ end
@@ -3,7 +3,7 @@ module Unimatrix::Zephyrus
3
3
  class TranscribingOutput < Output
4
4
 
5
5
  field :minimum_segment_duration
6
-
6
+
7
7
  end
8
8
 
9
- end
9
+ end
@@ -4,7 +4,7 @@ module Unimatrix::Zephyrus
4
4
 
5
5
  field :url
6
6
  field :url_in
7
-
7
+
8
8
  end
9
-
10
- end
9
+
10
+ end
@@ -3,7 +3,7 @@ module Unimatrix::Zephyrus
3
3
  class TransmutationOutput < Output
4
4
 
5
5
  field :url
6
-
6
+
7
7
  end
8
-
9
- end
8
+
9
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unimatrix
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.3
4
+ version: 3.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jackson Souza
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-31 00:00:00.000000000 Z
11
+ date: 2018-12-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -94,6 +94,7 @@ files:
94
94
  - lib/unimatrix/activist/task.rb
95
95
  - lib/unimatrix/alchemist/activity_proxy.rb
96
96
  - lib/unimatrix/alchemist/aws_rendition_profile.rb
97
+ - lib/unimatrix/alchemist/clipping_rendition.rb
97
98
  - lib/unimatrix/alchemist/picture_rendition.rb
98
99
  - lib/unimatrix/alchemist/rendition.rb
99
100
  - lib/unimatrix/alchemist/rendition_profile.rb
@@ -102,6 +103,7 @@ files:
102
103
  - lib/unimatrix/alchemist/text_rendition.rb
103
104
  - lib/unimatrix/alchemist/text_storage_activity_proxy.rb
104
105
  - lib/unimatrix/alchemist/video.rb
106
+ - lib/unimatrix/alchemist/video_clipping_activity_proxy.rb
105
107
  - lib/unimatrix/alchemist/video_encoder.rb
106
108
  - lib/unimatrix/alchemist/video_encoding_activity_proxy.rb
107
109
  - lib/unimatrix/alchemist/video_picture_activity_proxy.rb
@@ -172,10 +174,16 @@ files:
172
174
  - lib/unimatrix/missing_policy_error.rb
173
175
  - lib/unimatrix/not_found_error.rb
174
176
  - lib/unimatrix/operation.rb
177
+ - lib/unimatrix/organizer/filter.rb
178
+ - lib/unimatrix/organizer/filter_criteria.rb
175
179
  - lib/unimatrix/parser.rb
180
+ - lib/unimatrix/player/media.rb
181
+ - lib/unimatrix/player/media_source.rb
182
+ - lib/unimatrix/player/media_text.rb
176
183
  - lib/unimatrix/quartermaster/binary.rb
177
184
  - lib/unimatrix/quartermaster/binary_ingressor.rb
178
185
  - lib/unimatrix/regent/realm.rb
186
+ - lib/unimatrix/regent/service.rb
179
187
  - lib/unimatrix/regent/setting.rb
180
188
  - lib/unimatrix/request.rb
181
189
  - lib/unimatrix/resource.rb
@@ -215,7 +223,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
215
223
  version: '0'
216
224
  requirements: []
217
225
  rubyforge_project:
218
- rubygems_version: 2.4.8
226
+ rubygems_version: 2.6.12
219
227
  signing_key:
220
228
  specification_version: 4
221
229
  summary: Unimatrix is used to communicate with Unimatrix APIs.