Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #28

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/trimming_input_video.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
mp4_muxing.streams << audio_stream.id
mp4_muxing.save!

# Start the encoding proccess
# Start the encoding process
enc.start!

# Monitor the encoding finish
Expand Down
2 changes: 1 addition & 1 deletion lib/bitmovin/encoding/inputs/aspera_input.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module Bitmovin::Encoding::Inputs
class AsperaInput < Bitmovin::Resource
init 'encoding/inputs/aspera'
attr_accessor :id, :created_at, :modified_at, :name, :description
attr_accessor :host, :username, :password, :min_bandwith, :max_bandwith
attr_accessor :host, :username, :password, :min_bandwidth, :max_bandwidth
end
end
2 changes: 1 addition & 1 deletion spec/bitmovin/bitmovin_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
expect(Bitmovin::Client).to receive(:new).with({ api_key: 'foo', organisation_id: nil })
Bitmovin.init('foo')
end
it "should set corrrect API key and organisation id on client" do
it "should set correct API key and organisation id on client" do
expect(Bitmovin::Client).to receive(:new).with({api_key: 'foo', organisation_id: 'bar'})
Bitmovin.init('foo', 'bar')
end
Expand Down
2 changes: 1 addition & 1 deletion spec/bitmovin/encoding/encodings/stream_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
it { is_expected.to have_attributes(create_quality_meta_data: true) }
it { is_expected.to have_attributes(id: "a6336204-c929-4a61-b7a0-2cd6665114e9") }
it { is_expected.to have_attributes(codec_configuration: "d09c1a8a-4c56-4392-94d8-81712118aae0") }
it "should initialze outputs" do
it "should initialize outputs" do
expect(subject).to have_exactly(1).outputs
expect(subject.outputs).to include(have_attributes(output_id: "55354be6-0237-42bb-ae85-a2d4ef1ed19e"))
end
Expand Down
4 changes: 2 additions & 2 deletions spec/bitmovin/encoding/inputs/aspera_input_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
host: '127.0.0.1',
username: 'root',
password: 'secret',
minBandwith: '100m',
maxBandwith: '100k'
minBandwidth: '100m',
maxBandwidth: '100k'
})
list_response = response_envelope({
items: [detail]
Expand Down