Examples of VoiceTextUrlConnectionClient


Examples of am.ik.voicetext4j.http.VoiceTextUrlConnectionClient

                .put("speed", String.valueOf(speed))
                .put("volume", String.valueOf(volume));
    }

    public void speak(String apiKey) throws InterruptedException {
        new VoiceTextUrlConnectionClient()
                .execute(build(), apiKey)
                .play();
    }
View Full Code Here

Examples of am.ik.voicetext4j.http.VoiceTextUrlConnectionClient

        }
        if (apiKey == null || apiKey.isEmpty()) {
            throw new IllegalArgumentException("'apiKey' is required.");
        }
        VoiceTextFields fields = build().put("text", text);
        return new VoiceTextUrlConnectionClient()
                .execute(fields, apiKey);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.