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.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/unimatrix.rb +8 -0
- data/lib/unimatrix/alchemist/clipping_rendition.rb +6 -0
- data/lib/unimatrix/alchemist/text.rb +2 -1
- data/lib/unimatrix/alchemist/text_rendition.rb +4 -1
- data/lib/unimatrix/alchemist/video.rb +1 -0
- data/lib/unimatrix/alchemist/video_clipping_activity_proxy.rb +9 -0
- data/lib/unimatrix/alchemist/video_encoder.rb +2 -1
- data/lib/unimatrix/alchemist/video_encoding_activity_proxy.rb +5 -2
- data/lib/unimatrix/alchemist/video_rendition.rb +3 -2
- data/lib/unimatrix/iris/stream_converter.rb +2 -1
- data/lib/unimatrix/iris/stream_encoder.rb +2 -1
- data/lib/unimatrix/iris/stream_input.rb +1 -0
- data/lib/unimatrix/iris/stream_output.rb +2 -1
- data/lib/unimatrix/iris/stream_recorder.rb +1 -0
- data/lib/unimatrix/iris/stream_transcriber.rb +1 -0
- data/lib/unimatrix/iris/stream_transformer.rb +2 -1
- data/lib/unimatrix/iris/stream_transmutator.rb +1 -0
- data/lib/unimatrix/organizer/filter.rb +17 -0
- data/lib/unimatrix/organizer/filter_criteria.rb +18 -0
- data/lib/unimatrix/player/media.rb +23 -0
- data/lib/unimatrix/player/media_source.rb +18 -0
- data/lib/unimatrix/player/media_text.rb +17 -0
- data/lib/unimatrix/regent/service.rb +18 -0
- data/lib/unimatrix/regent/setting.rb +1 -1
- data/lib/unimatrix/zephyrus/conversion_output.rb +3 -3
- data/lib/unimatrix/zephyrus/input.rb +2 -0
- data/lib/unimatrix/zephyrus/output.rb +2 -0
- data/lib/unimatrix/zephyrus/recording_output.rb +2 -2
- data/lib/unimatrix/zephyrus/routing_output.rb +2 -2
- data/lib/unimatrix/zephyrus/transcoding_output.rb +2 -2
- data/lib/unimatrix/zephyrus/transcoding_rendition.rb +2 -2
- data/lib/unimatrix/zephyrus/transcribing_output.rb +2 -2
- data/lib/unimatrix/zephyrus/transformation_output.rb +3 -3
- data/lib/unimatrix/zephyrus/transmutation_output.rb +3 -3
- metadata +11 -3
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: e6c921d76a08a9d2e78d8947e3d32dd94edae298
         | 
| 4 | 
            +
              data.tar.gz: a441d6d4b0495ca8345ff62cddd321710d97f1bc
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: dfd7eb5ea683b65dc591fc4cd99c156d5d178262a2cc4f01cf444c3aab0a866b8f965f1ef6e734e175fba4588e1bcebd98c0d703e71b2d7b5124d46dc29c9857
         | 
| 7 | 
            +
              data.tar.gz: 351aac6f312883f53bbc49403d0cb5e154ce01ad8742760f83da138a5355fd50bc5fbd344917694b74a27cffac902aa77763d32532406c528108504a8e2c8ee4
         | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            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,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
         | 
    
        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. | 
| 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- | 
| 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. | 
| 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.
         |