Class: MediaInfo::Parser
- Inherits:
-
Object
- Object
- MediaInfo::Parser
- Defined in:
- lib/media_info/parser.rb
Instance Attribute Summary collapse
-
#file_path ⇒ Object
readonly
Returns the value of attribute file_path.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(file_path) ⇒ Parser
constructor
A new instance of Parser.
- #parse ⇒ Object
Constructor Details
#initialize(file_path) ⇒ Parser
Returns a new instance of Parser.
13 14 15 16 17 18 |
# File 'lib/media_info/parser.rb', line 13 def initialize(file_path) @file_path = file_path # check for MediaInfo CLI raise StandardError, 'mediainfo command-line interface not installed' unless cli_available? end |
Instance Attribute Details
#file_path ⇒ Object (readonly)
Returns the value of attribute file_path.
11 12 13 |
# File 'lib/media_info/parser.rb', line 11 def file_path @file_path end |
Class Method Details
.call(file_path) ⇒ Object
7 8 9 |
# File 'lib/media_info/parser.rb', line 7 def self.call(file_path) new(file_path).parse end |
Instance Method Details
#parse ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/media_info/parser.rb', line 20 def parse raw_xml_response = execute_command raise "Execution of `#{command}` failed: #{raw_xml_response.inspect}" unless $CHILD_STATUS.success? create_streams(raw_xml_response) end |