unimatrix 1.0.0 → 1.1.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
  SHA1:
3
- metadata.gz: 419fc23c152348a645ce538df4c42e539761aca5
4
- data.tar.gz: faa1871bb56b866c0f8d0fd3d78a4a70a868c4c1
3
+ metadata.gz: 3edb95e96aca629a7cde421c8144aea581edc42f
4
+ data.tar.gz: 2719fc69e32d00bbef0c56ce17f51e8cd8c1dde0
5
5
  SHA512:
6
- metadata.gz: f8d3a342aa86af8e387401e9a3a841de8ce40631245fecb7eee4108480d2b668644d1ba5845f2bfe2c2d6370b671b96cb55ddc2d41b16b46c1335215f131d8ab
7
- data.tar.gz: 7645ea8566f554c0ba966cf97ae03486f843b059272a08cd8629bfa5ed416a2ce45e3b72adfab7f26531c1c4d9ffca85a805f9defd1f922f722357f3fdc7990d
6
+ metadata.gz: 5d958aabe4343d12a0aaf100450e004d74959fba8de67b8bf572f8e67ba501c057cfbce0192c59667ba82f3201d02076224bafee8a74d4a26d9a882d815100f7
7
+ data.tar.gz: 2a850d57e7b32dbe4d82fc6fa0715a955809bcee9b009ef80c7e0fc0684f6bc57fef1dea97f6636137c3154d99f62aa18331201ad4db67d388de2613641fde1f
@@ -0,0 +1,6 @@
1
+ module Unimatrix
2
+
3
+ class ForbiddenError < Error
4
+ end
5
+
6
+ end
@@ -0,0 +1,6 @@
1
+ module Unimatrix
2
+
3
+ class MalformedParameterError < Error
4
+ end
5
+
6
+ end
@@ -0,0 +1,6 @@
1
+ module Unimatrix
2
+
3
+ class MissingParameterError < Error
4
+ end
5
+
6
+ end
@@ -0,0 +1,6 @@
1
+ module Unimatrix
2
+
3
+ class NotFoundError < Error
4
+ end
5
+
6
+ end
@@ -1,3 +1,3 @@
1
1
  module Unimatrix
2
- VERSION = "1.0.0"
2
+ VERSION = "1.1.0"
3
3
  end
@@ -0,0 +1,17 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class Input < Unimatrix::DynamicResource
4
+
5
+ field :id
6
+ field :created_at
7
+ field :updated_at
8
+ field :state
9
+ field :key
10
+ field :uid
11
+ field :uuid
12
+
13
+ has_many :outputs
14
+
15
+ end
16
+
17
+ end
@@ -0,0 +1,18 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class Output < Unimatrix::DynamicResource
4
+
5
+ field :id
6
+ field :created_at
7
+ field :updated_at
8
+ field :key
9
+ field :uid
10
+ field :uuid
11
+ field :state
12
+ field :input_id
13
+
14
+ has_many :renditions
15
+
16
+ end
17
+
18
+ end
@@ -0,0 +1,9 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class RecordingOutput < Output
4
+
5
+ field :duration_limit
6
+
7
+ end
8
+
9
+ end
@@ -0,0 +1,19 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class Rendition < Unimatrix::DynamicResource
4
+
5
+ field :id
6
+ field :created_at
7
+ field :updated_at
8
+ field :uid
9
+ field :uuid
10
+ field :output_id
11
+ field :video_bitrate
12
+ field :audio_bitrate
13
+ field :height
14
+ field :width
15
+ field :audio_sample_rate
16
+
17
+ end
18
+
19
+ end
@@ -0,0 +1,11 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class RoutingOutput < Output
4
+
5
+ field :url
6
+ field :authentication_username
7
+ field :authentication_password
8
+
9
+ end
10
+
11
+ end
@@ -0,0 +1,11 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class TranscodingOutput < Output
4
+
5
+ field :segment_duration
6
+ field :segment_count
7
+ field :content_type
8
+
9
+ end
10
+
11
+ end
@@ -0,0 +1,10 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class TranscodingRendition < Rendition
4
+
5
+ field :profile_idc
6
+ field :level_idc
7
+
8
+ end
9
+
10
+ end
@@ -0,0 +1,10 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class TranscribingOutput < Output
4
+
5
+ field :minimum_segment_duration
6
+ field :maximum_segment_duration
7
+
8
+ end
9
+
10
+ end
@@ -0,0 +1,6 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class TranscribingRendition < Rendition
4
+ end
5
+
6
+ end
@@ -0,0 +1,6 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class TransmutationOutput < Output
4
+ end
5
+
6
+ end
@@ -0,0 +1,6 @@
1
+ module Unimatrix::Zephyrus
2
+
3
+ class TransmutationRendition < Rendition
4
+ end
5
+
6
+ end
data/lib/unimatrix.rb CHANGED
@@ -23,6 +23,10 @@ require 'unimatrix/bad_request_error'
23
23
  require 'unimatrix/error'
24
24
  require 'unimatrix/attribute_error'
25
25
  require 'unimatrix/bad_request_error'
26
+ require 'unimatrix/forbidden_error'
27
+ require 'unimatrix/malformed_parameter_error'
28
+ require 'unimatrix/missing_parameter_error'
29
+ require 'unimatrix/not_found_error'
26
30
 
27
31
  # activist
28
32
  require 'unimatrix/activist/task'
@@ -40,3 +44,15 @@ require 'unimatrix/archivist/component'
40
44
  require 'unimatrix/distributor/destination'
41
45
  require 'unimatrix/distributor/distribution'
42
46
 
47
+ # zephyrus
48
+ require 'unimatrix/zephyrus/input'
49
+ require 'unimatrix/zephyrus/output'
50
+ require 'unimatrix/zephyrus/rendition'
51
+ require 'unimatrix/zephyrus/recording_output'
52
+ require 'unimatrix/zephyrus/routing_output'
53
+ require 'unimatrix/zephyrus/transcoding_output'
54
+ require 'unimatrix/zephyrus/transcoding_rendition'
55
+ require 'unimatrix/zephyrus/transcribing_output'
56
+ require 'unimatrix/zephyrus/transcribing_rendition'
57
+ require 'unimatrix/zephyrus/transmutation_output'
58
+ require 'unimatrix/zephyrus/transmutation_rendition'
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: 1.0.0
4
+ version: 1.1.0
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-01-16 00:00:00.000000000 Z
11
+ date: 2018-01-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -104,6 +104,10 @@ files:
104
104
  - lib/unimatrix/distributor/distribution.rb
105
105
  - lib/unimatrix/dynamic_resource.rb
106
106
  - lib/unimatrix/error.rb
107
+ - lib/unimatrix/forbidden_error.rb
108
+ - lib/unimatrix/malformed_parameter_error.rb
109
+ - lib/unimatrix/missing_parameter_error.rb
110
+ - lib/unimatrix/not_found_error.rb
107
111
  - lib/unimatrix/operation.rb
108
112
  - lib/unimatrix/parser.rb
109
113
  - lib/unimatrix/realm.rb
@@ -112,6 +116,17 @@ files:
112
116
  - lib/unimatrix/response.rb
113
117
  - lib/unimatrix/serializer.rb
114
118
  - lib/unimatrix/version.rb
119
+ - lib/unimatrix/zephyrus/input.rb
120
+ - lib/unimatrix/zephyrus/output.rb
121
+ - lib/unimatrix/zephyrus/recording_output.rb
122
+ - lib/unimatrix/zephyrus/rendition.rb
123
+ - lib/unimatrix/zephyrus/routing_output.rb
124
+ - lib/unimatrix/zephyrus/transcoding_output.rb
125
+ - lib/unimatrix/zephyrus/transcoding_rendition.rb
126
+ - lib/unimatrix/zephyrus/transcribing_output.rb
127
+ - lib/unimatrix/zephyrus/transcribing_rendition.rb
128
+ - lib/unimatrix/zephyrus/transmutation_output.rb
129
+ - lib/unimatrix/zephyrus/transmutation_rendition.rb
115
130
  homepage: http://sportsrocket.com
116
131
  licenses:
117
132
  - MIT
@@ -132,7 +147,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
132
147
  version: '0'
133
148
  requirements: []
134
149
  rubyforge_project:
135
- rubygems_version: 2.6.12
150
+ rubygems_version: 2.4.8
136
151
  signing_key:
137
152
  specification_version: 4
138
153
  summary: Unimatrix is used to communicate with Unimatrix APIs.