?
Con l' API VOISER LIMITLESS MP3 puoi POST i tuoi testi in formato JSON sul tuo progetto e puoi ottenere il file audio in formato MP3 e le informazioni del file audio in formato JSON, con il tuo richieste.
CARATTERISTICHE GENERALI DELL'API
| SPIEGAZIONE |
CONTENUTI |
| Posta indirizzo URL |
https://voiser.net/api/limitless/ |
| Metodo di richiesta |
INVIARE |
| Richiedi formato dati |
JSON |
| Linguaggio di codifica |
UTF-8 |
| Limite di richiesta una tantum |
Massimo 3000 caratteri |
| Formato di output |
MP3 |
| Üretilen Ses Dosyası |
MP3 |
INPUT DELL'API
| GİRDİ |
AÇIKLAMA |
| authCode |
Kullanıcı kodunuz (STRING) |
| articleText |
Okutmak istediğiniz salt metin (STRING) |
| configVoice |
Ses kodu (STRING) |
| configLang |
Dil kodu (STRING) |
| configPitch |
Tono della voce (deve essere 0 per la lettura normale, min. -20.00, max. 20.00, INT) |
| configSpeed |
Velocità di lettura (deve essere 1 per la lettura normale, min. 0.3, max. 4.0, INT) |
API ÇIKTILARI
| ÇIKTI |
AÇIKLAMA |
| status |
İşlem durumu (success|error) |
| processTime |
Ses oluşumu işlem süresi |
| barkod |
Ses barkodu |
| counter |
Hesabınızda kalan karakter limiti |
| fileUrl |
Ses dosyasının url adresi |
| createTime |
Data e ora di creazione dell'audio |
DİL KODLARI
| DİL ADI |
KODU |
|
Türkçe
|
tr-TR
|
|
İngilizce British
|
en-GB
|
|
İngilizce Amerikan
|
en-US
|
|
Arapça
|
ar-XA
|
|
Almanca
|
de-De
|
|
Çince
|
cmn-CN
|
|
Fransızca
|
fr-FR
|
|
İtalyanca
|
it-IT
|
|
Japonca
|
ja-JP
|
|
Korece
|
ko-KR
|
|
Rusça
|
ru-RU
|
SES KODLARI
| VOCE |
SES KODU |
DİL KODU |
|
Hakan
|
E
|
tr-TR
|
|
Aylin
|
D
|
tr-TR
|
|
Berk
|
B
|
tr-TR
|
|
Melis
|
C
|
tr-TR
|
|
Daisy
|
C
|
en-GB
|
|
Tom
|
D
|
en-GB
|
|
Harry
|
B
|
en-GB
|
|
Joseph
|
B
|
en-US
|
|
Emma
|
C
|
en-US
|
|
Jacob
|
D
|
en-US
|
|
Olivia
|
E
|
en-US
|
|
Emily
|
F
|
en-US
|
|
Emma
|
A
|
de-De
|
|
Noah
|
B
|
de-De
|
|
Hanna
|
C
|
de-De
|
|
Elias
|
D
|
de-De
|
|
王芳
|
A
|
cmn-CN
|
|
王伟
|
B
|
cmn-CN
|
|
张伟
|
C
|
cmn-CN
|
|
Clara
|
A
|
fr-FR
|
|
Louise
|
B
|
fr-FR
|
|
Camille
|
C
|
fr-FR
|
|
Raphaël
|
D
|
fr-FR
|
|
Alessia
|
A
|
it-IT
|
|
Teodora
|
B
|
it-IT
|
|
Giuseppe
|
C
|
it-IT
|
|
Giovanni
|
D
|
it-IT
|
|
莉子
|
A
|
ja-JP
|
|
咲良
|
B
|
ja-JP
|
|
陽翔
|
C
|
ja-JP
|
|
湊
|
D
|
ja-JP
|
|
아현
|
A
|
ko-KR
|
|
지유
|
B
|
ko-KR
|
|
도윤
|
C
|
ko-KR
|
|
유준
|
D
|
ko-KR
|
|
Саша
|
A
|
ru-RU
|
|
Владимир
|
B
|
ru-RU
|
|
Алина
|
C
|
ru-RU
|
|
Дмитрий
|
D
|
ru-RU
|
|
مصطفى
|
B
|
ar-XA
|
|
وليد
|
C
|
ar-XA
|
|
مريم
|
A
|
ar-XA
|
FILE DI INPUT DI ESEMPIO (JSON INVIATO)
{
"authCode" : "1234567890",
"articleText" : "Questo è un testo di prova.",
"configVoice" : "E",
"configLang" : "tr-TR",
"configPitch" : "0",
"configSpeed" : "1"
}
ÖRNEK ÇIKTI (GET EDİLEN JSON) DOSYASI
{
"status":"success",
"processTime":23.079911947250366,
"barkod":"ZRRI",
"counter":79972,
"fileUrl":"https:\/\/www.voiser.net\/api\/render\/2020_10_01_10_40_52_GIF7.mp3",
"durationSeconds":573,
"durationFormat":"00:09:33",
"createTime":"2020-10-01 10:40:53"
}
Per supporto tecnico o informazioni bilgi@voiser.net e-posta adresi üzerinden bizimle iletişime geçebilirsiniz.
Esempio di codice completo:
<script>
var authCode = "**kullanıcı kodunuz**";
var playerPositionX = "right";
var playerPositionY = "bottom";
var readingLanguage = "tr";
var readingDivId = "Page-Text-Id";
var playerBgColor = "#04a4e2";
</script>
<script src="https://voiser.net/api/web3/speak.js"></script>
Lo script che contiene le variabili e la pagina della richiesta.
Qui è possibile modificare le variabili. Le impostazioni predefinite sono pensate per la resa migliore. Se la configurazione del player non viene modificata, viene usato l'aspetto predefinito.
Queste configurazioni, le relative descrizioni e i valori predefiniti sono:
| VARIABILE |
AÇIKLAMA |
DEĞERLER |
|
playerPositionX
|
Player’in x eksenindeki konumu
|
right, left
|
|
playerPositionY
|
Player’in y eksenindeki konumu
|
top, bottom
|
|
readingLanguage
|
La lingua del testo da leggere e doppiare
|
tr, en
|
|
readingDivId
|
L'id del div contenitore con il testo da leggere
|
(string)
|
|
playerBgColor
|
Colore del player
|
(hex color code)
|
In caso di problemi o difficoltà tecniche puoi scriverci a bilgi@voiser.net oppure usare la pagina contatti di www.voiser.net per ricevere supporto tecnico.
CHE COS'È?
VOISER STREAM API puoi inviare i tuoi testi all'URL dal tuo progetto con il metodo GET e ottenere il risultato direttamente come file audio MP3.
API GENEL ÖZELLİKLERİ
| AÇIKLAMA |
İÇERİK |
| Post Url Adresi |
https://voiser.net/api/stream/ |
| İstek Metodu |
GET |
| İstek Veri Formatı |
QUERY |
| Kodlama Dili |
UTF-8 |
| Tek Seferlik İstek Limiti |
Maks. 3000 Karakter |
| Formato di output |
MP3 |
| Üretilen Ses Dosyası |
MP3 |
INPUT DELL'API
| GİRDİ |
AÇIKLAMA |
| authCode |
Kullanıcı kodunuz (STRING) |
| articleText |
Okutmak istediğiniz salt metin (STRING) |
| configVoice |
Ses kodu (STRING) |
| configLang |
Dil kodu (STRING) |
| configPitch |
Tono della voce (deve essere 0 per la lettura normale, min. -20.00, max. 20.00, INT) |
| configSpeed |
Velocità di lettura (deve essere 1 per la lettura normale, min. 0.3, max. 4.0, INT) |
API ÇIKTILARI
| ÇIKTI |
AÇIKLAMA |
| Mp3 |
audio/mpeg, audio/x-mpeg, audio/x-mpeg-3, audio/mpeg3 |
DİL KODLARI
| DİL ADI |
KODU |
|
Türkçe
|
tr-TR
|
|
İngilizce British
|
en-GB
|
|
İngilizce Amerikan
|
en-US
|
|
Arapça
|
ar-XA
|
|
Almanca
|
de-De
|
|
Çince
|
cmn-CN
|
|
Fransızca
|
fr-FR
|
|
İtalyanca
|
it-IT
|
|
Japonca
|
ja-JP
|
|
Korece
|
ko-KR
|
|
Rusça
|
ru-RU
|
SES KODLARI
| VOCE |
SES KODU |
DİL KODU |
|
Hakan
|
E
|
tr-TR
|
|
Aylin
|
D
|
tr-TR
|
|
Berk
|
B
|
tr-TR
|
|
Melis
|
C
|
tr-TR
|
|
Daisy
|
C
|
en-GB
|
|
Tom
|
D
|
en-GB
|
|
Harry
|
B
|
en-GB
|
|
Joseph
|
B
|
en-US
|
|
Emma
|
C
|
en-US
|
|
Jacob
|
D
|
en-US
|
|
Olivia
|
E
|
en-US
|
|
Emily
|
F
|
en-US
|
|
Emma
|
A
|
de-De
|
|
Noah
|
B
|
de-De
|
|
Hanna
|
C
|
de-De
|
|
Elias
|
D
|
de-De
|
|
王芳
|
A
|
cmn-CN
|
|
王伟
|
B
|
cmn-CN
|
|
张伟
|
C
|
cmn-CN
|
|
Clara
|
A
|
fr-FR
|
|
Louise
|
B
|
fr-FR
|
|
Camille
|
C
|
fr-FR
|
|
Raphaël
|
D
|
fr-FR
|
|
Alessia
|
A
|
it-IT
|
|
Teodora
|
B
|
it-IT
|
|
Giuseppe
|
C
|
it-IT
|
|
Giovanni
|
D
|
it-IT
|
|
莉子
|
A
|
ja-JP
|
|
咲良
|
B
|
ja-JP
|
|
陽翔
|
C
|
ja-JP
|
|
湊
|
D
|
ja-JP
|
|
아현
|
A
|
ko-KR
|
|
지유
|
B
|
ko-KR
|
|
도윤
|
C
|
ko-KR
|
|
유준
|
D
|
ko-KR
|
|
Саша
|
A
|
ru-RU
|
|
Владимир
|
B
|
ru-RU
|
|
Алина
|
C
|
ru-RU
|
|
Дмитрий
|
D
|
ru-RU
|
|
مصطفى
|
B
|
ar-XA
|
|
وليد
|
C
|
ar-XA
|
|
مريم
|
A
|
ar-XA
|
ÖRNEK GİRDİ
https://voiser.net/api/stream/?authCode=1234567890&articleText=Merhabalar%20bu%20bir%20denemedir&configVoice=E&configLang=tr-TR&configPitch=0&configSpeed=1
ÖRNEK ÇIKTI DOSYASI
MP3 DOSYASI
Per supporto tecnico o informazioni bilgi@voiser.net e-posta adresi üzerinden bizimle iletişime geçebilirsiniz.