-
Notifications
You must be signed in to change notification settings - Fork 33
/
collect_videos.pl
60 lines (44 loc) · 1.27 KB
/
collect_videos.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/perl
# Collect and move video files into a specific directory, by scanning a given a directory (and its subdirectories) for video files.
# Requires `exiftool`.
use 5.036;
use File::Find qw(find);
use File::Copy qw(move);
use File::Path qw(make_path);
use File::Basename qw(basename);
use File::Spec::Functions qw(catfile curdir rel2abs);
sub is_video ($file) {
my $res = `exiftool \Q$file\E`;
$? == 0 or return;
defined($res) or return;
$res =~ m{^MIME\s+Type\s*:\s*video/}mi;
}
sub collect_video ($file, $directory) {
my $dest = catfile($directory, basename($file));
if (-e $dest) {
warn "File <<$dest>> already exists...\n";
return;
}
move($file, $dest);
}
my @dirs = @ARGV;
@dirs || die "usage: perl $0 [directory | files]\n";
my $directory = rel2abs("Videos"); # directory where to move the videos
if (not -d $directory) {
make_path($directory)
or die "Can't create directory <<$directory>>: $!";
}
if (not -d $directory) {
die "<<$directory>> is not a directory!";
}
find(
{
wanted => sub {
if (-f $_ and is_video($_)) {
say ":: Moving video: $_";
collect_video($_, $directory);
}
},
},
@dirs
);