Class: MultimediaParadise::ToOgg

Inherits:
AudioBase show all
Defined in:
lib/multimedia_paradise/audio/to_ogg.rb

Overview

MultimediaParadise::ToOgg

Constant Summary

Constants inherited from Base

Base::ERROR, Base::ERROR_LINE, Base::NAMESPACE, Base::USE_THIS_NAMESPACE_FOR_THE_COLOURS, Base::USE_THIS_NAMESPACE_FOR_THE_CORE_COLOURS

Instance Method Summary collapse

Methods inherited from AudioBase

#directory_to_the_local_songs?, #return_random_audio_file

Methods inherited from Base

[], #actions, #append_what_into, #be_silent, #be_verbose?, #beautiful_url, #cartoons_directory?, #clear_the_internal_hash, #cliner, #cliner_with_time_stamp, #colourized_comment, #copy_file, #crimson, #dataset_from_file_video_collection, #dd_mm_yyyy, #debug?, #default_readlines, #directory_to_realvids?, #do_not_use_opn, #dodgerblue, #does_the_video_player_support_this_commandline?, #e, #ecomment, #ecrimson, #efancy, #enable_debug, #ensure_main_encoding, #ensure_that_the_output_directory_exists, #eparse, #erev, #esystem, #ewarn, #file_video_collection?, #filter_for_audio_files, #filter_for_video_files, #forestgreen, #gold, #grey, #hh_mm_ss, #home_x_video?, #indianred, #infer_the_namespace, #internal_hash?, #is_audio_file?, #is_mkv?, #is_mp3?, #is_mp4?, #is_multimedia_file?, #is_on_roebe?, #is_video_file?, #konsole_colour_peru, #lightblue, #lightgreen, #load_yaml, #local_audio_directory?, #log_dir?, #map_symbol_to_locally_existing_file, #mediumorchid, #mediumpurple, #mediumslateblue, #mkdir, #move_file, #namespace?, #no_file_exists, #no_file_exists_at, #olive, #olivedrab, #opne, #opnecomment, #opnn, #orange, #palegoldenrod, #palegreen, #powderblue, #project_base_directory?, #rds, #register_sigint, #remove_file, #report_pwd, #reset_the_internal_hash, #return_all_video_files, #return_pwd, #return_random_video, #rev, #royalblue, #save_what_into, #sdir, #seagreen, #seconds_to_time_format, #select_only_video_files_from, #set_be_verbose, #set_use_colours, #sfancy, #sfile, #simp, #skyblue, #slateblue, #springgreen, #steelblue, #swarn, #teal, #time_right_now, #to_hh_mm_ss, #tomato, #true_rev, #try_to_rename_kde_konsole_tab, #ucliner, #use_colours?, #use_opn?, #use_which_video_player?, #verbose_truth, #video_collection?, #violet, #yaml_directory?, #yel

Methods included from CommandlineArgumentsModule

#all_input_starts_with_a_number?, #commandline_arguments?, #commandline_arguments_as_a_string, #first_argument?, #first_non_hyphened_commandline_argument?, #set_commandline_arguments

Constructor Details

#initialize(i = nil, run_already = true) ⇒ ToOgg

#

initialize

#


25
26
27
28
29
30
31
32
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 25

def initialize(
    i           = nil,
    run_already = true
  )
  reset
  set_input(i)
  run if run_already
end

Instance Method Details

#cleanup_old_filesObject

#

cleanup_old_files

#


74
75
76
77
78
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 74

def cleanup_old_files
  if File.exist? output_file?
    File.delete(output_file?)
  end
end

#input?Boolean

#

input?

#

Returns:

  • (Boolean)


53
54
55
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 53

def input?
  @input
end

#output_file?Boolean

#

output_file?

#

Returns:

  • (Boolean)


67
68
69
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 67

def output_file?
  'output_'+return_input_name+'.ogg'
end

#report_that_we_are_done_nowObject

#

report_that_we_are_done_now

#


83
84
85
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 83

def report_that_we_are_done_now
  e "#{rev}Finished creating the file #{sfile(output_file?)}#{rev}."
end

#resetObject

#

reset (reset tag)

#


37
38
39
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 37

def reset
  super()
end

#return_input_nameObject

#

return_input_name

#


60
61
62
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 60

def return_input_name
  input?.gsub(/#{File.extname(input?)}$/, '')
end

#runObject

#

run (run tag)

#


90
91
92
93
94
95
96
97
98
99
100
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 90

def run
  cleanup_old_files
  _ = 'ffmpeg'.dup
  _ << ' -i '+input?
  _ << ' -strict -2' # So that ffmpeg does not complain about vorbis being experimental.
  _ << ' -acodec libvorbis'
  _ << ' -aq 100 '
  _ << output_file? 
  esystem _
  report_that_we_are_done_now
end

#set_input(i = '') ⇒ Object

#

set_input

#


44
45
46
47
48
# File 'lib/multimedia_paradise/audio/to_ogg.rb', line 44

def set_input(i = '')
  i = i.first if i.is_a? Array
  i = i.to_s.dup if i
  @input = i
end