텍스트를 음성변환 해주는 API 있을까요?
텍스트 를 음성전환 API를 찾고 있습니다.
아마존 폴리 외 지원해 주는 곳이 어디 있을까요?
밑에 terrorboy님 이 알려주신 https://any-api.com 은 IBM Speech to Text 기반이라 찾고 있는거와 정반대 서비스라서요.
테스트 해볼수 있는 주소 주시면 고맙겠습니다.
댓글 13개
7년 전
https://www.ibm.com/watson/developercloud/text-to-speech/api/v1/#introduction
https://responsivevoice.org/
https://responsivevoice.org/
7년 전
저도 질문받고 검색해본건데
두번째것에 한국어로 읽어주기도하네요
영문을 한국어로 읽으면 콩그리시로 아주 잘읽어주고
한글을 입력하면 한글로 잘 읽네요..
두번째것에 한국어로 읽어주기도하네요
영문을 한국어로 읽으면 콩그리시로 아주 잘읽어주고
한글을 입력하면 한글로 잘 읽네요..
7년 전
구글 번역TTS와 STT는 아직 비공식이지 않나 싶고 파파고 API가 있지 않겠나 싶습니다. 대부분의 앱 개발자들은구글 TTS 를 사용하지 않나 싶은데 아래 주소는 중간 설명 없이 TTS결과물을 얻는 방법입니다. 아마 이것도 텍스트 글자 수를 제한하던가 할거에요.
http://translate.google.com/translate_tts?ie=UTF-8&total=1&idx=0&textlen=32&client=tw-ob&q=안녕하세요%20구글%20비공식tts를 묵공 통신인이 전합니다.&tl=ko-kr
위 URL 전부(http~ko-kr 까지)를 주소줄에 넣고 실행해보세요.
http://translate.google.com/translate_tts?ie=UTF-8&total=1&idx=0&textlen=32&client=tw-ob&q=안녕하세요%20구글%20비공식tts를 묵공 통신인이 전합니다.&tl=ko-kr
위 URL 전부(http~ko-kr 까지)를 주소줄에 넣고 실행해보세요.
7년 전
API는 아니지만, http://www.voiceware.co.kr/kor/product/product1.php 참조하세요
7년 전
네이버 개발자 센터에서 나온것도 있네요
https://developers.naver.com/docs/clova/api/CSS/API_Guide.md#Overview
MS에서 제공하는 Bing Speech API
https://azure.microsoft.com/ko-kr/services/cognitive-services/speech/
https://developers.naver.com/docs/clova/api/CSS/API_Guide.md#Overview
MS에서 제공하는 Bing Speech API
https://azure.microsoft.com/ko-kr/services/cognitive-services/speech/
365ok
7년 전
제가 전에 컨텐츠몰에 올린 '음성게시판'을 참조해 보세요.
크롬에서 확인하면 됩니다.
마이크 음성으로 게시판 글쓰기와
글 내용을 음성으로 읽어줍니다.
https://sir.kr/cmall/1503908051
크롬에서 확인하면 됩니다.
마이크 음성으로 게시판 글쓰기와
글 내용을 음성으로 읽어줍니다.
https://sir.kr/cmall/1503908051
7년 전
<?php
$client_id = "YOUR_CLIENT_ID";
$client_secret = "YOUR_CLIENT_SECRET";
$encText = urlencode("반갑습니다.");
$postvars = "speaker=mijin&speed=0&text=".$encText;
$url = "https://openapi.naver.com/v1/voice/tts.bin";
$is_post = true;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, $is_post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, $postvars);
$headers = array();
$headers[] = "X-Naver-Client-Id: ".$client_id;
$headers[] = "X-Naver-Client-Secret: ".$client_secret;
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec ($ch);
$status_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
echo "status_code:".$status_code."<br>";
curl_close ($ch);
if($status_code == 200) {
//echo $response;
$fp = fopen("tts.mp3", "w+");
fwrite($fp, $response);
fclose($fp);
echo "<a href='tts.mp3'>TTS재생</a>";
} else {
echo "Error 내용:".$response;
}
?>
$client_id = "YOUR_CLIENT_ID";
$client_secret = "YOUR_CLIENT_SECRET";
$encText = urlencode("반갑습니다.");
$postvars = "speaker=mijin&speed=0&text=".$encText;
$url = "https://openapi.naver.com/v1/voice/tts.bin";
$is_post = true;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, $is_post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, $postvars);
$headers = array();
$headers[] = "X-Naver-Client-Id: ".$client_id;
$headers[] = "X-Naver-Client-Secret: ".$client_secret;
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
$response = curl_exec ($ch);
$status_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
echo "status_code:".$status_code."<br>";
curl_close ($ch);
if($status_code == 200) {
//echo $response;
$fp = fopen("tts.mp3", "w+");
fwrite($fp, $response);
fclose($fp);
echo "<a href='tts.mp3'>TTS재생</a>";
} else {
echo "Error 내용:".$response;
}
?>
게시판 목록
자유게시판
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 공지 |
|
2주 전 | 47 | |
| 199628 | 2개월 전 | 228 | ||
| 199627 |
|
2개월 전 | 288 | |
| 199626 | 2개월 전 | 263 | ||
| 199625 | 2개월 전 | 157 | ||
| 199624 |
|
2개월 전 | 213 | |
| 199623 | 2개월 전 | 279 | ||
| 199622 | 2개월 전 | 229 | ||
| 199621 | 2개월 전 | 194 | ||
| 199620 | 2개월 전 | 151 | ||
| 199619 | 2개월 전 | 191 | ||
| 199618 | 2개월 전 | 126 | ||
| 199617 |
비버팩토리
|
2개월 전 | 248 | |
| 199616 | 2개월 전 | 140 | ||
| 199615 | 2개월 전 | 184 | ||
| 199614 | 2개월 전 | 229 | ||
| 199613 | 2개월 전 | 228 | ||
| 199612 | 2개월 전 | 185 | ||
| 199611 | 2개월 전 | 132 | ||
| 199610 | 2개월 전 | 93 | ||
| 199609 | 2개월 전 | 159 | ||
| 199608 |
techstar
|
2개월 전 | 144 | |
| 199607 | 2개월 전 | 221 | ||
| 199606 | 2개월 전 | 177 | ||
| 199605 | 2개월 전 | 242 | ||
| 199604 |
|
2개월 전 | 295 | |
| 199603 | 2개월 전 | 190 | ||
| 199602 | 2개월 전 | 181 | ||
| 199601 |
|
2개월 전 | 217 | |
| 199600 | 2개월 전 | 155 | ||
| 199599 | 2개월 전 | 222 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기