接口地址
https://api.vvhan.com/api/song
返回格式
JSON
请求方式:
GET
请求示例:
https://api.vvhan.com/api/song?txt=内容
参数说明
名称 | 必填 | 类型 | 说明 |
---|---|---|---|
txt | 是 | string | 输入内容 |
per | 否 | string | 男声or女声(1-6) |
返回数据
音频直接输出
调用实例
<video controls="" autoplay="" name="media"> <source src="https://api.vvhan.com/api/song.php?txt=需要转换的内容" type="audio/mpeg"> </video>
示例代码
<?php
if (isset($_GET['per'])) { $per = $_GET['per']; if ($per > 0 && $per < 7) { $per = $per; } } else { $per = 4; } if (isset($_GET['txt'])) { $txt = $_GET['txt']; header("Content-Type: audio/mpeg"); $voice = file_get_contents('https://api.vvhan.com/api/song?txt=' . $txt . ' &per=' . $per); exit($voice); } else { header(' Content-type:application/json;charset=UTF-8'); exit('{"code":-1,"msg":"参数不完整"}'); }
?>