t

네이버 클로버 tts

[code]
<?php
$client_id = "";
$client_secret = "";
$txt = $_GET['txt'];
if(!$txt) $txt = '텍스트 파라미터를 입력 바랍니다.';
$encText = urlencode($txt);
$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);
curl_close ($ch);
if($status_code == 200) {
header("Content-type: audio/mpeg");
header("Content-Transfer-Encoding: binary");
header('Pragma: no-cache');
header('Expires: 0');
echo $response;
} else {
echo "Error 내용:".$response;
}
[/code]
|

댓글 3개

1일 제한 1만자
감사합니다~!
혹시... 반대는 없나요?
아직 찾은게 없네요 ㅎㅎ
댓글을 작성하시려면 로그인이 필요합니다. 로그인

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 8년 전 조회 1,830
jQuery 8년 전 조회 1,657
jQuery 8년 전 조회 1,670
jQuery
[jQuery]
8년 전 조회 1,352
jQuery 8년 전 조회 1,987
jQuery 8년 전 조회 2,436
jQuery
[jQuery]
8년 전 조회 1,721
jQuery 8년 전 조회 1,435
jQuery
[jQuery]
8년 전 조회 1,852
jQuery 8년 전 조회 5,440
기타 8년 전 조회 3,178
jQuery
[jQuery]
8년 전 조회 1,557
jQuery 8년 전 조회 1,729
jQuery 8년 전 조회 1,831
PHP 8년 전 조회 5,153
node.js 8년 전 조회 4,154
jQuery 8년 전 조회 2,227
jQuery 8년 전 조회 1,668
jQuery 8년 전 조회 1,219
jQuery 8년 전 조회 1,944
jQuery 8년 전 조회 1,444
jQuery 8년 전 조회 1,556
jQuery 8년 전 조회 1,777
jQuery 8년 전 조회 2,014
jQuery 8년 전 조회 1,550
jQuery 8년 전 조회 1,484
jQuery 8년 전 조회 1,576
jQuery
[jQuery]
8년 전 조회 1,462
jQuery 8년 전 조회 1,588
jQuery 8년 전 조회 1,638
🐛 버그신고