Skip to content

Instantly share code, notes, and snippets.

@withmorten
Created July 9, 2016 13:33
Show Gist options
  • Save withmorten/06f9d65ec138808edeeb956501d9ec0a to your computer and use it in GitHub Desktop.
Save withmorten/06f9d65ec138808edeeb956501d9ec0a to your computer and use it in GitHub Desktop.
for cod4/cod5 ff extraction
<?php
$handle = fopen("convertmorewavs.bat", "r");
$ffmpeg = array();
while($line = fgets($handle)) {
if(!in_array($line, $ffmpeg)) {
$ffmpeg[] = $line;
}
}
foreach($ffmpeg as $command) {
echo $command;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment