. The BookReader source is hosted at http://github.com/openlibrary/bookreader/ */ $useMP3 = true; if ('.ogg' == $_GET['format']) { $useMP3 = false; } $cmd = 'echo ' . escapeshellarg($_GET['string']); $cmd .= ' | /petabox/sw/bin/text2wave'; if ($useMP3) { header('Content-Type: audio/mpeg'); $cmd .= ' |ffmpeg -i - -f mp3 -'; } else { header('Content-Type: application/ogg'); $cmd .= ' |oggenc --quiet -'; } passthru($cmd); ?>