Skip to content

Instantly share code, notes, and snippets.

@koriym
Created September 21, 2011 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koriym/1230790 to your computer and use it in GitHub Desktop.
Save koriym/1230790 to your computer and use it in GitHub Desktop.
Download voice of elePHPant interview files.
<?php
for ($i = 1; $i < 36; $i++) {
$filename = "vote_" . sprintf("%03d", $i) . '.mp3';
echo "$filename.";
$a = file_get_contents("http://voices.of.the.elephpant.s3.amazonaws.com/{$filename}");
file_put_contents($filename, $a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment