티스토리 뷰
- using UnityEngine;
- using System.Collections;
- using System.Text.RegularExpressions;
- /// <summary>
- /// <author>Jefferson Reis</author>
- /// <explanation>Works only on Android, or platform that supports mp3 files. To test, change the platform to Android.</explanation>
- /// </summary>
- public class GoogleTextToSpeech : MonoBehaviour
- {
- public string words = "Hello";
- IEnumerator Start ()
- {
- // Remove the "spaces" in excess
- Regex rgx = new Regex ("\\s+");
- // Replace the "spaces" with "% 20" for the link Can be interpreted
- string result = rgx.Replace (words, "%20");
- string url = "http://translate.google.com/translate_tts?tl=en&q=" + result;
- WWW www = new WWW (url);
- yield return www;
- audio.clip = www.GetAudioClip (false, false, AudioType.MPEG);
- audio.Play ();
- }
- void OnGUI ()
- {
- words = GUI.TextField (new Rect (Screen.width / 2 - 200 / 2, 10, 200, 30), words);
- if (GUI.Button (new Rect (Screen.width / 2 - 150 / 2, 40, 150, 50), "Speak")) {
- StartCoroutine (Start ());
- }
- }
- }//closes the class
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 공짜도메인
- 파워UP포인트
- 샤오미
- 횟집
- 더피처피티
- 남부시장
- 포코폰
- 순대국
- 목동
- 윤태호작가폰트
- 도메인
- 도메인등록
- 새우튀김
- brazil nut
- koran
- 맛집
- 제주도 맛집
- 제주 맛집
- Sandoll미생체
- 로또
- 목동역
- 목동사거리
- 인류 최초
- 모듬회
- 산돌미생체
- 연금복권
- 위장약#라니티딘
- 로또 인터넷
- Lotto
- 동행복권
- 주식회사
- 나사
- 무료도메인
- 치킨
- 여자친구
- 법인 서식
- coran
- 알릴레오
- 남자친구
- 윤태호폰트
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함