我正在尝试使用 google text-to-speech,但该服务没有给我。我正在使用这个 url 来获取 mp3 :
http://translate.google.com/translate_tts?ie=utf-8&tl=en&q={$text}
服务返回错误:我们的客户端没有获取 URL 的权限。我怎样才能解决这个问题 ?
我正在尝试使用 google text-to-speech,但该服务没有给我。我正在使用这个 url 来获取 mp3 :
http://translate.google.com/translate_tts?ie=utf-8&tl=en&q={$text}
服务返回错误:我们的客户端没有获取 URL 的权限。我怎样才能解决这个问题 ?
使用cURL
将避免一些检查:
<?php
header("Content-Type: audio/mpeg");
$text = urlencode('my text');
$url = "http://translate.google.com/translate_tts?ie=utf-8&tl=en&q=".$text;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
$return = curl_exec($ch);
curl_close($ch);
echo $return;
?>