msg 2, "\t#{videos.length} videos"
dest_dir = dir.sub(/^#{Regexp.quote($source)}/, $dest)
- system("mkdir -p #{dest_dir}")
+ system("mkdir -p '#{dest_dir}'")
msg 2, "Outputting in #{dest_dir}..."
final_images = []
if orientation =~ /left - bottom/
convert_options += '-rotate -90 '
end
- sys "#{$convert} #{convert_options}-geometry 704x528 #{img} #{dest_img}"
+ sys "#{$convert} #{convert_options}-geometry 704x528 '#{img}' '#{dest_img}'"
end
}