Sha256: e07e0fae9716f6160fd7722d3c2b4a731511ee42b0fcbb96b6b14950f5a8e6cb

Contents?: true

Size: 1.94 KB

Versions: 7

Compression:

Stored size: 1.94 KB

Contents

module Animoto
  module Resources
    module Jobs
      class Rendering < Animoto::Resources::Jobs::Base
    
        # @return [Hash{Symbol=>Object}]
        # @see Animoto::Support::StandardEvelope::ClassMethods#unpack_standard_envelope
        def self.unpack_standard_envelope body
          links = unpack_links(body)
          super.merge({
            :storyboard_url => links['storyboard'],
            :video_url      => links['video'],
            :stream_url     => links['stream']
          })
        end
    
        # The Storyboard this job will render a video from.
        # @return [Resources::Storyboard]
        attr_reader :storyboard
        
        # The URL to the storyboard resource.
        # @return [String]
        attr_reader :storyboard_url
        
        # The Video created by this job.
        # @return [Resources::Video]
        attr_reader :video
        
        # The URL to the video resource.
        #
        # @note This URL points to the video *resource* and not the actual video *file*.
        # @return [String]
        attr_reader :video_url

        # If available, the URL where the video can be watched 'live' via HTTP Live Streaming.
        #
        # @note this attribute may not be available when the job is first created. If you poll
        #   the job while it's rendering, the URL will appear when the stream is available to view.
        # @return [String]
        attr_reader :stream_url
    
        # @return [Jobs::Rendering]
        # @see Animoto::Jobs::Base#instantiate
        def instantiate attributes = {}
          @storyboard_url = attributes[:storyboard_url]
          @storyboard = Animoto::Resources::Storyboard.new(:url => @storyboard_url) if @storyboard_url
          @video_url = attributes[:video_url]
          @video = Animoto::Resources::Video.new(:url => @video_url) if @video_url
          @stream_url = attributes[:stream_url]
          super
        end
        
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
animoto-1.5.6 ./lib/animoto/resources/jobs/rendering.rb
animoto-1.5.5 ./lib/animoto/resources/jobs/rendering.rb
animoto-1.5.4 ./lib/animoto/resources/jobs/rendering.rb
animoto-1.5.3 ./lib/animoto/resources/jobs/rendering.rb
animoto-1.5.2 ./lib/animoto/resources/jobs/rendering.rb
animoto-1.5.1 ./lib/animoto/resources/jobs/rendering.rb
animoto-1.5.0 ./lib/animoto/resources/jobs/rendering.rb