X-Git-Url: http://git.pippins.net/embedvideo/.git/static/gitweb.js?a=blobdiff_plain;f=make_mkv;h=6ad22c6b186a50d86956652061fd9615dc0a0c76;hb=5483963151e96a4941fac5721f76d2f3119a851a;hp=ea3b50cda0238ed603ba06fe93acff191f76eed1;hpb=be9a9d1914a8f80b031631f902c9daae0b8f6d90;p=videoscripts%2F.git diff --git a/make_mkv b/make_mkv index ea3b50c..6ad22c6 100755 --- a/make_mkv +++ b/make_mkv @@ -6,7 +6,7 @@ # mkvtoolnix - http://www.bunkus.org/videotools/mkvtoolnix/ # ffmpeg -########################### +#################################################################################################### # Includes use File::Copy; use File::Basename; @@ -16,17 +16,19 @@ use DateTime; use DateTime::Duration; use DateTime::Format::Duration; -########################### -# Configuration parameters +#################################################################################################### +# Configuration parameters - CHANGE THESE TO SUITE YOUR NEEDS my $mkvmerge=`which mkvmerge`; chomp($mkvmerge); my $ffmpeg=`which ffmpeg`; chomp($ffmpeg); my $tmpfile = `tempfile`; chomp($tmpfile); my $chapter_file = $tmpfile; my $input_file_options = "-S"; my $output_file_options = "--chapters $chapter_file"; +#################################################################################################### -########################### -# Options + +#################################################################################################### +# Command Line Options getopts("st:o:i:h"); if(! -x $mkvmerge) { die "-E- Unable to find required program: mkvmerge\n"; } @@ -45,7 +47,7 @@ sub usage { return 1; } -########################### +#################################################################################################### # Helper Subroutines sub epoch_to_date { my ($epoch) = @_; @@ -53,7 +55,7 @@ sub epoch_to_date { return sprintf("%4d",$mtime->year)."-".sprintf("%02d",$mtime->month)."-".sprintf("%02d",$mtime->day)." ".$mtime->hms; } -########################### +#################################################################################################### # MAIN # Turn the list of input videos into a hash with a value equal to the modification time in epoch seconds @@ -94,9 +96,7 @@ foreach my $video (sort{$videos{$a} <=> $videos{$b}} keys %videos) { print CHAPTERS "CHAPTER".sprintf("%02d",$chapter_num)."=".$start_time."\n"; print CHAPTERS "CHAPTER".sprintf("%02d",$chapter_num)."NAME=".$mdate."\n"; my $dt = DateTime::Duration->new(years => 1900, hours => $hour, minutes => $min, seconds => $sec); - my $prev_dt = DateTime::Duration->new(years => 1900, hours => $prev_hour, minutes => $prev_min, seconds => $prev_sec); - $new_duration = $dt + $prev_dt; - $prev_hour = $hour; $prev_min = $min; $prev_sec = $sec; + $new_duration = $dt + $new_duration; } close(CHAPTERS); print "\n-> Creating the following chapter file for this video:\n"; @@ -123,8 +123,8 @@ if(! defined $opt_s) { if($errno > 1) { die "-E- mkvmerge encountered some errors with exit code $errno\n"; } } -# Remove the temporary file +# Remove the temporary file used for the chapter generation if(-e "$tmpfile") { unlink "$tmpfile"; } -########################### +####################################################################################################