Mercurial > cortex
view thesis/to-frames.pl @ 464:8bf4bb02ed05
sleeeeeep.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Fri, 28 Mar 2014 00:42:42 -0400 |
parents | c20de2267d39 |
children |
line wrap: on
line source
1 #!/bin/perl3 $movie_file = shift(@ARGV);5 # get file name without extension6 $movie_file =~ m/^([^.]+)\.[^.]+$/;7 $movie_name = $1;9 @mkdir_command = ("mkdir", "-vp", $movie_name);10 @ffmpeg_command = ("ffmpeg", "-i", $movie_file, $movie_name."/%07d.png");12 print "@mkdir_command\n";13 system(@mkdir_command);14 print "@ffmpeg_command\n";15 system(@ffmpeg_command);