From 7aca08a8f2aca9669e7946fcb7b6d99ba980fc85 Mon Sep 17 00:00:00 2001 From: lrh <1585126058@qq.com> Date: Thu, 6 Jul 2023 15:20:41 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=8F=90=E7=A4=BA=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/iformall/sm/AiVideoHelper.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/suimangService/src/main/java/com/iformall/sm/AiVideoHelper.java b/suimangService/src/main/java/com/iformall/sm/AiVideoHelper.java index a38b673..5ceeea4 100644 --- a/suimangService/src/main/java/com/iformall/sm/AiVideoHelper.java +++ b/suimangService/src/main/java/com/iformall/sm/AiVideoHelper.java @@ -116,6 +116,7 @@ public class AiVideoHelper { public static AiPhotoSpeakResult createPhotoSpeakVideo(AiPhotoSpeakParam videoParam) { String response = doPost(url + photo_speak_suffix, JSONObject.toJSONString(videoParam)); log.info("生成视频end response:" + response); + log.info("生成视频的 IP:" + url + photo_speak_suffix); AiPhotoSpeakResult result = new AiPhotoSpeakResult(); if (StringUtils.isBlank(response)) { result.setSuccess(false); @@ -157,6 +158,7 @@ public class AiVideoHelper { public static AiCheckPhotoResult checkPhoto(AiCheckPhotoParam param) { String response = doPost(url + image_quality_suffix, JSONObject.toJSONString(param)); log.info("图片质量审核 end response:" + response); + log.info("图片质量审核 IP:" + url + image_quality_suffix); AiCheckPhotoResult result = new AiCheckPhotoResult(); if (StringUtils.isBlank(response)) { @@ -190,6 +192,7 @@ public class AiVideoHelper { public static AiPreviewResult voicePreview(AiPreviewParam param) { String response = doPost(url + voice_preview, JSONObject.toJSONString(param)); log.info("TTS音色预览 end response:" + response); + log.info("TTS音色预览 IP:" + url + voice_preview); AiPreviewResult result = new AiPreviewResult(); if (StringUtils.isBlank(response)) { @@ -233,6 +236,7 @@ public class AiVideoHelper { public static AiVideoHqResult videoHq(AiVideoHqParam param) { String response = doPost(hy_url + video_hq, JSONObject.toJSONString(param)); log.info("视频超分 end response:" + response); + log.info("视频超分 IP:" + hy_url + video_hq); AiVideoHqResult result = new AiVideoHqResult(); if (StringUtils.isBlank(response)) {