我正在向Google文字转语发帖。我有一组.flac文件,我想发送到Google Text to Speech服务,以便将内容写入txt文件。
这是我写的代码,它可以运行:
$url = 'https://www.google.com/speech-api/v2/recognize?output=json&lang=it-IT&key=xxx';
$cont2 = array(
'flac/1.flac',
'flac/2.flac',
'flac/3.flac'
);
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: audio/x-flac; rate=44100'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
foreach ($cont2 as $fn) {
curl_setopt($ch, CURLOPT_POSTFIELDS, file_get_contents($fn));
$result = curl_exec($ch);
$info = curl_getinfo($ch);
//var_dump($info);
if ($result === false) {
die(curl_error());
}else{
echo "<br />".$fn." upload ok"."<br />";
file_put_contents("pum.txt", $result, FILE_APPEND);
}
}
它就像一个魅力,在“pum.txt”我写了所有文件内容,没关系。
我的问题是我不想添加到数组“cont2”,每次都需要传递给我们文件的新名称,即“flac文件夹”。
为避免这种情况,我使用“scandir”方法,删除“。”和数组中的“..”字符串,并将该数组提供给CURL_OPT_POSTFIELD,但对GTT的调用返回一个空内容。
这是我写的代码(而不是$ cont2数组)
$directory = 'flac/';
$cont = array_diff(scandir($directory), array('..', '.', '.DS_Store'));
print_r与$ cont2数组相同:
array(3) {
[3]=>
string(6) "1.flac"
[4]=>
string(6) "2.flac"
[5]=>
string(6) "3.flac"
}
但谷歌TTS返回空结果。
有谁请告诉我我在哪里弄错了?
亲切的问候
布鲁斯
编辑:使用“$ cont = glob(”$ directory / * .flac“);”解决了这个问题。希望能帮助其他人。
答案 0 :(得分:2)
scandir()不会包含完整路径信息 - 它只会返回文件名。因此,当您构建文件名数组以进行循环并发送给Google时,您必须自己包含这些目录。
e.g。
$dir = 'flac';
$files = scandir($dir);
foreach($files as $key => $file);
$files[$key] = $dir . '/' . $file;
}
e.g。 scan dir将返回file1.flac
,但您需要flac/file1.flac
。由于您未包含路径信息,因此您尝试对不存在的文件名执行file_get_contents()
,并向Google发送布尔值false(file_get failed)。
答案 1 :(得分:0)
正如Marc B所说,你需要缺少文件的目录。我会使用glob
,因为它会准确地返回您所需的内容:
$cont = glob("$directory/*.flac");