multimedia_paradise 1.1.314

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of multimedia_paradise might be problematic. Click here for more details.

Files changed (417) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2340 -0
  3. data/bin/audio_player +12 -0
  4. data/bin/auto_title +7 -0
  5. data/bin/convert_audio_to_mp4video_with_image +7 -0
  6. data/bin/cut_audio +7 -0
  7. data/bin/cut_multimedia +7 -0
  8. data/bin/extract_audio +7 -0
  9. data/bin/ffmpeg_merge +7 -0
  10. data/bin/file_duration +7 -0
  11. data/bin/gtk_radio +7 -0
  12. data/bin/loop_this_video +7 -0
  13. data/bin/merge_avi_files +7 -0
  14. data/bin/merge_mp3 +7 -0
  15. data/bin/missing_video_files +7 -0
  16. data/bin/movie_searcher +7 -0
  17. data/bin/mp3_to_opus +7 -0
  18. data/bin/mplayer_wrapper +7 -0
  19. data/bin/multimedia_information +11 -0
  20. data/bin/multimedia_paradise +9 -0
  21. data/bin/multimedia_paradise_sinatra +7 -0
  22. data/bin/play_random_simpsons_video +7 -0
  23. data/bin/playlist +7 -0
  24. data/bin/random_video +7 -0
  25. data/bin/remove_audio +9 -0
  26. data/bin/remove_last_second +7 -0
  27. data/bin/remove_subtitles +7 -0
  28. data/bin/tag_mp3_files +7 -0
  29. data/bin/to_aiff +10 -0
  30. data/bin/to_mp4 +7 -0
  31. data/bin/verbose_analyse_this_mp3_file_for_id3_tags +9 -0
  32. data/bin/video_codec +7 -0
  33. data/bin/video_information +8 -0
  34. data/bin/video_player +11 -0
  35. data/bin/video_to_images +7 -0
  36. data/bin/vp9 +9 -0
  37. data/bin/waveform +73 -0
  38. data/doc/CHANGELOG.md +44 -0
  39. data/doc/LINKS.md +6 -0
  40. data/doc/MOTIVATION_FOR_THIS_PROJECT.md +22 -0
  41. data/doc/MergingVideoLectures.md +12 -0
  42. data/doc/README.gen +2300 -0
  43. data/doc/Readme_for_the_cut_audio_component.md +168 -0
  44. data/doc/todo/todo_for_the_GUIs.md +0 -0
  45. data/doc/todo/todo_for_the_multimedia_paradise_project.md +111 -0
  46. data/lib/multimedia_paradise/audio/audio_player/audio_player.rb +83 -0
  47. data/lib/multimedia_paradise/audio/audio_player/constants.rb +136 -0
  48. data/lib/multimedia_paradise/audio/audio_player/menu.rb +164 -0
  49. data/lib/multimedia_paradise/audio/audio_player/misc.rb +718 -0
  50. data/lib/multimedia_paradise/audio/audio_player/reset.rb +77 -0
  51. data/lib/multimedia_paradise/audio/audio_player/tab.rb +35 -0
  52. data/lib/multimedia_paradise/audio/audio_tag_reader/README.md +7 -0
  53. data/lib/multimedia_paradise/audio/audio_tag_reader/audio_tag_reader.rb +503 -0
  54. data/lib/multimedia_paradise/audio/base.rb +67 -0
  55. data/lib/multimedia_paradise/audio/compress.rb +97 -0
  56. data/lib/multimedia_paradise/audio/create_m3u_playlist.rb +245 -0
  57. data/lib/multimedia_paradise/audio/extract_audio/constants.rb +37 -0
  58. data/lib/multimedia_paradise/audio/extract_audio/extract_audio.rb +417 -0
  59. data/lib/multimedia_paradise/audio/file_duration/constants.rb +53 -0
  60. data/lib/multimedia_paradise/audio/file_duration/file_duration.rb +602 -0
  61. data/lib/multimedia_paradise/audio/genres/boogie.rb +35 -0
  62. data/lib/multimedia_paradise/audio/genres/concerts.rb +35 -0
  63. data/lib/multimedia_paradise/audio/genres/constants.rb +53 -0
  64. data/lib/multimedia_paradise/audio/genres/eurodance.rb +35 -0
  65. data/lib/multimedia_paradise/audio/genres/genre.rb +696 -0
  66. data/lib/multimedia_paradise/audio/genres/hip_hop.rb +35 -0
  67. data/lib/multimedia_paradise/audio/genres/italian_songs.rb +35 -0
  68. data/lib/multimedia_paradise/audio/genres/the_1980s.rb +35 -0
  69. data/lib/multimedia_paradise/audio/genres/trance.rb +35 -0
  70. data/lib/multimedia_paradise/audio/lyrics_fetcher.rb +238 -0
  71. data/lib/multimedia_paradise/audio/merge_audio_files.rb +136 -0
  72. data/lib/multimedia_paradise/audio/modify_year_of_audio_file.rb +151 -0
  73. data/lib/multimedia_paradise/audio/n_audio_songs.rb +216 -0
  74. data/lib/multimedia_paradise/audio/play_all_audio_files.rb +122 -0
  75. data/lib/multimedia_paradise/audio/playlist/playlist.rb +1559 -0
  76. data/lib/multimedia_paradise/audio/remove_audio.rb +98 -0
  77. data/lib/multimedia_paradise/audio/remove_last_second.rb +83 -0
  78. data/lib/multimedia_paradise/audio/report_missing_id.rb +139 -0
  79. data/lib/multimedia_paradise/audio/streamripper/constants.rb +51 -0
  80. data/lib/multimedia_paradise/audio/streamripper/streamripper_wrapper.rb +279 -0
  81. data/lib/multimedia_paradise/audio/to_mp3.rb +138 -0
  82. data/lib/multimedia_paradise/audio/to_ogg.rb +104 -0
  83. data/lib/multimedia_paradise/audio/wav_to_mp3.rb +87 -0
  84. data/lib/multimedia_paradise/audio/waveform/class.rb +341 -0
  85. data/lib/multimedia_paradise/audio/waveform/constants.rb +38 -0
  86. data/lib/multimedia_paradise/audio/waveform/log.rb +101 -0
  87. data/lib/multimedia_paradise/autoinclude.rb +3 -0
  88. data/lib/multimedia_paradise/autoinclude_remove_audio.rb +6 -0
  89. data/lib/multimedia_paradise/base/base.rb +34 -0
  90. data/lib/multimedia_paradise/base/colours.rb +354 -0
  91. data/lib/multimedia_paradise/base/commandline_arguments.rb +52 -0
  92. data/lib/multimedia_paradise/base/constants.rb +19 -0
  93. data/lib/multimedia_paradise/base/encoding.rb +31 -0
  94. data/lib/multimedia_paradise/base/misc.rb +618 -0
  95. data/lib/multimedia_paradise/base/namespace.rb +36 -0
  96. data/lib/multimedia_paradise/base/time.rb +25 -0
  97. data/lib/multimedia_paradise/colours/colours.rb +82 -0
  98. data/lib/multimedia_paradise/commandline/menu.rb +498 -0
  99. data/lib/multimedia_paradise/configuration/play_zoomed.yml +1 -0
  100. data/lib/multimedia_paradise/constants/constants.rb +23 -0
  101. data/lib/multimedia_paradise/constants/conversions.rb +62 -0
  102. data/lib/multimedia_paradise/constants/directory_constants.rb +133 -0
  103. data/lib/multimedia_paradise/constants/encodings.rb +26 -0
  104. data/lib/multimedia_paradise/constants/file_constants.rb +171 -0
  105. data/lib/multimedia_paradise/constants/misc.rb +80 -0
  106. data/lib/multimedia_paradise/constants/my_video_directory.rb +30 -0
  107. data/lib/multimedia_paradise/constants/namespace.rb +14 -0
  108. data/lib/multimedia_paradise/constants/newline.rb +14 -0
  109. data/lib/multimedia_paradise/constants/video_filetypes.rb +27 -0
  110. data/lib/multimedia_paradise/constants/web_constants.rb +150 -0
  111. data/lib/multimedia_paradise/conversions/README.md +2 -0
  112. data/lib/multimedia_paradise/conversions/conversions.rb +930 -0
  113. data/lib/multimedia_paradise/css/project.css +15 -0
  114. data/lib/multimedia_paradise/data/asoundrc +12 -0
  115. data/lib/multimedia_paradise/ffmpeg/README.md +2 -0
  116. data/lib/multimedia_paradise/ffmpeg/ffmpeg.rb +620 -0
  117. data/lib/multimedia_paradise/gui/fox/play_from_radio_station.rb +75 -0
  118. data/lib/multimedia_paradise/gui/gosu/video_player/video_player.rb +109 -0
  119. data/lib/multimedia_paradise/gui/gtk2/lyrics/lyrics.rb +33 -0
  120. data/lib/multimedia_paradise/gui/gtk2/multimedia_converter/multimedia_converter.rb +33 -0
  121. data/lib/multimedia_paradise/gui/gtk2/notebook.rb +144 -0
  122. data/lib/multimedia_paradise/gui/gtk2/play_video_from_my_collection/play_video_from_my_collection.rb +43 -0
  123. data/lib/multimedia_paradise/gui/gtk2/simple_play_widget/README.md +12 -0
  124. data/lib/multimedia_paradise/gui/gtk2/simple_play_widget/simple_play_widget.rb +40 -0
  125. data/lib/multimedia_paradise/gui/gtk2/video_collection/video_collection.rb +56 -0
  126. data/lib/multimedia_paradise/gui/gtk2/widget_increase_or_decrease_audio/widget_increase_or_decrease_audio.rb +42 -0
  127. data/lib/multimedia_paradise/gui/gtk2/youtube_downloader/youtube_downloader.rb +32 -0
  128. data/lib/multimedia_paradise/gui/gtk3/change_metadata_widget/README.md +3 -0
  129. data/lib/multimedia_paradise/gui/gtk3/change_metadata_widget/change_metadata_widget.rb +150 -0
  130. data/lib/multimedia_paradise/gui/gtk3/cut_multimedia/cut_multimedia.rb +321 -0
  131. data/lib/multimedia_paradise/gui/gtk3/information_about_a_mp3_file/information_about_a_mp3_file.rb +421 -0
  132. data/lib/multimedia_paradise/gui/gtk3/lyrics/lyrics.rb +33 -0
  133. data/lib/multimedia_paradise/gui/gtk3/multimedia_converter/multimedia_converter.rb +34 -0
  134. data/lib/multimedia_paradise/gui/gtk3/multimedia_notebook/multimedia_notebook.rb +34 -0
  135. data/lib/multimedia_paradise/gui/gtk3/play_video_from_my_collection/play_video_from_my_collection.rb +34 -0
  136. data/lib/multimedia_paradise/gui/gtk3/playlist/playlist.rb +34 -0
  137. data/lib/multimedia_paradise/gui/gtk3/radio/misc.rb +487 -0
  138. data/lib/multimedia_paradise/gui/gtk3/radio/radio.rb +698 -0
  139. data/lib/multimedia_paradise/gui/gtk3/simple_play_widget/simple_play_widget.rb +38 -0
  140. data/lib/multimedia_paradise/gui/gtk3/sound_effect_widget/sound_effect_widget.rb +34 -0
  141. data/lib/multimedia_paradise/gui/gtk3/tag_mp3_files/connect_skeleton.rb +61 -0
  142. data/lib/multimedia_paradise/gui/gtk3/tag_mp3_files/create.rb +405 -0
  143. data/lib/multimedia_paradise/gui/gtk3/tag_mp3_files/misc.rb +1820 -0
  144. data/lib/multimedia_paradise/gui/gtk3/tag_mp3_files/tag_mp3_files.config +6 -0
  145. data/lib/multimedia_paradise/gui/gtk3/tag_mp3_files/tag_mp3_files.rb +66 -0
  146. data/lib/multimedia_paradise/gui/gtk3/video_collection/video_collection.rb +43 -0
  147. data/lib/multimedia_paradise/gui/gtk3/video_editor/video_editor.rb +34 -0
  148. data/lib/multimedia_paradise/gui/gtk3/video_player/video_player.rb +34 -0
  149. data/lib/multimedia_paradise/gui/gtk3/webcam_widget/webcam_widget.rb +425 -0
  150. data/lib/multimedia_paradise/gui/gtk3/widget_increase_or_decrease_audio/widget_increase_or_decrease_audio.rb +36 -0
  151. data/lib/multimedia_paradise/gui/gtk3/youtube_channels/youtube_channels.rb +210 -0
  152. data/lib/multimedia_paradise/gui/gtk3/youtube_downloader/youtube_downloader.rb +32 -0
  153. data/lib/multimedia_paradise/gui/gui_base.rb +92 -0
  154. data/lib/multimedia_paradise/gui/libui/change_metadata_widget/change_metadata_widget.rb +115 -0
  155. data/lib/multimedia_paradise/gui/libui/cut_multimedia/cut_multimedia.rb +119 -0
  156. data/lib/multimedia_paradise/gui/libui/lyrics/lyrics.rb +67 -0
  157. data/lib/multimedia_paradise/gui/libui/simple_play_widget/simple_play_widget.rb +119 -0
  158. data/lib/multimedia_paradise/gui/libui/tag_mp3_files/tag_mp3_files.rb +268 -0
  159. data/lib/multimedia_paradise/gui/libui/video_player/video_player.rb +81 -0
  160. data/lib/multimedia_paradise/gui/libui/widget_increase_or_decrease_audio/widget_increase_or_decrease_audio.rb +126 -0
  161. data/lib/multimedia_paradise/gui/libui/youtube_channels/youtube_channels.rb +116 -0
  162. data/lib/multimedia_paradise/gui/libui/youtube_downloader/youtube_downloader.rb +107 -0
  163. data/lib/multimedia_paradise/gui/shared_code/change_metadata_widget/change_metadata_widget_module.rb +538 -0
  164. data/lib/multimedia_paradise/gui/shared_code/cut_multimedia/cut_multimedia_module.rb +268 -0
  165. data/lib/multimedia_paradise/gui/shared_code/information_about_a_mp3_file/information_about_a_mp3_file_module.rb +120 -0
  166. data/lib/multimedia_paradise/gui/shared_code/lyrics/lyrics_module.rb +141 -0
  167. data/lib/multimedia_paradise/gui/shared_code/multimedia_converter/multimedia_converter_module.rb +478 -0
  168. data/lib/multimedia_paradise/gui/shared_code/multimedia_notebook/multimedia_notebook_module.rb +171 -0
  169. data/lib/multimedia_paradise/gui/shared_code/play_video_from_my_collection/play_video_from_my_collection_module.rb +464 -0
  170. data/lib/multimedia_paradise/gui/shared_code/playlist/playlist_module.rb +151 -0
  171. data/lib/multimedia_paradise/gui/shared_code/simple_play_widget/simple_play_widget_module.rb +257 -0
  172. data/lib/multimedia_paradise/gui/shared_code/sound_effect_widget/sound_effect_widget_module.rb +173 -0
  173. data/lib/multimedia_paradise/gui/shared_code/tag_mp3_files/tag_mp3_files_module.rb +73 -0
  174. data/lib/multimedia_paradise/gui/shared_code/video_editor/video_editor_module.rb +287 -0
  175. data/lib/multimedia_paradise/gui/shared_code/video_player/video_player_module.rb +185 -0
  176. data/lib/multimedia_paradise/gui/shared_code/widget_increase_or_decrease_audio/widget_increase_or_decrease_audio_module.rb +310 -0
  177. data/lib/multimedia_paradise/gui/shared_code/youtube_downloader/youtube_downloader_module.rb +339 -0
  178. data/lib/multimedia_paradise/gui/tk/tk_multimedia_wrapper.rb +60 -0
  179. data/lib/multimedia_paradise/help/help.rb +75 -0
  180. data/lib/multimedia_paradise/images/MULTIMEDIA.jpg +0 -0
  181. data/lib/multimedia_paradise/images/MULTIMEDIA_PARADISE_ID_TAG_GUI_IN_RUBY_GTK3.png +0 -0
  182. data/lib/multimedia_paradise/images/MULTIMEDIA_PARADISE_LOGO.png +0 -0
  183. data/lib/multimedia_paradise/images/UK_flag.png +0 -0
  184. data/lib/multimedia_paradise/images/US_flag.png +0 -0
  185. data/lib/multimedia_paradise/images/austrian_flag.png +0 -0
  186. data/lib/multimedia_paradise/images/french_flag.png +0 -0
  187. data/lib/multimedia_paradise/images/german_flag.png +0 -0
  188. data/lib/multimedia_paradise/images/radio_image.png +0 -0
  189. data/lib/multimedia_paradise/images/trance.png +0 -0
  190. data/lib/multimedia_paradise/java/AudioPlayer.class +0 -0
  191. data/lib/multimedia_paradise/java/AudioPlayer.java +103 -0
  192. data/lib/multimedia_paradise/java/README.md +3 -0
  193. data/lib/multimedia_paradise/misc/long_format_to_milliseconds_converter.rb +182 -0
  194. data/lib/multimedia_paradise/misc/milliseconds_to_long_format_converter.rb +186 -0
  195. data/lib/multimedia_paradise/multimedia/analyse_multimedia_file.rb +180 -0
  196. data/lib/multimedia_paradise/multimedia/avisynth/README.md +4 -0
  197. data/lib/multimedia_paradise/multimedia/avisynth/avisynth_code.avs +471 -0
  198. data/lib/multimedia_paradise/multimedia/base.rb +60 -0
  199. data/lib/multimedia_paradise/multimedia/chord.rb +174 -0
  200. data/lib/multimedia_paradise/multimedia/convert_audio_to_video_with_image.rb +171 -0
  201. data/lib/multimedia_paradise/multimedia/cut_multimedia/10_minutes_chop.rb +29 -0
  202. data/lib/multimedia_paradise/multimedia/cut_multimedia/15_minutes_chop.rb +29 -0
  203. data/lib/multimedia_paradise/multimedia/cut_multimedia/30_minutes_chop.rb +29 -0
  204. data/lib/multimedia_paradise/multimedia/cut_multimedia/5_minutes_chop.rb +29 -0
  205. data/lib/multimedia_paradise/multimedia/cut_multimedia/cut_multimedia.rb +2017 -0
  206. data/lib/multimedia_paradise/multimedia/cut_multimedia/evaluate_from_this_file.rb +79 -0
  207. data/lib/multimedia_paradise/multimedia/cut_multimedia/interactive_menu.rb +514 -0
  208. data/lib/multimedia_paradise/multimedia/interactive_shell.rb +84 -0
  209. data/lib/multimedia_paradise/multimedia/merge_multimedia.rb +125 -0
  210. data/lib/multimedia_paradise/multimedia/note.rb +500 -0
  211. data/lib/multimedia_paradise/multimedia/play_from_this_list.rb +163 -0
  212. data/lib/multimedia_paradise/multimedia/read_meta_tags.rb +173 -0
  213. data/lib/multimedia_paradise/multimedia/simulate_youtube_playlist.rb +209 -0
  214. data/lib/multimedia_paradise/multimedia/start_length_duration.rb +205 -0
  215. data/lib/multimedia_paradise/multimedia/video_downloader/video_downloader.rb +143 -0
  216. data/lib/multimedia_paradise/project/project.rb +47 -0
  217. data/lib/multimedia_paradise/requires/require_audio_files.rb +74 -0
  218. data/lib/multimedia_paradise/requires/require_cut_multimedia.rb +7 -0
  219. data/lib/multimedia_paradise/requires/require_extract_audio.rb +7 -0
  220. data/lib/multimedia_paradise/requires/require_file_duration.rb +7 -0
  221. data/lib/multimedia_paradise/requires/require_streamripper.rb +7 -0
  222. data/lib/multimedia_paradise/requires/require_the_audio_player.rb +7 -0
  223. data/lib/multimedia_paradise/requires/require_the_multimedia_paradise_project.rb +38 -0
  224. data/lib/multimedia_paradise/requires/require_the_sinatra_components.rb +7 -0
  225. data/lib/multimedia_paradise/requires/require_toplevel_methods_files.rb +25 -0
  226. data/lib/multimedia_paradise/requires/require_video_files.rb +25 -0
  227. data/lib/multimedia_paradise/requires/require_video_player.rb +7 -0
  228. data/lib/multimedia_paradise/sinatra/app.rb +311 -0
  229. data/lib/multimedia_paradise/sinatra/embeddable_interface.rb +379 -0
  230. data/lib/multimedia_paradise/sound_effects/README.md +12 -0
  231. data/lib/multimedia_paradise/sound_effects/cat_meow.mp3 +0 -0
  232. data/lib/multimedia_paradise/sound_effects/channel_opened.mp3 +0 -0
  233. data/lib/multimedia_paradise/sound_effects/phone_ring.mp3 +0 -0
  234. data/lib/multimedia_paradise/statistics/README.md +5 -0
  235. data/lib/multimedia_paradise/statistics/video.rb +84 -0
  236. data/lib/multimedia_paradise/toplevel_cut_audio.rb +16 -0
  237. data/lib/multimedia_paradise/toplevel_methods/analyze_audio_stream.rb +31 -0
  238. data/lib/multimedia_paradise/toplevel_methods/chop_into_segments_of_n_seconds_size.rb +32 -0
  239. data/lib/multimedia_paradise/toplevel_methods/chop_off_first_five_minutes.rb +22 -0
  240. data/lib/multimedia_paradise/toplevel_methods/chop_off_first_n_seconds.rb +92 -0
  241. data/lib/multimedia_paradise/toplevel_methods/chop_off_first_ten_minutes.rb +22 -0
  242. data/lib/multimedia_paradise/toplevel_methods/chop_off_first_two_minutes.rb +24 -0
  243. data/lib/multimedia_paradise/toplevel_methods/codecs.rb +50 -0
  244. data/lib/multimedia_paradise/toplevel_methods/copy_and_merge_this_video_n_times.rb +51 -0
  245. data/lib/multimedia_paradise/toplevel_methods/copy_file.rb +18 -0
  246. data/lib/multimedia_paradise/toplevel_methods/create_video_from_this_audio.rb +65 -0
  247. data/lib/multimedia_paradise/toplevel_methods/cut_from_to.rb +156 -0
  248. data/lib/multimedia_paradise/toplevel_methods/delay_audio.rb +31 -0
  249. data/lib/multimedia_paradise/toplevel_methods/denoise.rb +90 -0
  250. data/lib/multimedia_paradise/toplevel_methods/deshake.rb +43 -0
  251. data/lib/multimedia_paradise/toplevel_methods/e.rb +16 -0
  252. data/lib/multimedia_paradise/toplevel_methods/encode_this_video.rb +49 -0
  253. data/lib/multimedia_paradise/toplevel_methods/ensure_that_the_output_directory_exists.rb +27 -0
  254. data/lib/multimedia_paradise/toplevel_methods/esystem.rb +43 -0
  255. data/lib/multimedia_paradise/toplevel_methods/files_and_directories.rb +90 -0
  256. data/lib/multimedia_paradise/toplevel_methods/flip_and_rotate.rb +58 -0
  257. data/lib/multimedia_paradise/toplevel_methods/increase_volume_of_this_audio_file.rb +61 -0
  258. data/lib/multimedia_paradise/toplevel_methods/is_a_multimedia_file.rb +27 -0
  259. data/lib/multimedia_paradise/toplevel_methods/is_audio_file.rb +27 -0
  260. data/lib/multimedia_paradise/toplevel_methods/is_image_file.rb +31 -0
  261. data/lib/multimedia_paradise/toplevel_methods/is_on_roebe.rb +17 -0
  262. data/lib/multimedia_paradise/toplevel_methods/is_video_file.rb +62 -0
  263. data/lib/multimedia_paradise/toplevel_methods/merge_multimedia_file.rb +327 -0
  264. data/lib/multimedia_paradise/toplevel_methods/merge_these_videos.rb +105 -0
  265. data/lib/multimedia_paradise/toplevel_methods/misc.rb +885 -0
  266. data/lib/multimedia_paradise/toplevel_methods/n_local_videos.rb +56 -0
  267. data/lib/multimedia_paradise/toplevel_methods/opn.rb +24 -0
  268. data/lib/multimedia_paradise/toplevel_methods/output_directory.rb +59 -0
  269. data/lib/multimedia_paradise/toplevel_methods/player_in_use.rb +80 -0
  270. data/lib/multimedia_paradise/toplevel_methods/query_the_audio_codec_of_this_file.rb +24 -0
  271. data/lib/multimedia_paradise/toplevel_methods/radio.rb +360 -0
  272. data/lib/multimedia_paradise/toplevel_methods/rds.rb +24 -0
  273. data/lib/multimedia_paradise/toplevel_methods/return_all_video_files.rb +64 -0
  274. data/lib/multimedia_paradise/toplevel_methods/return_data_from_video_collection_file_for_this_entry.rb +38 -0
  275. data/lib/multimedia_paradise/toplevel_methods/return_duration_of_this_multimedia_file.rb +27 -0
  276. data/lib/multimedia_paradise/toplevel_methods/return_full_name_for_video_at_this_position.rb +54 -0
  277. data/lib/multimedia_paradise/toplevel_methods/return_path_to_random_simpsons_video_file.rb +43 -0
  278. data/lib/multimedia_paradise/toplevel_methods/return_random_video_file_from_the_video_collection.rb +73 -0
  279. data/lib/multimedia_paradise/toplevel_methods/return_screen_resolution.rb +24 -0
  280. data/lib/multimedia_paradise/toplevel_methods/run_sys_command.rb +30 -0
  281. data/lib/multimedia_paradise/toplevel_methods/scale_video.rb +27 -0
  282. data/lib/multimedia_paradise/toplevel_methods/set_title_of.rb +65 -0
  283. data/lib/multimedia_paradise/toplevel_methods/slow_down_this_video_file.rb +33 -0
  284. data/lib/multimedia_paradise/toplevel_methods/start_screencast.rb +70 -0
  285. data/lib/multimedia_paradise/toplevel_methods/subtitles.rb +59 -0
  286. data/lib/multimedia_paradise/toplevel_methods/to_flac.rb +30 -0
  287. data/lib/multimedia_paradise/toplevel_methods/to_mp4.rb +24 -0
  288. data/lib/multimedia_paradise/toplevel_methods/total_duration.rb +35 -0
  289. data/lib/multimedia_paradise/toplevel_methods/use_lame_codec.rb +32 -0
  290. data/lib/multimedia_paradise/toplevel_methods/video_dataset.rb +76 -0
  291. data/lib/multimedia_paradise/version/version.rb +28 -0
  292. data/lib/multimedia_paradise/video/all_videos.rb +101 -0
  293. data/lib/multimedia_paradise/video/capture_screen.rb +285 -0
  294. data/lib/multimedia_paradise/video/check_numbers.rb +215 -0
  295. data/lib/multimedia_paradise/video/columbo/columbo.rb +139 -0
  296. data/lib/multimedia_paradise/video/copy_missing_video_files.rb +293 -0
  297. data/lib/multimedia_paradise/video/copy_random_video.rb +98 -0
  298. data/lib/multimedia_paradise/video/correct_video_numbers.rb +278 -0
  299. data/lib/multimedia_paradise/video/create_dvd.rb +50 -0
  300. data/lib/multimedia_paradise/video/encode_video.rb +81 -0
  301. data/lib/multimedia_paradise/video/ffmpeg_options.rb +156 -0
  302. data/lib/multimedia_paradise/video/find_video/constants.rb +23 -0
  303. data/lib/multimedia_paradise/video/find_video/find_video.rb +493 -0
  304. data/lib/multimedia_paradise/video/fix_married_with_children_videos.rb +70 -0
  305. data/lib/multimedia_paradise/video/guess_video_name.rb +189 -0
  306. data/lib/multimedia_paradise/video/imdb_rating/imdb_rating.rb +141 -0
  307. data/lib/multimedia_paradise/video/mike_hammer/mike_hammer.rb +74 -0
  308. data/lib/multimedia_paradise/video/missing_video_files/missing_video_files.rb +286 -0
  309. data/lib/multimedia_paradise/video/movie_searcher.rb +281 -0
  310. data/lib/multimedia_paradise/video/mplayer_wrapper.rb +504 -0
  311. data/lib/multimedia_paradise/video/play_random_file.rb +91 -0
  312. data/lib/multimedia_paradise/video/play_random_realvideo.rb +87 -0
  313. data/lib/multimedia_paradise/video/prepare_video_lecture.rb +272 -0
  314. data/lib/multimedia_paradise/video/random_video.rb +310 -0
  315. data/lib/multimedia_paradise/video/registered_video_file.rb +131 -0
  316. data/lib/multimedia_paradise/video/remove_metadata.rb +52 -0
  317. data/lib/multimedia_paradise/video/rename_video_file.rb +149 -0
  318. data/lib/multimedia_paradise/video/report_local_videos.rb +106 -0
  319. data/lib/multimedia_paradise/video/report_missing_videos_in_the_yaml_file.rb +107 -0
  320. data/lib/multimedia_paradise/video/resolution.rb +159 -0
  321. data/lib/multimedia_paradise/video/simpsons.rb +129 -0
  322. data/lib/multimedia_paradise/video/speed_up_video.rb +135 -0
  323. data/lib/multimedia_paradise/video/split_this_video.rb +126 -0
  324. data/lib/multimedia_paradise/video/srt_regex.rb +211 -0
  325. data/lib/multimedia_paradise/video/store_available_video_files.rb +138 -0
  326. data/lib/multimedia_paradise/video/the_simpsons/README.md +9 -0
  327. data/lib/multimedia_paradise/video/the_simpsons/good_the_simpsons_episodes.rb +107 -0
  328. data/lib/multimedia_paradise/video/the_simpsons/the_simpsons.rb +82 -0
  329. data/lib/multimedia_paradise/video/video.rb +14 -0
  330. data/lib/multimedia_paradise/video/video_encoding_settings.rb +57 -0
  331. data/lib/multimedia_paradise/video/video_genres.rb +337 -0
  332. data/lib/multimedia_paradise/video/video_information.rb +443 -0
  333. data/lib/multimedia_paradise/video/video_metadata.rb +132 -0
  334. data/lib/multimedia_paradise/video/video_player.rb +581 -0
  335. data/lib/multimedia_paradise/video/video_renamer.rb +160 -0
  336. data/lib/multimedia_paradise/video/watermark.rb +290 -0
  337. data/lib/multimedia_paradise/video/youtube/youtube.rb +17 -0
  338. data/lib/multimedia_paradise/video/youtube_embedder.rb +235 -0
  339. data/lib/multimedia_paradise/www/GIS/GIS.cgi +147 -0
  340. data/lib/multimedia_paradise/www/HDMI/HDMI.cgi +34 -0
  341. data/lib/multimedia_paradise/www/TALES_FROM_THE_CRYPT.html +71 -0
  342. data/lib/multimedia_paradise/www/alsa/alsa.cgi +7 -0
  343. data/lib/multimedia_paradise/www/alsa/alsa.rb +309 -0
  344. data/lib/multimedia_paradise/www/alsa/alsa.sinatra +56 -0
  345. data/lib/multimedia_paradise/www/audacity.cgi +30 -0
  346. data/lib/multimedia_paradise/www/audio/audio.cgi +9 -0
  347. data/lib/multimedia_paradise/www/audio/audio.rb +2739 -0
  348. data/lib/multimedia_paradise/www/audio/audio.sinatra +56 -0
  349. data/lib/multimedia_paradise/www/avisynth/avisynth.cgi +172 -0
  350. data/lib/multimedia_paradise/www/best_voices/best_voices.cgi +60 -0
  351. data/lib/multimedia_paradise/www/cassette/cassette.cgi +723 -0
  352. data/lib/multimedia_paradise/www/codecs/codecs.cgi +95 -0
  353. data/lib/multimedia_paradise/www/componists/vivaldi.cgi +218 -0
  354. data/lib/multimedia_paradise/www/decibel.cgi +79 -0
  355. data/lib/multimedia_paradise/www/ffmpeg/ffmpeg.cgi +439 -0
  356. data/lib/multimedia_paradise/www/lame/lame.cgi +7 -0
  357. data/lib/multimedia_paradise/www/lame/lame.rb +101 -0
  358. data/lib/multimedia_paradise/www/lame/lame.sinatra +56 -0
  359. data/lib/multimedia_paradise/www/lilypond.cgi +96 -0
  360. data/lib/multimedia_paradise/www/lyrics/lyrics.cgi +49 -0
  361. data/lib/multimedia_paradise/www/midi/al_adagi.mid +0 -0
  362. data/lib/multimedia_paradise/www/play_songs.cgi +102 -0
  363. data/lib/multimedia_paradise/www/play_this_video_file.cgi +100 -0
  364. data/lib/multimedia_paradise/www/pulseaudio/pulseaudio.cgi +7 -0
  365. data/lib/multimedia_paradise/www/pulseaudio/pulseaudio.rb +168 -0
  366. data/lib/multimedia_paradise/www/pulseaudio/pulseaudio.sinatra +56 -0
  367. data/lib/multimedia_paradise/www/rhythmbox/rhythmbox.cgi +120 -0
  368. data/lib/multimedia_paradise/www/sound_theory.cgi +163 -0
  369. data/lib/multimedia_paradise/www/tv/tv.cgi +182 -0
  370. data/lib/multimedia_paradise/www/video/video.cgi +7 -0
  371. data/lib/multimedia_paradise/www/video/video.rb +7709 -0
  372. data/lib/multimedia_paradise/www/video/video.sinatra +52 -0
  373. data/lib/multimedia_paradise/www/web_streams.cgi +58 -0
  374. data/lib/multimedia_paradise/yaml/audio_formats.yml +14 -0
  375. data/lib/multimedia_paradise/yaml/best_songs_in_an_era/eurodance/top20.yml +28 -0
  376. data/lib/multimedia_paradise/yaml/game_shows/ruck_zuck/ruck_zuck.yml +25 -0
  377. data/lib/multimedia_paradise/yaml/genres/1980s.yml +198 -0
  378. data/lib/multimedia_paradise/yaml/genres/README.md +5 -0
  379. data/lib/multimedia_paradise/yaml/genres/boogie.yml +68 -0
  380. data/lib/multimedia_paradise/yaml/genres/concerts.yml +29 -0
  381. data/lib/multimedia_paradise/yaml/genres/eurodance.yml +456 -0
  382. data/lib/multimedia_paradise/yaml/genres/hip_hop.yml +49 -0
  383. data/lib/multimedia_paradise/yaml/genres/italian_songs.yml +53 -0
  384. data/lib/multimedia_paradise/yaml/genres/trance.yml +167 -0
  385. data/lib/multimedia_paradise/yaml/good_horror_movies/good_horror_movies.yml +12 -0
  386. data/lib/multimedia_paradise/yaml/good_movie_actors/good_movie_actors.yml +6 -0
  387. data/lib/multimedia_paradise/yaml/image_formats.yml +8 -0
  388. data/lib/multimedia_paradise/yaml/internal/README.md +2 -0
  389. data/lib/multimedia_paradise/yaml/internal/installed_binaries.yml +31 -0
  390. data/lib/multimedia_paradise/yaml/lyrics.yml +6275 -0
  391. data/lib/multimedia_paradise/yaml/movie_reviews/the_hateful_eight_september_2016.md +305 -0
  392. data/lib/multimedia_paradise/yaml/music_genres.yml +51 -0
  393. data/lib/multimedia_paradise/yaml/playlist.yml +127 -0
  394. data/lib/multimedia_paradise/yaml/radio/README.md +5 -0
  395. data/lib/multimedia_paradise/yaml/radio/radio_stations.yml +359 -0
  396. data/lib/multimedia_paradise/yaml/song_tags.yml +815 -0
  397. data/lib/multimedia_paradise/yaml/tales_from_the_crypt/tales_from_the_crypt.yml +418 -0
  398. data/lib/multimedia_paradise/yaml/tom_and_jerry/README.md +2 -0
  399. data/lib/multimedia_paradise/yaml/tom_and_jerry/tom_and_jerry_episodes.yml +27 -0
  400. data/lib/multimedia_paradise/yaml/tv_channels/tv_channels.yml +46 -0
  401. data/lib/multimedia_paradise/yaml/use_this_video_player.yml +1 -0
  402. data/lib/multimedia_paradise/yaml/video/video.yml +26 -0
  403. data/lib/multimedia_paradise/yaml/video_collection/video_collection.yml +1933 -0
  404. data/lib/multimedia_paradise/yaml/video_encoding_settings.yml +62 -0
  405. data/lib/multimedia_paradise/yaml/video_filter_aliases.yml +221 -0
  406. data/lib/multimedia_paradise/yaml/youtube/alltagsgeschichte/alltagsgeschichte.yml +172 -0
  407. data/lib/multimedia_paradise/yaml/youtube/songs/README.md +3 -0
  408. data/lib/multimedia_paradise/yaml/youtube/songs/songs.yml +6 -0
  409. data/lib/multimedia_paradise/yaml/youtube_playlist/youtube_playlist.yml +6 -0
  410. data/lib/multimedia_paradise.rb +5 -0
  411. data/multimedia_paradise.gemspec +76 -0
  412. data/test/testing_audio_player.rb +15 -0
  413. data/test/testing_ffmpeg_options.rb +14 -0
  414. data/test/testing_file_duration.rb +17 -0
  415. data/test/testing_modify_year_of_audio_file.rb +14 -0
  416. data/test/testing_multimedia_paradise_project.rb +151 -0
  417. metadata +581 -0
@@ -0,0 +1,305 @@
1
+ I finally got around being able to watch "The Hateful Eight" in September
2
+ of 2016. Took me a bit longer to write a review afterwards.
3
+
4
+ At any rate - this review is of considerable length, so I have split
5
+ it up into "The Good" and "The Bad" parts respectively (no ugly parts,
6
+ these may be found integrated into "The Bad" subsection). It also is my
7
+ first review, so who knows whether I will do more of these reviews
8
+ or not. This review may not even be published, but instead reside as
9
+ a blueprint here in this directory.
10
+
11
+ I won't go into the storyline much at all since I do not want to
12
+ include too many spoilers.
13
+
14
+ The movie can perhaps best be described as "a western detective
15
+ storyline", a hybrid movie. I recall that I read somewhere that
16
+ Ennio Morricone said that he could not produce the same music
17
+ for this movie that he once did for Sergio in the old
18
+ spaghetti-western movies era, and Ennio actually was right when
19
+ he said that in retrospect.
20
+
21
+ Quentin may not have realized it back then at that moment in time,
22
+ but that was the correct answer by Ennio to give, because the movie
23
+ Quentin directed is very different from what Sergio created. So
24
+ the music would not have fit 1:1, hence why the music is a bit
25
+ different and more gloomy compared to Ennio's musical score for
26
+ other western movies.
27
+
28
+ I also think that the music score that Ennio created fit to the
29
+ movie "The Hateful Eight" perfectly well, even though I happen
30
+ to believe that it was not Ennio's best music score either - but
31
+ he deserved the award for his earlier work anyway, and the music
32
+ for the movie is not bad at all. It is a fitting music, sort of
33
+ like Hans Zimmer is doing for the movies he acts as audio chief
34
+ in charge. Even Hans Zimmer does not always produce great scores,
35
+ but he does usually create music that fits very well to the movie
36
+ at hand. At any rate, back to the movie The Hateful Eight itself.
37
+
38
+ I believe that the name for the movie was in many ways inspired
39
+ clearly from "The Glorious Seven", so Quentin did a slight mockery
40
+ here, even more so as "The Glorious Seven" was based on the older
41
+ "The Seven Samurai" movie from Japan.
42
+
43
+ Quentin put characters into the movie that people could hate, though
44
+ also perhaps understand at the same time, given their background.
45
+ None of the main characters is a truly lovable or very likeable
46
+ person, not even the gallows dude and neither that dude from
47
+ England.
48
+
49
+ They are all sort of villains, all of them, combined to meet at
50
+ the same location - some more villains than others. But no real
51
+ hero as such. In some ways this was true of the old movie "The
52
+ Good, The Bad and The Ugly" as well - all three were
53
+ ultimately criminals or at the least ruthless killers.
54
+
55
+ This part of the movie "The Hateful Eight" is pretty nice and
56
+ was very well done - the character development part was a success.
57
+ Sure, there are some flaws here and there; the mexican guy was a
58
+ bit odd, then some other characters were a bit ... off too, over
59
+ the top. A jamaican accent? Seriously? In a tavern far, far away?
60
+ Come on now ... that was more an attempt to spice-it-up a bit by
61
+ Quentin. And the crazy lady that was chained by the sheriff was
62
+ also a bit over-the-top; I'd almost call it overacting.
63
+
64
+ But if we look past these points, I think that the set of
65
+ characters was good and well-developed. Here Quentin deserves
66
+ some praise for the plot.
67
+
68
+ My favourite two characters played in the movie were actually
69
+ played by Samuel Jackson (no surprise, he is a genius in just about
70
+ all movies directed by Quentin; my favourite two performances
71
+ from him still came by Pulp Fiction, which I think is Quentin's
72
+ best movie, but also Jackie Brown, where Samuel convincingly
73
+ played a drug dealer pimp); and the other character I liked
74
+ was portrayed Kurt Russel. The accent was just awesome. The
75
+ performance was also one of his best, in my opinion. He really
76
+ made me believe that he was a ruthless sheriff from the get
77
+ go - in some ways lawful, but also brutal. An evil lawful
78
+ sheriff so to speak.
79
+
80
+ Granted, beating up his female prisoner in every third or fourth
81
+ scene was a bit excessive in regards to violence, but hey - that
82
+ is Quentin's style. A bit over the top, as always. Perhaps there
83
+ could have been fewer violent beat-up scenes, but we can expect
84
+ this from a Quentin movie in many ways and I don't hold this quite
85
+ against him.
86
+
87
+ I absolutely loved the way he integrated the landscape into the
88
+ movie. This reminded me of the initial scenery in The Shining.
89
+ I think he could have integrated more of this, because once
90
+ the movie played in the tavern, it was like a repetition of
91
+ the older movie he did called "Reservoir Dogs". Which was a good
92
+ movie too - not as good as Pulp Fiction, but a good movie
93
+ nonetheless. It would have been interesting if he could have
94
+ played more landscape-like plots perhaps before everyone would
95
+ meet in the tavern. Because once they were in the tavern, they
96
+ were kind of "locked in" until the movie would resolve.
97
+
98
+ Now, I will rate the movie "The Hateful Eight" as a 5 out of 10,
99
+ perhaps a 6 out of then, which isn't that great but it is still
100
+ quite fair, in my opinion. A bit above average. (Addendum:
101
+ currently, in 2021, the movie has a rating of 7.8 on IMDB, so
102
+ perhaps my lower score of 6 was indeed a bit too low.)
103
+
104
+ So then, why would I not rate it above 6?
105
+
106
+ The thing is that the movie also had some serious shortcomings,
107
+ much more so than in others Quentin did - yet at the same time,
108
+ I also think that the movie had a LOT more potential than it
109
+ achieved, and I think that this can be explained because
110
+ Quentin did a few mistakes.
111
+
112
+ Most of these have been mentioned before on IMDB reviews; the
113
+ awkward narration in the middle of the movie was really really
114
+ AWFUL. Someone else explained that it was for in-move pause
115
+ between coffee break or toilet break, so I can understand this
116
+ a bit, but even then, it could have had some more visual effect
117
+ and someone who has a better NARRATIVE voice than Quentin.
118
+
119
+ It really sort of cheapened the whole movie - but even that
120
+ isn't the main problem with the movie. It is just one more
121
+ element where the movie really did not live up to its full
122
+ potential.
123
+
124
+ The movie draws some inspiration from The Good, The Bad and
125
+ The Ugly too, because if you think about it, in Sergio's older
126
+ movie all three are actually evil dudes. Even The Good played
127
+ by Clint Eastwood. I mean he sort of tortures The Ugly (Eli
128
+ Wallach, who I think was actually the key character in that
129
+ movie and also the best performance IMO, even though both
130
+ Clint and Lee van Cliff were awesome too). Also note that in
131
+ The Good, The Bad and The Ugly, all of them also had a slight
132
+ "softer" side. Sure, The Bad is really mean but even he does
133
+ not kill everyone at plain sight. For instance, he once
134
+ calls that fat big dude to stop slapping The Ugly with a
135
+ "That's enough.". And he also does not torture The Good,
136
+ even though it is explained that he knew that The Good
137
+ would not talk when tortured; if he were fully evil he
138
+ may have tortured anyway just to make a point. But he was an
139
+ "evil" person with a purpose and a goal so that was his softer
140
+ side.
141
+
142
+ The Good is semi-good, like when Clint Eastwood claims to want to
143
+ hang The Ugly but then shoots him into freedom from the gallows,
144
+ so he is really the good guy clearly, even though he is also
145
+ mean and evil. And even the Bad is not the most evil ever, just
146
+ corrupt and greedy.
147
+
148
+ Now, in "The Hateful Eight", I think they are all pretty evil
149
+ folks. Perhaps the Sheriff is not so evil initially but he
150
+ quickly gets corrupted as the movie drags on. Samuel Jackson
151
+ is pretty evil and a liar; in some ways he is actually the
152
+ main actor or in-movie narrator, which is interesting.
153
+
154
+ There are a lot of small ideas that partially make up for some
155
+ of the other problems in the movie. For instance, I think
156
+ that Quentin had a great idea there with the whole scenery
157
+ of the movie.
158
+
159
+ The icy landscape is really beautiful. The various other settings
160
+ are nifty as well - the big wooden house which gets "split up" into
161
+ different sectors inside, once the actors are in the main room.
162
+ The stable is quite some way away from the main house, which
163
+ adds to the creepy atmosphere; the whole movie is both a western
164
+ but also a detective story of some sort.
165
+
166
+ The wide angle of the camera was nice too, you really get to see
167
+ a lot in great detail here. So for this alone, that is actually
168
+ worth 2 of the points here. Granted, in the second half of
169
+ the movie you no longer see any of the scenery; Quentin could
170
+ have perhaps integrated more scenery from the outside into the
171
+ storyline, to really make best use of the ... 35mm camera or
172
+ whatever he was using there.
173
+
174
+ In one scene, Samuel Jackson notices some red drop on the ground,
175
+ a candy. Why the candy is on the ground is explained in another
176
+ part of the movie, which fits together decently well.
177
+
178
+ The action scenes, while not that many and typically Quentin's
179
+ style is over-the-top, are ok too. It's a bit too much drama
180
+ for my taste, with the wounded actors slowly dying away but I
181
+ guess this is his trademark.
182
+
183
+ I also think that the plot is ok in principle. The main scene
184
+ initially is Kurt Russell being the bountyhunter and dragging
185
+ his prisoner about. It makes some sense that he is anxious
186
+ that someone will try to free his prisoner.
187
+
188
+ Samuel Jackson is also a great storyteller in the movie, I
189
+ found the story where he would kill the son of someone else
190
+ quite curious - everyone could see that it was a made-up
191
+ story crafted in order to provoke the listener but it still
192
+ was a good idea in my opinion.
193
+
194
+ The music was ok but Ennio did better scores really. Ennio
195
+ explained that he did not want to copy his work for Sergio,
196
+ which I can understand; still, the music was not as good as
197
+ he did when he was younger. I think that Ennio Morricone is
198
+ awesome but it was not his best work. Ennio explained that
199
+ he wanted to do another style too, and I understand the
200
+ explanation but still, I can see that Quentin was not
201
+ completely convinced. Then again, the movie is also not
202
+ an oldschool western either with the detective component,
203
+ so I guess that goes both ways; it definitely was not an
204
+ italo-western, also not an US-western, it was more a
205
+ Quentin-Detective-western mixed with Reservoir Dogs and
206
+ Pulp Fiction.
207
+
208
+ The actors were all good - I don't think there was anyone
209
+ who was really bad. Samuel was the best by far in my opinion;
210
+ Kurt was good too. The noble englishman was ok; a bit
211
+ over-drama but ok regardless.
212
+
213
+ Anyway. I will now come to the parts of the movie that do not
214
+ work:
215
+
216
+ There are quite some weaknesses in the movie, some minor ones,
217
+ some larger ones.
218
+
219
+ For instance, Samuel so happens to shoot down someone else.
220
+
221
+ Shortly afterwards, nobody else minded this. Uhm ... now
222
+ excuse me but why did not even the coachman mind this?
223
+
224
+ Or the Sheriff??? I mean, seriously? What the fuck??? Someone
225
+ who is supposed to uphold the law?
226
+
227
+ They all pretended as if nothing happened!
228
+
229
+ I understand that the thugs did not care, no problem here,
230
+ but the other folks? Hmmmmm. Perhaps the Sheriff was a huge
231
+ thug too, but it wasn't as obvious. Sure, he beat up a
232
+ woman but a Sheriff who does not uphold the law is already
233
+ such a huge thug that you wonder why he'd still be Sheriff.
234
+
235
+ You need to keep in mind that they would not know Samuel's
236
+ character before that - but the new Sheriff instantly accepts
237
+ it when Samuel's character provokes someone else into shooting
238
+ at him and then killing the one who tries to kill him? Without
239
+ saying ANYTHING? Come on ... you could well be the very next
240
+ person who gets shot down. I would have at least expected SOME
241
+ kind of other reaction than the blanket ... zero reaction.
242
+ This is as if Quentin just wanted the scenery, and did not
243
+ care about the plausability of reaching it.
244
+
245
+ A lot of the movie reminds me of Pulp Fiction and especially
246
+ Reservoir Dogs. If you saw both, but in particular the latter,
247
+ it is VERY much similar. The Reservoir Dogs is also shot in
248
+ a somewhat similar way - like one room, or few rooms where
249
+ the action all takes place. And lots of talking, too.
250
+
251
+ The action is a bit from Kill Bill over-the-top. It's not
252
+ bad IMO but sometimes it just is over-drama. Like the female
253
+ prisoner, after the 5th time of getting blood splattered
254
+ all over her, it sorta was too much really. How much more
255
+ blood do you have? 10 liters? 50? I mean, really.
256
+
257
+ The narrator in the middle of the movie destroyed a lot too.
258
+
259
+ I think it would have been better if Quentin would have used
260
+ another way to get the storyline going forward.
261
+
262
+ Another problem I would make out is the frequent use of the
263
+ word "nigga". Ok, I get it, Quentin likes to dramatize with
264
+ racist dialogue and we can assume that this was more frequent
265
+ in the old days of western-movies, the secession wars and so
266
+ on. This part is "fine" in the sense of a movie and narration.
267
+ Slaves and abusing them as cattle.
268
+
269
+ But - the other part is the DELIBERATE use of the word to the
270
+ point of where the whole scripted dialogue revolves around that
271
+ single word, more or less. And I feel that this just
272
+ distracts rather than really add much at all to the scenes - after
273
+ the 20th use of the word itself, I wondered a lot. What is the
274
+ point of the word if it distracts so much and destroys any
275
+ dialogue or monologue?
276
+
277
+ I think for me one big problem really was that so much reminded me
278
+ of Reservoir Dogs. I actually think that Reservoir Dogs also
279
+ was the better movie here, simply because it was original
280
+ back then and did not try to incorporate so many different ideas.
281
+
282
+ It is much closer to Quentin's real "original" way to create
283
+ movies.
284
+
285
+ I am somewhat disappointed with the last ~10 years from Quentin,
286
+ his older movies were really much, much better - Reservoir Dogs,
287
+ Pulp Fiction in particular, but also Jackie Brown. Sure, Jackie
288
+ Brown isn't as great as Pulp Fiction, but I think that it was
289
+ a really, really nicely made movie, with characters that are
290
+ all somewhat believable. The character development still is
291
+ an area where Quentin is good.
292
+
293
+ In many ways, while he still tries to bring in new concepts,
294
+ and he did (Django - black actor as the hero of a time where
295
+ racism was massively integrated into the southern US society,
296
+ good idea for that; Grindhouse the scenery was nice in particular
297
+ for the blood scenes, which in some ways can also be seen
298
+ in The Hateful Eight in the initial landscape scenery), there
299
+ is sort of the "big picture" lacking. Something that would
300
+ allow Quentin to leave behind the flicks and transcend into
301
+ his own style. Nothing wrong with homage to good old movies,
302
+ don't get me wrong but after a while, Quentin should really
303
+ get to define a style that uniquely fits to him AND to the
304
+ movie itself too. Just like he did with Pulp Fiction,
305
+ Reservoir Dogs and Jackie Brown.
@@ -0,0 +1,51 @@
1
+ # =========================================================================== #
2
+ # === music_genres.yml
3
+ #
4
+ # This listing is not necessarily complete, but the functionality was
5
+ # needed for a GUI in November 2020, hence why this file was created.
6
+ #
7
+ # For a list of all genres have a look at wikipedia here:
8
+ #
9
+ # https://en.wikipedia.org/wiki/List_of_ID3v1_Genres#Specification
10
+ #
11
+ # =========================================================================== #
12
+
13
+ - Alternative
14
+ - Anime
15
+ - Austropop
16
+ - Blues
17
+ - Classical
18
+ - Classic rock
19
+ - Comedy
20
+ - Country
21
+ - Dance
22
+ - Disco
23
+ - Easy Listening
24
+ - Electronic
25
+ - Eurodance
26
+ - Fitness and Workout
27
+ - Grunge
28
+ - Hard rock
29
+ - Hip-Hop
30
+ - Industrial
31
+ - Instrumental
32
+ - Italian
33
+ - Jazz
34
+ - Karaoke
35
+ - Metal
36
+ - New Age
37
+ - Oldies
38
+ - Opera
39
+ - Other
40
+ - Pop
41
+ - Rap
42
+ - Rave
43
+ - Reggae
44
+ - Retro
45
+ - Rock 'n' Roll
46
+ - R & B
47
+ - Ska
48
+ - Soul
49
+ - Soundtrack
50
+ - Trance
51
+ - Vocal
@@ -0,0 +1,127 @@
1
+ ---
2
+ - "/home/x/songs/Greenday_21Guns.mp3"
3
+ - "/home/x/songs/Greenday_Holiday.mp3"
4
+ - "/home/x/songs/TonyDiBart_TheRealThing.mp3"
5
+ - "/home/x/songs/Paradisio_Bailando.mp3"
6
+ - "/home/x/songs/HansZimmer_TheDarkKnight_Concert.mp3"
7
+ - "/home/x/songs/ZackHemsey_TheWayInstrumental.mp3"
8
+ - "/home/x/songs/Kickboxer_Soundtrack_PaulHertzog_TheEagleLands.mp3"
9
+ - "/home/x/songs/DJ_Quicksilver_HeartOfAsiaRemix.mp3"
10
+ - "/home/x/songs/Energy52_CafeDelMar.mp3"
11
+ - "/home/x/songs/HansZimmer_TheDarkKnightMix.mp3"
12
+ - "/home/x/songs/YoungMC_BustAMove.mp3"
13
+ - "/home/x/songs/Nto_Trauma_Worakls_Remix.mp3"
14
+ - "/home/x/songs/Loft_HoldOn.mp3"
15
+ - "/home/x/songs/Desireless_VoyageVoyage.mp3"
16
+ - "/home/x/songs/DeLaSoul_AllGood.mp3"
17
+ - "/home/x/songs/StarTrek_FirstContactIntro.mp3"
18
+ - "/home/x/songs/Starship_NothingsGonnaStopUsNow.mp3"
19
+ - "/home/x/songs/2Raumwohnung_MucchioSelvaggio.mp3"
20
+ - "/home/x/songs/2Unlimited_NoLimit.mp3"
21
+ - "/home/x/songs/ChakaKhan_AintNoBody.mp3"
22
+ - "/home/x/songs/EnnioMorricone_Concerto_TheEcstasyOfGold.mp3"
23
+ - "/home/x/songs/RJD2_Ghostwriter.mp3"
24
+ - "/home/x/songs/EricBAndRakim_PaidInFull.mp3"
25
+ - "/home/x/songs/SimplyRed_Stars.mp3"
26
+ - "/home/x/songs/2Pac_FakeAssBitches.mp3"
27
+ - "/home/x/songs/Clock-OhWhatANight.mp3"
28
+ - "/home/x/songs/Love_Train_TheOJays.mp3"
29
+ - "/home/x/songs/The_xx_Intro.mp3"
30
+ - "/home/x/songs/UtahSaints_SomethingGood.mp3"
31
+ - "/home/x/songs/BBE_SevenDaysAndOneWeek.mp3"
32
+ - "/home/x/songs/MichelTelo_AiSeEuTePego.mp3"
33
+ - "/home/x/songs/AlvaroSoler-Sofia.mp3"
34
+ - "/home/x/songs/Vivaldi_Concerto8.mp3"
35
+ - "/home/x/songs/RussianRedArmyChoir_SmuglyankaMoldavanka.mp3"
36
+ - "/home/x/songs/SoulsOfMischief_93TilInfinity.mp3"
37
+ - "/home/x/songs/Tribe_Koke.mp3"
38
+ - "/home/x/songs/JohnDahlback_HustleUp.mp3"
39
+ - "/home/x/songs/Intermission_PieceOfMyHeart.mp3"
40
+ - "/home/x/songs/Intermission_SixDays.mp3"
41
+ - "/home/x/songs/Seiler_und_Speer_Ham_Kummst.mp3"
42
+ - "/home/x/songs/TheEagles_HotelCalifornia.mp3"
43
+ - "/home/x/songs/Elan_VodaCoMaDrziNadVodou.mp3"
44
+ - "/home/x/songs/TheMichaelZagerBand-LetsAllChantExtendedMix.mp3"
45
+ - "/home/x/songs/TheShamen_PhoreverPeople.mp3"
46
+ - "/home/x/songs/DJ_Pablo_OneBboy.mp3"
47
+ - "/home/x/songs/DuranDuran_ComeUndone.mp3"
48
+ - "/home/x/songs/DuranDuran_WildBoys.mp3"
49
+ - "/home/x/songs/Moby_ExtremeWaysInstrumental.mp3"
50
+ - "/home/x/songs/ChineseTechno_AiJin.mp3"
51
+ - "/home/x/songs/ChineseTechno_LeeJungHyun_Enraptured.mp3"
52
+ - "/home/x/songs/DeadOrAlive_YouSpinMeRoundRemix.mp3"
53
+ - "/home/x/songs/3DoorsDownHere_WithoutYou.mp3"
54
+ - "/home/x/songs/SpecialEd_ComeOnLetsMoveIt.mp3"
55
+ - "/home/x/songs/PeterPaulAndMary_Hangman.mp3"
56
+ - "/home/x/songs/MenAtWork_LandDownUnder.mp3"
57
+ - "/home/x/songs/JeanClaudeVanDamme_Highlights.mp3"
58
+ - "/home/x/songs/DJ_Tonka_SheKnowsYou.mp3"
59
+ - "/home/x/songs/DJ_Quicksilver_Free.mp3"
60
+ - "/home/x/songs/DaftPunk_GetLucky.mp3"
61
+ - "/home/x/songs/Moby_NaturalBlues.mp3"
62
+ - "/home/x/songs/KoolAndTheGang_SheSFresh_Remix.mp3"
63
+ - "/home/x/songs/BeachBoys_HelpMeRhonda.mp3"
64
+ - "/home/x/songs/PatrickHernandez_BornToBeAlive.mp3"
65
+ - "/home/x/songs/BoneyM_Rasputin.mp3"
66
+ - "/home/x/songs/Unique2_Loveline.mp3"
67
+ - "/home/x/songs/OstbahnKurti_57er_Chevy.mp3"
68
+ - "/home/x/songs/Ottawan_DISCO.mp3"
69
+ - "/home/x/songs/LadyGaga_BadRomance.mp3"
70
+ - "/home/x/songs/LadyGaga_PokerFace.mp3"
71
+ - "/home/x/songs/MaggieReilly_MoonlightShadow.mp3"
72
+ - "/home/x/songs/Bboy_Ivan_versus_Bboy_KMel.mp3"
73
+ - "/home/x/songs/BeatSystem_Fresh.mp3"
74
+ - "/home/x/songs/Amadin_feature_JessicaFolker_YouMakeMeFeelAlright.mp3"
75
+ - "/home/x/songs/SequentialOne_MyLoveIsHot.mp3"
76
+ - "/home/x/songs/Enigma_TNT_for_the_brain.mp3"
77
+ - "/home/x/songs/Twenty4Seven_WeAreTheWorld.mp3"
78
+ - "/home/x/songs/AmiiStewart_KnockOnWood.mp3"
79
+ - "/home/x/songs/SAY_MusicTakesYouHigher.mp3"
80
+ - "/home/x/songs/DestinysChild_Bootylicious.mp3"
81
+ - "/home/x/songs/AlanWalker_Spectre_NCS_Release.mp3"
82
+ - "/home/x/songs/Gala_LetABoyCry.mp3"
83
+ - "/home/x/songs/BandAid_DoTheyKnowItsChristmas.mp3"
84
+ - "/home/x/songs/EnVogue_DontLetGo.mp3"
85
+ - "/home/x/songs/Black_and_White_DoYouKnow.mp3"
86
+ - "/home/x/songs/TH_Express_Im_on_your_side.mp3"
87
+ - "/home/x/songs/BandAid_DoTheyKnowItsChristmas.mp3"
88
+ - "/home/x/songs/Patric_LoveMe.mp3"
89
+ - "/home/x/songs/Faul_Changes.mp3"
90
+ - "/home/x/songs/Technotronic_MoveItToTheRhythm.mp3"
91
+ - "/home/x/songs/RealMcCoy_AnotherNight.mp3"
92
+ - "/home/x/songs/FutureBreeze_WhyDontYouDanceWithMe.mp3"
93
+ - "/home/x/songs/TheBlackEyedPease_TheTimeDirtyBit.mp3"
94
+ - "/home/x/songs/Sumo_Knockouts_2018.mp3"
95
+ - "/home/x/songs/BillyOcean_RedLightSpellsDanger.mp3"
96
+ - "/home/x/songs/The_Kiffness_Ievan_Pollka_featuring_Bilal_Göregen_Club_Remix_2020.mp3"
97
+ - "/home/x/songs/Madonna_Hung_up.mp3"
98
+ - "/home/x/songs/TheOffspring_SelfEsteem.mp4"
99
+ - "/home/x/songs/Mariana_TalkAboutLove.mp3"
100
+ - "/home/x/songs/BOTY_KaitenNinja.mp3"
101
+ - "/home/x/songs/Sirius_TheAlanParsonsProject.mp3"
102
+ - "/home/x/songs/Noir_Strong_And_Boogie_Belgique.mp3"
103
+ - "/home/x/songs/Bboy_crew_Jinjo_2018.mp3"
104
+ - "/home/x/songs/LinkingParkClassic_Remix.mp3"
105
+ - "/home/x/songs/Usura_OpenYourMind.mp3"
106
+ - "/home/x/songs/Il_Volo_Grande_amore.mp3"
107
+ - "/home/x/songs/DiePrinzen_AllesNurGeklaut.mp3"
108
+ - "/home/x/songs/EnnioMorricone_IlBuonoIlBrutooIlCattivo_Venezia_Concerto_10.11.2017.mp3"
109
+ - "/home/x/songs/EpicFifaSoccerTheme_2020.mp3"
110
+ - "/home/x/songs/DaHool_Meet_her_at_the_Loveparade.mp3"
111
+ - "/home/x/songs/Hiroyuki_Sanada_Tribute.mp3"
112
+ - "/home/x/songs/Imperio_Atlantis.mp3"
113
+ - "/home/x/songs/666_Paradoxx.mp3"
114
+ - "/home/x/songs/Veracocha_CarteBlancha.mp3"
115
+ - "/home/x/songs/PPK_ResuRection_Space_Club_Mix_2001.mp3"
116
+ - "/home/x/songs/Hoorah_by_Decap_and_Phillip_Drummond.mp3"
117
+ - "/home/x/songs/Overwerk_Daybreak.mp3"
118
+ - "/home/x/songs/BizarreInc_Playing_with_Knives.mp3"
119
+ - "/home/x/songs/Haddaway_FlyAway.mp3"
120
+ - "/home/x/songs/VincentDeMoor_EternityForever.mp3"
121
+ - "/home/x/songs/Friendships_PascalLetoublon.mp3"
122
+ - "/home/x/songs/DJ_Quicksilver_NewLife.mp3"
123
+ - "/home/x/songs/Masterboy_PorqueTeVas.mp3"
124
+ - "/home/x/songs/Nightcrawlers_PushTheFeelingOn.mp3"
125
+ - "/home/x/songs/Technotronic_Recall.mp3"
126
+ - "/home/x/songs/Nickelback_SheKeepsMeUp.mp3"
127
+ - "/home/x/songs/Cu_Chill_Thoi_DJ_TuSo_and_LEA_remix.mp3"
@@ -0,0 +1,5 @@
1
+ This directory contains a few radio-links. These can be obtained from
2
+ other sites, such as shoutcast, but I wanted to also have a few of
3
+ these available in a .yml file, which can be used by ruby to
4
+ autogenerate other files or be used embedded in a ruby-gtk application,
5
+ which would allow us to stream from these remote resources.