Spaces:
Sleeping
Sleeping
File size: 1,728 Bytes
ea41881 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
/* Copyright 2016-2099 Ailemon.net
This file is part of ASRT Speech Recognition Tool.
ASRT is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ASRT is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with ASRT. If not, see <https://www.gnu.org/licenses/>.
============================================================================ */
syntax = "proto3";
package asrt;
//定义服务接口
service AsrtGrpcService {
rpc Speech (SpeechRequest) returns (SpeechResponse) {} //一个服务中可以定义多个接口,也就是多个函数功能
rpc Language (LanguageRequest) returns (TextResponse) {}
rpc All (SpeechRequest) returns (TextResponse) {}
rpc Stream (stream SpeechRequest) returns (stream TextResponse) {}
}
message SpeechRequest {
WavData wav_data = 1;
}
message SpeechResponse {
int32 status_code = 1;
string status_message = 2;
repeated string result_data = 3; // 拼音结果
}
message LanguageRequest {
repeated string pinyins = 1;
}
message TextResponse {
int32 status_code = 1;
string status_message = 2;
string text_result = 3;
}
message WavData{
bytes samples = 1; // wav样本点字节
int32 sample_rate = 2; // wav采样率
int32 channels = 3; // wav通道数
int32 byte_width = 4; // wav样本字节宽度
}
|