Class: RVideo::Tools::Mplayer
- Inherits:
-
Object
- Object
- RVideo::Tools::Mplayer
- Includes:
- AbstractTool::InstanceMethods
- Defined in:
- lib/rvideo/tools/mplayer.rb
Instance Attribute Summary collapse
-
#raw_metadata ⇒ Object
readonly
Returns the value of attribute raw_metadata.
Attributes included from AbstractTool::InstanceMethods
#command, #options, #original, #raw_result
Instance Method Summary collapse
Methods included from AbstractTool::InstanceMethods
#audio_bit_rate, #audio_channels, #audio_sample_rate, #calculate_height, #calculate_width, #execute, #format_audio_bit_rate, #format_audio_channels, #format_audio_sample_rate, #format_fps, #format_resolution, #fps, #get_audio_bit_rate, #get_audio_channels, #get_audio_sample_rate, #get_fit_to_height_resolution, #get_fit_to_width_resolution, #get_fps, #get_letterbox_resolution, #get_mono_audio, #get_original_fps, #get_original_resolution, #get_resolution, #get_specific_audio_bit_rate, #get_specific_audio_sample_rate, #get_specific_fps, #get_specific_resolution, #get_stereo_audio, #get_video_quality, #initialize, #resolution, #temp_dir, #valid_dimension?, #video_quality
Instance Attribute Details
#raw_metadata ⇒ Object (readonly)
Returns the value of attribute raw_metadata.
6 7 8 |
# File 'lib/rvideo/tools/mplayer.rb', line 6 def @raw_metadata end |
Instance Method Details
#parse_result(result) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/rvideo/tools/mplayer.rb', line 12 def parse_result(result) if m = /This will likely crash/.match(result) raise TranscoderError::InvalidFile, "unknown format" end if m = /Failed to open/.match(result) raise TranscoderError::InvalidFile, "I/O error" end if m = /File not found/.match(result) raise TranscoderError::InvalidFile, "I/O error" end @raw_metadata = result.empty? ? "No Results" : result return true end |
#tool_command ⇒ Object
8 9 10 |
# File 'lib/rvideo/tools/mplayer.rb', line 8 def tool_command 'mplayer' end |