Class: MultimediaParadise::CopyRandomVideo

Inherits:
Base
  • Object
show all
Defined in:
lib/multimedia_paradise/video/copy_random_video.rb

Overview

MultimediaParadise::CopyRandomVideo

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

Class Method Summary collapse

Instance Method Summary collapse

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 = ARGV, run_already = true) ⇒ CopyRandomVideo

#

initialize

#


27
28
29
30
31
32
33
34
# File 'lib/multimedia_paradise/video/copy_random_video.rb', line 27

def initialize(
    i           = ARGV,
    run_already = true
  )
  reset
  set_commandline_arguments(i)
  run if run_already
end

Class Method Details

.[](i = ARGV) ⇒ Object

#

MultimediaParadise::CopyRandomVideo[]

#


81
82
83
# File 'lib/multimedia_paradise/video/copy_random_video.rb', line 81

def self.[](i = ARGV)
  new(i)
end

Instance Method Details

#copy_this_selected_video_fileObject

#

copy_this_selected_video_file

#


56
57
58
59
60
# File 'lib/multimedia_paradise/video/copy_random_video.rb', line 56

def copy_this_selected_video_file
  opne rev+'Next copying the video file '+sfile(@random_video)
  opne rev+'to the current directory (at '+sdir(return_pwd)+').'
  copy_file(@random_video, return_pwd)
end

#obtain_all_videos_from_my_local_video_collectionObject

#

obtain_all_videos_from_my_local_video_collection

#


47
48
49
50
51
# File 'lib/multimedia_paradise/video/copy_random_video.rb', line 47

def obtain_all_videos_from_my_local_video_collection
  @all_files = select_only_video_files_from(
    Dir['/home/x/video/**/**']
  ).sort
end

#resetObject

#

reset (reset tag)

#


39
40
41
42
# File 'lib/multimedia_paradise/video/copy_random_video.rb', line 39

def reset
  super()
  infer_the_namespace
end

#runObject

#

run (run tag)

#


72
73
74
75
76
# File 'lib/multimedia_paradise/video/copy_random_video.rb', line 72

def run
  obtain_all_videos_from_my_local_video_collection
  select_a_random_video
  copy_this_selected_video_file
end

#select_a_random_videoObject

#

select_a_random_video

#


65
66
67
# File 'lib/multimedia_paradise/video/copy_random_video.rb', line 65

def select_a_random_video
  @random_video = @all_files.sample
end