演讲者注册期间使用Microsoft Azure API的注册错误

时间:2019-04-28 07:13:38

标签: azure microsoft-cognitive

我正在尝试根据https://westus.dev.cognitive.microsoft.com/docs/services/563309b6778daf02acc0a508/operations/5645c3271984551c84ec6797使用MS Azure扬声器识别API(java)。我能够获得一个identificationProfileId。尝试注册时出现错误。这是我的报名方式 -获取注册音频的WAV文件 -转换为base64(通过在线服务) -将base64作为内容与IdentificationProfileId一起作为注册请求的内容。我对b64部分感到怀疑

我收到“无效的音频格式:不是WAVE文件-没有RIFF标头”

我知道该服务需要根据文档以PCM编码的音频。

有人可以让我知道如何将wav音频转换为可以传递到注册REST端点的所需格式。

public class azureApiTest 
{

     public static String getID() 
    {
        HttpClient httpclient = HttpClients.createDefault();
        String ret = null;

        try
        {
            URIBuilder builder = new URIBuilder("https://westus.api.cognitive.microsoft.com/spid/v1.0/identificationProfiles");


            URI uri = builder.build();
            HttpPost request = new HttpPost(uri);
            request.setHeader("Content-Type", "application/json");
            request.setHeader("Ocp-Apim-Subscription-Key", "fad541725xxxxxxx3362125790411");


            // Request body

            JsonObject locale = new JsonObject();
            locale.addProperty("locale", "en-us");

            StringEntity reqEntity = new StringEntity(locale.toString());
            request.setEntity(reqEntity);

            HttpResponse response = httpclient.execute(request);
            HttpEntity entity = response.getEntity();

            if (entity != null) 
            {
                JsonParser parser = new JsonParser();
                JsonObject o = parser.parse(EntityUtils.toString(entity)).getAsJsonObject();
                ret = o.get("identificationProfileId").getAsString();

            }
        }
        catch (Exception e)
        {
            System.out.println(e.getMessage());
        }
        finally
        {
            return ret;
        }
    }

    public static void main(String[] args) 
    {
        HttpClient httpclient = HttpClients.createDefault();

        try
        {
            String id = azureApiTest.getID();
            System.out.println("ID created = "+id);
            String enrollURL = "https://westus.api.cognitive.microsoft.com/spid/v1.0/identificationProfiles/" +id + "/enroll";
                        System.out.println("enrollURL  = "+enrollURL);

            URIBuilder builder = new URIBuilder(enrollURL);

            builder.setParameter("shortAudio", "true");

            URI uri = builder.build();
            HttpPost request = new HttpPost(uri);
            request.setHeader("Content-Type", "multipart/form-data");
            request.setHeader("Ocp-Apim-Subscription-Key", "fad5417xxxxxxx3362125790411");


            // Request body

            File voiceb64 = new File("/Users/premnair/Desktop/vp/voice1b64.txt");

            String data = FileUtils.readFileToString(voiceb64, "utf-8");
            StringEntity reqEntity = new StringEntity(data);
            request.setEntity(reqEntity);

            HttpResponse response = httpclient.execute(request);
            HttpEntity entity = response.getEntity();

            if (entity != null) 
            {
                System.out.println(EntityUtils.toString(entity));
            }
        }
        catch (Exception e)
        {
            System.out.println(e.getMessage());
        }
    }
}

2 个答案:

答案 0 :(得分:0)

如果我像下面的代码片段一样传递文件,则可以正常工作!

 File file = new File("/Users/jdoe/Desktop/vp/v5.wav");
 request.setEntity( new FileEntity(file, ContentType.APPLICATION_OCTET_STREAM) );

答案 1 :(得分:0)

不要使用base 64,只能使用原始字节数组数据。