Skip to content

Instantly share code, notes, and snippets.

@dennisvandalen
Created September 27, 2016 05:56
Show Gist options
  • Select an option

  • Save dennisvandalen/1d12c12e13018e19d1880f89a2b2b14f to your computer and use it in GitHub Desktop.

Select an option

Save dennisvandalen/1d12c12e13018e19d1880f89a2b2b14f to your computer and use it in GitHub Desktop.
<?php
$options = array(
'http'=>array(
'method'=>"GET",
'header'=>"Accept-language: en\r\n" .
"User-Agent: Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1667.0 Safari/537.36"
)
);
$context = stream_context_create($options);
header('Content-Type: audio/mpeg');
header('Cache-Control: no-cache');
header("Content-Transfer-Encoding: chunked");
readfile("http://translate.google.com/translate_tts?client=tw-ob&tl=".urlencode($_GET["lang"])."&q=".urlencode($_GET["text"].""), false, $context);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment