Created
July 9, 2016 13:33
-
-
Save withmorten/06f9d65ec138808edeeb956501d9ec0a to your computer and use it in GitHub Desktop.
for cod4/cod5 ff extraction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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