8 lines
329 B
PHP
8 lines
329 B
PHP
<?php
|
|
PluginSet("tts", "Text To Speech");
|
|
$mp3 = file_get_contents("http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&text=".urlencode($plugin_text));
|
|
$file = fopen($from.".mp3","w");
|
|
echo fwrite($file,$mp3);
|
|
fclose($file);
|
|
$BOT->send_audio($from, "/home/wwwroot/1.vps.dennx.com/".$from.".mp3");
|
|
//unlink($matches[1].".mp3");
|