X-Git-Url: http://git.pippins.net/embedvideo/.git/%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%01%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%0F%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD%EF%BF%BD?a=blobdiff_plain;f=merge_videos_by_day;h=7179746cea631fd16daf9072326a5947834bfaa1;hb=5a4d4d3ceec69ce1973f790d0c9f27be9e38339b;hp=27f2e2bbd7fed6673ae9f2e441ac85f9fe79eca6;hpb=842f828ffa6bc307d04b027a904ec293922355ff;p=videoscripts%2F.git diff --git a/merge_videos_by_day b/merge_videos_by_day index 27f2e2b..7179746 100755 --- a/merge_videos_by_day +++ b/merge_videos_by_day @@ -92,7 +92,7 @@ foreach $file (sort `$find_cmd`) { # Make a note of the month, year, and day this video was taken (from the modification time of the file) $date_taken = ctime(stat("$srcdir/$srcfile")->mtime); - + # Get the date taken from the filename if(!$merge_by_modification_date && $srcfile =~ /^(\d+)-(\d+)-(\d+)/) { $year = $1; @@ -101,6 +101,21 @@ foreach $file (sort `$find_cmd`) { $monthnum = $month; $monthname = lc($month2monthname{$month}); } + elsif(!$merge_by_modification_date && $srcfile =~ /^(\d\d\d\d)(\d\d)(\d\d)/) { + $year = $1; + $month = $2; + $day = sprintf("%02d",$3); + $monthnum = $month; + $monthname = lc($month2monthname{$month}); + } + # Get the date taken from the srcdir + elsif(!$merge_by_modification_date && $srcdir =~ /(\d+)-(\d+)-(\d+)/) { + $year = $1; + $month = $2; + $day = sprintf("%02d",$3); + $monthnum = $month; + $monthname = lc($month2monthname{$month}); + } # Get the date taken from the modification time elsif($date_taken =~ /\S+\s+(\S+)\s+(\d+)\s+\S+\s+(\d+)/) { $year = $3; @@ -196,7 +211,11 @@ foreach $ext (sort keys %videos) { foreach $video (@{$videos{$ext}{$video}}) { if(($save_originals) && ($video =~ /\.$originals_file_ext/)) { print "-> Saving the original video $video\n"; - print("mv $video \"$origpathname/".basename(dirname($video))."_".basename($video)."\n"); + if(index($video, basename(dirname($video))) == -1) { + print("mv $video \"$origpathname/".basename(dirname($video))."_".basename($video)."\n"); + } else { + print("mv $video \"$origpathname/".basename($video)."\n"); + } } else { print "-> Removing the original video $video\n"; print("/bin/bash -c '[[ -e $video ]] && rm -f $video'\n"); @@ -218,7 +237,11 @@ foreach $ext (sort keys %videos) { foreach $srcvideo (@{$videos{$ext}{$video}}) { if(($save_originals) && ($srcvideo =~ /\.$originals_file_ext/)) { print "-> Saving the original video $srcvideo to $origpathname\n"; - system("mv $srcvideo \"$origpathname/".basename(dirname($srcvideo))."_".basename($srcvideo)); + if(index($srcvideo, basename(dirname($srcvideo))) == -1) { + system("mv $srcvideo \"$origpathname/".basename(dirname($srcvideo))."_".basename($srcvideo)); + } else { + system("mv $srcvideo \"$origpathname/".basename($srcvideo)); + } } else { print "-> Removing the original video $srcvideo\n"; system("/bin/bash -c '[[ -e $srcvideo ]] && rm -f $srcvideo'");