gpt4 book ai didi

php - 文本到语音不适用于所有文本(以 php 形式)

转载 作者:行者123 更新时间:2023-11-29 00:15:35 25 4
gpt4 key购买 nike

我正在制作语音词典。这是代码。它工作正常,除了文本到语音仅适用于某些特定文本的问题。例如,如果字符串返回到变量 $y="hello world"那么它被转换为音频但如果是“world hello”,则没有音频输出。

请帮忙。谢谢

<html>
<head>
<title>Word meanings</title>
<?php
mysql_connect("localhost", "root", "abcd");
mysql_select_db("dictionary");
if(isset($_POST['Submit1']))
{

$req=$_REQUEST['word'];
$strSQL = "SELECT * FROM dict WHERE word='$req'";
$rs = mysql_query($strSQL);
while($row = mysql_fetch_array($rs))
{
$x=$row["word"];
$y=$row["meaning"];
$z=$row["synonym"];
echo "<b>Word</b>: " . $x ."<br/>" ;
echo "<b>Meaning</b>: " . $y ."<br/>" ;
echo "<b>Synonym</b>: " . $z ."<br/>" ;
}
}
mysql_close();
?>

</head>
<body>
<form name="form1" action="lastry.php" method="POST">
<input type="text" name="word" value="<?php echo isset($_POST['word'])?$_POST['word']:''?>"x-webkit-speech/>
<Input Type ="Submit" Name ="Submit1" Value ="submit">
</form>
<?php if($_POST)
{
?>

<audio controls="controls" autoplay="autoplay">
<source src="http://tts-api.com/tts.mp3?q=<?php echo urlencode($y);?>&type="audio/mp3" />
</audio>
<?php }?>
</body>
</html>

最佳答案

我认为您使用的 API 中存在问题,请转到 http://tts-api.com/并输入“你好”,你会被重定向到 http://tts-api.com/tts.mp3?q=word%20hello在那里你只能看到 500。因此,您需要联系 API 支持。

关于php - 文本到语音不适用于所有文本(以 php 形式),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23086829/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com