我正在尝试实现这个问题中讨论的方法来编写一个 php 函数来下载给定字符串的音频文件,但我似乎无法绕过谷歌的滥用保护。结果是零星的,有时我得到一个音频文件,有时它是一个空的 2KB mp3,因为响应“我们的系统检测到来自您的计算机网络的异常流量”。这是我到目前为止所得到的(注意 $file 在我的代码中有一个位置,但为此我省略了它):
function downloadMP3( $url, $file ){
$curl = curl_init();
curl_setopt( $curl, CURLOPT_URL, $url );
curl_setopt( $curl, CURLOPT_RETURNTRANSFER, true );
curl_setopt( $curl, CURLOPT_REFERER, 'http://translate.google.com/' );
curl_setopt( $curl, CURLOPT_USERAGENT, 'stagefright/1.2 (Linux;Android 5.0)' );
$output = curl_exec( $curl );
curl_close( $curl );
if( $output === false ) {
return false;
}
$fp = fopen( $file, 'wb' );
fwrite( $fp, $output );
fclose( $fp );
return true;
}
$word = "Test";
$file = md5( $word ) . '.mp3';
if ( !file_exists( $file ) ) {
$url = 'http://translate.google.com/translate_tts?q=' . $word . '&tl=en&client=t';
downloadMP3( $url, $file );
}