X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;f=merge_videos_by_day;h=a6b509bfbfbf6d3547ba1a29d3d503a0c8424748;hb=f6479e5b73d7939b5efd03a85ac8cbee565c1f26;hp=b285f1a4ad07e285aa427ae7186cb2ff42fca47b;hpb=e47e6977db0498c8b59328a1a122e6c11b571a73;p=videoscripts%2F.git diff --git a/merge_videos_by_day b/merge_videos_by_day index b285f1a..a6b509b 100755 --- a/merge_videos_by_day +++ b/merge_videos_by_day @@ -17,13 +17,12 @@ my $srcpathname = $opt_s; my $compute_host = "pippin.pippins.net"; # I need this since this script is run from a virtual machine my $use_compute_host = 1; # Set to 1 to use a remote compute host to run the mkvmerge command. Set to 0 to use the local host to run it. my $make_mkv = "/naspool/videos/bin/make_mkv"; # Update this to be the path to the make_mkv script -my $minage = "+10"; # Files must be older than X minutes to move my $owner = "ajp"; # The owner of the files after they are moved my $group = "pip"; # The group of the files after they are moved my $mode = "664"; # The mode to set on each file after they are moved my $video_suffix = "000"; # What number to start with when adding an incrementing suffix to the end of the video clip to avoid name collisons my $video_title_prefix = "HomeVideos:"; # What text to put on the front of the title for the merged video being created -my $find_cmd = "find \"$srcpathname/\" -cmin $minage -iregex \".*\.mov\" -o -iregex \".*\.3gp\" -o -iregex \".*\.mp4\" -o -iregex \".*\.mts\""; +my $find_cmd = "find \"$srcpathname/\" -iregex \".*\.mov\" -o -iregex \".*\.3gp\" -o -iregex \".*\.mp4\" -o -iregex \".*\.mts\""; #################################################################################################### sub usage {