42744fe3b1de5318e301b56f47f78f0d6e780407
[videoscripts/.git] / merge_videos_by_day
1 #!/usr/bin/perl
2 # Author: Alan J. Pippin
3 # Description: For the given srcpath, merge all the videos that were taken on the same day into a single mkv file
4
5 use File::Copy;
6 use File::Basename;
7 use Getopt::Std;
8 use File::stat;
9 use Time::localtime;
10
11 # Early command line options processing
12 getopts("qzkh:tvs:");
13 my $srcpathname = $opt_s;
14
15 ####################################################################################################
16 # Configuration parameters
17 $mydir = `cd \$(dirname $0) 2>/dev/null; pwd`; chomp($mydir); unshift @INC,("$mydir");
18 # Default configuration values
19 require "organize_videos.conf";
20 # Override defaults with local customizations
21 if( -f "$mydir/organize_videos.conf.local") { require "organize_videos.conf.local"; }
22
23 ####################################################################################################
24
25 sub usage {
26     print "usage: $0 [-tvrhz] -s <srcpath>\n";
27     print "   -s <srcpath>          specify the path to search for videos to merge under\n";
28     print "   -h <compute host>     specify the remote compute host to submit the mkvmerge job to\n";
29     print "   -v                    verbose mode; print extra information about what is being found/merged\n";
30     print "   -t                    test mode; print what will happen, but don't do anything\n";
31     print "   -k                    keep the individual video files that are merged. By default, after a merge, individual video files that were merged are removed\n";
32     print "   -q                    Requantize input videos to decrease output video size (requires HandBrakeCLI)\n";
33     print "   -z                    Recompress input videos to decrease output video size (requires HandBrakeCLI)\n";
34     return 1;
35 }
36 if(defined $opt_h) { usage(); exit 1; }
37
38 # Sanity checks
39 if((defined $opt_q || defined $opt_z) && !$use_compute_host && ! -x "$handbrake") { die "-E- Unable to find required program: handbrake\n"; }
40 if(! -d $srcpathname) { &usage; print "-E- Can't find srcpath: $srcpathname\n"; exit 1; }
41 if(defined $opt_h) { $compute_host = $opt_h; }
42
43 my %monthname2month = (
44                        "Jan" => "01",
45                        "Feb" => "02",
46                        "Mar" => "03",
47                        "Apr" => "04",
48                        "May" => "05",
49                        "Jun" => "06",
50                        "Jul" => "07",
51                        "Aug" => "08",
52                        "Sep" => "09",
53                        "Oct" => "10",
54                        "Nov" => "11",
55                        "Dec" => "12"
56                        );
57
58 my %month2monthname = (
59                        "01" => "Jan",
60                        "02" => "Feb",
61                        "03" => "Mar",
62                        "04" => "Apr",
63                        "05" => "May",
64                        "06" => "Jun",
65                        "07" => "Jul",
66                        "08" => "Aug",
67                        "09" => "Sep",
68                        "10" => "Oct",
69                        "11" => "Nov",
70                        "12" => "Dec"
71                        );
72
73 # Change directories to the srcpath to search for videos to merge
74 print "-> Finding all videos under '$srcpathname' to merge by day\n";
75 my %videos;
76 chdir "$srcpathname";
77 print "$find_cmd\n" if($opt_v);
78 foreach $file (sort `$find_cmd`) {
79
80     chomp($file);
81     $srcdir = dirname($file);
82     $file = basename($file);
83     $srcfile = $file;
84     $srcext = "";
85     if($srcfile =~ /\.(\w+)$/) { $srcext = $1; }
86     $ext = "mkv";
87     
88     print "Found movie: srcdir: $srcdir srcfile: $srcfile srcext: $srcext dstext: $ext\n" if($opt_v);
89
90     # Throw out files not in the current srcpath
91     if((! -f "$srcfile") && (! -f "$srcdir/$srcfile")) { next; }
92             
93     # Make a note of the month, year, and day this video was taken (from the modification time of the file)
94     $date_taken = ctime(stat("$srcdir/$srcfile")->mtime);
95
96     # Get the date taken from the filename
97     if(!$merge_by_modification_date && $srcfile =~ /^(\d+)-(\d+)-(\d+)/) {
98         $year = $1;
99         $month = $2;
100         $day = sprintf("%02d",$3);
101         $monthnum = $month;
102         $monthname = lc($month2monthname{$month});
103     }
104     # Get the date taken from the modification time
105     elsif($date_taken =~ /\S+\s+(\S+)\s+(\d+)\s+\S+\s+(\d+)/) {
106         $year = $3;
107         $month = $1;
108         $day = sprintf("%02d",$2);
109         $monthnum = $monthname2month{$month};
110         $monthname = lc($month2monthname{$month});
111     } else {
112         print "-E- Unable to parse year and month from this file: $srcdir/$srcfile\n";
113         next;
114     }
115
116     # We are ready to pick a destination folder to put the merged video in
117     $dstdir = $srcdir;
118     $dstfile = $dstdir . "/" . $year . "-" . $monthnum . "-" . $day;
119
120     # Check for duplicate filenames at the destination
121     $newfile = $dstfile . "." . $video_suffix;
122     if(-e "$newfile.$ext") {
123         foreach $i ($video_suffix+1 .. '999') {
124             $newfile = $dstfile . "." . sprintf("%03d",$i);
125             if(! -e "$newfile.$ext") { last; }
126         }
127         $dstfile = $newfile;
128     }
129
130     # Set the name of our unique destination file
131     $dstfile = "$newfile.$ext";
132
133     # You can only merge videos into a single destination that have the same extension/type
134     push(@{$videos{"$srcext"}{"$dstfile"}}, "\"$srcdir/$srcfile\"");
135 }
136
137 # Check for duplicate filenames in the dstfiles being created for other exts
138 foreach $ext (sort keys %videos) {
139     foreach $video (sort keys %{$videos{$ext}}) {       
140         # Make sure this video name is not in use as a destination for any other ext
141         foreach $checkext (sort keys %videos) {
142             if($checkext eq $ext) { next; }
143             foreach $checkvideo (sort keys %{$videos{$checkext}}) {
144                 if("$video" eq "$checkvideo") {
145                     if($video =~ /(.*?)\.(\d+)\.(\w+)$/) {
146                         $dstfile = $1;
147                         $dstnum = $2;
148                         $dstext = $3;
149                     }
150                     foreach $i ($dstnum .. '999') {
151                         $newfile = $dstfile . "." . sprintf("%03d",$i);
152                         if("$video" ne "$newfile.$dstext") { last; }
153                     }
154                     $videos{$ext}{"$newfile.$dstext"} = $videos{$ext}{$video};
155                     delete $videos{$ext}{$video};
156                 }
157             }
158         }
159     }
160 }
161
162 # Tell the user which videos we are going to merge
163 foreach $ext (sort keys %videos) {
164     foreach $video (sort keys %{$videos{$ext}}) {
165         foreach $srcfile (@{$videos{$ext}{$video}}) { 
166             print "   merging $srcfile into \"$video\"\n";
167         }
168     }
169 }
170
171 # Now actually do the merging
172 print "\n";
173 foreach $ext (sort keys %videos) {
174     foreach $video (sort keys %{$videos{$ext}}) {
175
176         my $videos = join(',', @{$videos{$ext}{$video}});
177         
178         if($video =~ /(\d+)-(\d+)-(\d+)/) {
179             $year = $1;
180             $month = $2;
181             $day = sprintf("%02d",$3);
182         }
183         
184         my $pwd = `pwd`; chomp($pwd);
185         my $cmd = "";
186         if($use_compute_host) { $cmd .= "ssh $compute_host 'cd \"$pwd\";"; }
187         $cmd .= "$make_mkv -t \"$video_title_prefix $year-$month-$day\" -o \"$video\" -i $videos";
188         if($requantize_input_video) { $cmd .= ' -q'; }
189         if($recompress_input_video) { $cmd .= ' -z'; }
190         if($use_compute_host) { $cmd .= "'"; }
191         if(defined $opt_t) {
192             # Print what will be done, but don't actually do it
193             print "\n-> Creating \"$video\"\n";
194             print "$cmd\n";
195             if(!defined $opt_k) { 
196                 foreach $video (@{$videos{$ext}{$video}}) {
197                     if(($save_originals) && ($video =~ /\.$originals_file_ext$/)) {
198                         print "-> Saving the original video $video\n";
199                         print("mv $video \"$origpathname/".basename(dirname($video))."_".basename($video)."\n");
200                     } else {
201                         print "-> Removing the original video $video\n";
202                         print("/bin/bash -c '[[ -e $video ]] && rm -f $video'\n");
203                     }
204                 }
205             }
206         } else {
207             # Create the merged video
208             my $errno = system("$cmd");
209             $errno = $errno >> 8;
210             if($errno) { die "-E- make_mkv encountered some errors with exit code $errno\n"; }
211             system("ls -l \"$srcpathname/\" > /dev/null"); # Make sure the video file is there
212             # Fix the permissions
213             system("chown $owner \"$video\"");
214             system("chgrp $group \"$video\"");
215             system("chmod $mode \"$video\"");
216             # Remove the individual video files
217             if(!defined $opt_k) { 
218                 foreach $srcvideo (@{$videos{$ext}{$video}}) {
219                     if(($save_originals) && ($srcvideo =~ /\.$originals_file_ext$/)) {
220                         print "-> Saving the original video $srcvideo to $origpathname\n";
221                         system("mv $srcvideo \"$origpathname/".basename(dirname($srcvideo))."_".basename($srcvideo));
222                     } else {
223                         print "-> Removing the original video $srcvideo\n";
224                         system("/bin/bash -c '[[ -e $srcvideo ]] && rm -f $srcvideo'");
225                     }
226                 }
227             }
228         }
229     }
230 }