| | |
| | | import java.util.List; |
| | | |
| | | public interface SpeakVoiceService { |
| | | SpeakVoiceEntity takeVoice(String name, File file) throws UnsupportedAudioFileException, IOException; |
| | | int takeVoice(String sn , Integer psdk_index, String name, File file,Integer volumn) throws UnsupportedAudioFileException, IOException; |
| | | |
| | | int takeVoicee(String sn , Integer psdk_index, String name, File file,Integer volumn,SpeakVoiceEntity entity); |
| | | int restartVoice(String sn ,Integer psdk_index); |
| | | |
| | | int stopVoice(String sn,Integer psdk_index); |
| | |
| | | int setVoiceVolume(SpeakVolumeDto dto,String sn); |
| | | |
| | | int awayRiver (String sn); |
| | | |
| | | int awayCar (String sn); |
| | | |
| | | PaginationData<SpeakVoiceEntity> getVoices(Integer pages,Integer page_size); |
| | | } |