feat: 长文本语音合成
This commit is contained in:
+95
-4
@@ -806,6 +806,55 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/like/list": {
|
||||
"post": {
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"用户互动"
|
||||
],
|
||||
"summary": "获取收藏列表",
|
||||
"parameters": [
|
||||
{
|
||||
"description": "分页查询",
|
||||
"name": "data",
|
||||
"in": "body",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"$ref": "#/definitions/request.GetLikeList"
|
||||
}
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/response.Response"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/like/removeAll": {
|
||||
"get": {
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"用户互动"
|
||||
],
|
||||
"summary": "清空所有赞",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/response.Response"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/like/toggle": {
|
||||
"post": {
|
||||
"produces": [
|
||||
@@ -1873,6 +1922,34 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/radio/program/generate-tts": {
|
||||
"get": {
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
"tags": [
|
||||
"节目管理"
|
||||
],
|
||||
"summary": "生成TTS语音",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"description": "节目ID",
|
||||
"name": "id",
|
||||
"in": "query",
|
||||
"required": true
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/response.Response"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/radio/program/list": {
|
||||
"post": {
|
||||
"produces": [
|
||||
@@ -2629,7 +2706,7 @@
|
||||
}
|
||||
},
|
||||
"/vip/config/detail": {
|
||||
"get": {
|
||||
"post": {
|
||||
"produces": [
|
||||
"application/json"
|
||||
],
|
||||
@@ -2927,6 +3004,23 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"request.GetLikeList": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"current": {
|
||||
"description": "页码",
|
||||
"type": "integer"
|
||||
},
|
||||
"keyword": {
|
||||
"description": "关键字",
|
||||
"type": "string"
|
||||
},
|
||||
"pageSize": {
|
||||
"description": "每页大小",
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
},
|
||||
"request.GetMenuTree": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
@@ -2960,9 +3054,6 @@
|
||||
},
|
||||
"request.GetProgramList": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"channelId"
|
||||
],
|
||||
"properties": {
|
||||
"channelId": {
|
||||
"description": "频道ID",
|
||||
|
||||
Reference in New Issue
Block a user