summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-16 18:27:41 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-16 18:27:41 +0200
commit775e51222cb2f00dc84ac3c3666e912c35d86380 (patch)
treea9b8981add6e12eaa27ef174f32c108a8cc7fe8e
parent63fb71641373e92077d19f62fb54a9d85d5fe362 (diff)
get
-rwxr-xr-xget.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/get.pl b/get.pl
index abfa2da..9a169b2 100755
--- a/get.pl
+++ b/get.pl
@@ -89,7 +89,7 @@ if ($video_fn) {
my @partz = split(".", $video_fn);
my $ext = $partz[$#partz];
my $fn = $tag . '.' . $ext;
- system('mv', $video_fn, $fn)
+ system('mv', $video_fn, $fn);
print "creating dataset: $tag\n";
mkdir($tag);
system('ffmpeg', '-i', $fn, "-filter:v", "scale=256x256", $tag . '/frame_%05d.png');