php调用Google translate_tts api实现代码

前端之家收集整理的这篇文章主要介绍了php调用Google translate_tts api实现代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天用google翻译时,发现个好东西:Google translate_tts,调用这个api就可以听到英文发音,
省掉了自己上传音频文件的麻烦。
我用PHP写了个调用方法,可以把音频文件保存在本地。

如下:

<div class="codetitle"><a style="CURSOR: pointer" data="43481" class="copybut" id="copybut43481" onclick="doCopy('code43481')"> 代码如下:
<div class="codebody" id="code43481">
$newfname = '1.wmv';
$reqBaseURL = 'http://translate.google.com/translate_tts?tl=en&q=how%20do%20you%20do';
$remote_file = fopen($reqBaseURL,"rb");
if ($remote_file){
$newf = fopen($newfname,"wb");
if ($newf){
while(!feof($remote_file)){
fwrite($newf,fread($remote_file,1024 8),1024 8);
}
}
}
if ($remote_file) {
fclose($remote_file);
}
if ($newf) {
fclose($newf);
}

原文链接:https://www.f2er.com/php/25750.html

猜你在找的PHP相关文章