diff options
| author | jules on spawn <spawn@cortex> | 2018-04-10 15:57:54 +0200 |
|---|---|---|
| committer | jules on spawn <spawn@cortex> | 2018-04-10 15:57:54 +0200 |
| commit | 332d6f5b739c8e037e3d2877085f45fbeef375e8 (patch) | |
| tree | 0ace10cdd06fb851f873fbcbc7e0df4074b4a779 /datasets | |
| parent | 3ea2f8f581a857920b7c2f4d1d3a0a12401758ec (diff) | |
get script should build dataset
Diffstat (limited to 'datasets')
| -rwxr-xr-x | datasets/get.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/datasets/get.pl b/datasets/get.pl index 531b9f7..14c5a5b 100755 --- a/datasets/get.pl +++ b/datasets/get.pl @@ -1,5 +1,9 @@ #!/usr/bin/perl foreach (@ARGV){ - my $s = $_; if ($s !~/\..*$/) { $s .= ".wav"; } system('/usr/bin/wget', 'https://neural:spawn5@asdf.us/neural/' . $s); } + my $s = $_; + if ($s !~/\..*$/) { $s .= ".wav"; } + system('/usr/bin/wget', 'https://neural:spawn5@asdf.us/neural/' . $s); + system('/usr/bin/perl', 'dataset.pl', $s); +} |
