Text-to-Speech

無料
よって voicerss | 更新済み vor 23 Tagen | Media
人気

9.8 / 10

レイテンシー

737ms

サービスレベル

100%

Health Check

N/A

すべてのディスカッションに戻る

Regarding about post request

Rapid account: Sharavanak 20
sharavanak20
vor 2 Jahren

If my request is POST ,the response audio is somewhat like this ID3 and it goes like on this.

And ,it couldn’t able to play in audio tag.Also I requested as mp3 format.Any suggestion,it will be helpful.

Rapid account: Sharavanak 20
sharavanak20 Commented vor 2 Jahren

Thank you for your response.Here is the request url.

const encodedParams = new URLSearchParams();
encodedParams.append(“src”, “Hello”);
encodedParams.append(“en”, “en-us”);
encodedParams.append(“r”, “0”);
encodedParams.append(“c”, “b64”);
encodedParams.append(“f”, “8khz_8bit_mono”);
const options = {
method: ‘POST’,
url: ‘https://voicerss-text-to-speech.p.rapidapi.com/’,
params: {key: Mykey},
headers: {
‘content-type’: ‘application/x-www-form-urlencoded’,
‘X-RapidAPI-Key’: x-rapid-Key,
‘X-RapidAPI-Host’: ‘voicerss-text-to-speech.p.rapidapi.com
},
data: encodedParams
};

           axios.request(options).then(function (response) {
            audio.src = response.data;
           console.log(response.data);
        }).catch(function (error) {
           console.error(error);
        });
Rapid account: Voicerss
voicerss Commented vor 2 Jahren

Dear sharavanak20,

Please share with an example of your request and we will be glad to assist you with it.

The audio tag can play from URL or base64 audio content.
Please be sure that the requests parameter ‘b64’ set to ‘true’.
In this case the API returns an audio content in the base64 string format which playable by the audio tag.

Please find below the link to the API documentation which may be helpful:
https://www.voicerss.org/api/

Yours faithfully,
Voice RSS Team.

ディスカッションに参加しましょう-以下にコメントを追加してください:

ログイン/サインアップして新しいコメントを投稿