com.adobe.acs.commons.dam.audio.watson.impl.TranscriptionServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of acs-aem-commons-bundle Show documentation
Show all versions of acs-aem-commons-bundle Show documentation
Main ACS AEM Commons OSGi Bundle. Includes commons utilities.
/*
* ACS AEM Commons
*
* Copyright (C) 2013 - 2023 Adobe
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.adobe.acs.commons.dam.audio.watson.impl;
import com.adobe.acs.commons.http.HttpClientFactory;
import com.adobe.acs.commons.http.JsonObjectResponseHandler;
import com.google.gson.Gson;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import java.io.IOException;
import org.apache.commons.lang3.StringUtils;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Reference;
import org.apache.felix.scr.annotations.Service;
import org.apache.http.client.fluent.Request;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.InputStream;
@Component
@Service
public class TranscriptionServiceImpl implements TranscriptionService {
private static final Logger log = LoggerFactory.getLogger(TranscriptionServiceImpl.class);
private static final JsonObjectResponseHandler HANDLER = new JsonObjectResponseHandler();
@Reference(target = "(factory.name=watson-speech-to-text)")
private HttpClientFactory httpClientFactory;
@Override
public String startTranscriptionJob(InputStream stream, String mimeType) {
Request request = httpClientFactory.post("/speech-to-text/api/v1/recognitions?continuous=true×tamps=true")
.addHeader("Content-Type", mimeType)
.bodyStream(stream);
try {
JsonObject json = (JsonObject) httpClientFactory.getExecutor().execute(request).handleResponse(HANDLER);
Gson gson = new Gson();
log.trace("content: {}", gson.toJson(json));
return json.get("id").getAsString();
} catch (IOException e) {
log.error("error submitting job", e);
return null;
}
}
@Override
public Result getResult(String jobId) {
log.debug("getting result for {}", jobId);
Request request = httpClientFactory.get("/speech-to-text/api/v1/recognitions/" + jobId);
try {
JsonObject json = (JsonObject) httpClientFactory.getExecutor().execute(request).handleResponse(HANDLER);
Gson gson = new Gson();
log.trace("content: {}", gson.toJson(json));
if (json.has("status") && json.get("status").getAsString().equals("completed")) {
JsonArray results = json.get("results").getAsJsonArray().get(0).getAsJsonObject().get("results").getAsJsonArray();
StringBuilder builder = new StringBuilder();
for (int i = 0; i < results.size(); i++) {
JsonObject result = results.get(i).getAsJsonObject();
if (result.get("final").getAsBoolean()) {
JsonObject firstAlternative = result.get("alternatives").getAsJsonArray().get(0).getAsJsonObject();
String line = firstAlternative.get("transcript").getAsString();
if (StringUtils.isNotBlank(line)) {
double firstTimestamp = firstAlternative.get("timestamps").getAsJsonArray().get(0).getAsJsonArray().get(1).getAsDouble();
builder.append("[").append(firstTimestamp).append("s]: ").append(line).append("\n");
}
}
}
String concatenated = builder.toString();
concatenated = concatenated.replace("%HESITATION ", "");
return new ResultImpl(true, concatenated);
} else {
return new ResultImpl(false, null);
}
} catch (IOException e) {
log.error("Unable to get result. assuming failure.", e);
return new ResultImpl(true, "error");
}
}
private static class ResultImpl implements Result {
private final boolean completed;
private final String content;
public ResultImpl(boolean completed, String content) {
this.completed = completed;
this.content = content;
}
@Override
public boolean isCompleted() {
return completed;
}
@Override
public String getContent() {
return content;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy