Class: Mediakit::FFmpeg::Options::OptionPathPair
- Inherits:
-
Object
- Object
- Mediakit::FFmpeg::Options::OptionPathPair
- Defined in:
- lib/mediakit/ffmpeg/options.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
- #compose ⇒ Object
-
#initialize(options:, path:) ⇒ OptionPathPair
constructor
A new instance of OptionPathPair.
- #to_s ⇒ Object
Constructor Details
#initialize(options:, path:) ⇒ OptionPathPair
Returns a new instance of OptionPathPair.
113 114 115 116 |
# File 'lib/mediakit/ffmpeg/options.rb', line 113 def initialize(options:, path:) @options = @path = path end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
111 112 113 |
# File 'lib/mediakit/ffmpeg/options.rb', line 111 def @options end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
111 112 113 |
# File 'lib/mediakit/ffmpeg/options.rb', line 111 def path @path end |
Instance Method Details
#compose ⇒ Object
118 119 120 |
# File 'lib/mediakit/ffmpeg/options.rb', line 118 def compose raise(NotImplementedError) end |
#to_s ⇒ Object
122 123 124 |
# File 'lib/mediakit/ffmpeg/options.rb', line 122 def to_s compose end |