Method: Bitmovin::Job.create
- Defined in:
- lib/bitmovin/job.rb
.create(params = {}) ⇒ Object
Parameters:
-
params
(Hash)
(defaults to: {})
—
Job details
Options Hash (params):
-
input_id
(Integer)
—
Job input id
-
output_id
(Integer)
—
Job output id
-
encoding_profile_id
(Integer)
—
Encoding profile id
-
audio_meta_data
(Hash)
—
Meta data of the audio streams (Only available when using standard as speed setting)
-
:default_stream_id (Integer) - Default stream id of the audio stream
-
:language (String) - Language abbreviation [ISO 639-1]
-
:label (String) - Label of the language field
-
-
manifest_types
(Array<String>)
—
Available values: mpd | m3u8
-
extract_closed_captinos
(Boolean)
—
Extract closed captions from the input file
-
deinterlace
(Boolean)
—
Create de-interlaced output
-
merge_audio_channel_configs
(Hash)
—
Merge multiple mono audio input streams to stereo or 5.1 audio streams (Only available when using standard as speed setting)
-
:audio_channels [Array] - Array of mono input streams
-
71 72 73 |
# File 'lib/bitmovin/job.rb', line 71 def self.create(params={}) new(params).create end |