Sha256: 33d2ac6d2a856e53cbd4bc95d0a9554635d1b81c0b23d3f56fcea65428c49152
Contents?: true
Size: 648 Bytes
Versions: 27
Compression:
Stored size: 648 Bytes
Contents
# frozen_string_literal: true module Evostream module Commands # Create flux DASH class CreateDASH < Create # Call default command for create DASH Stream def initialize(commands = { local_stream_names: 'null', target_folder: 'null' }) super(commands) end def cmd cmd_hash = command.join Evostream.logger "createDASHStream : #{cmd_hash}" "createDASHStream?params=#{Base64.urlsafe_encode64(cmd_hash)}" end private # The manifest file name def manifest_name(param = 'manifest.mpd') "manifestName=#{param} " end end end end
Version data entries
27 entries across 27 versions & 1 rubygems