You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
352 B
Java
15 lines
352 B
Java
package com.supervision.service;
|
|
|
|
import com.supervision.pojo.vo.TalkVideoReqVO;
|
|
import com.supervision.pojo.vo.TalkVideoTtsResultResVO;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
public interface AskService {
|
|
|
|
String receiveVoiceFile(MultipartFile file);
|
|
|
|
TalkVideoTtsResultResVO talkByVideoAndTts(TalkVideoReqVO talkReqVO);
|
|
|
|
|
|
}
|