김수민

modif

...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
2 <project version="4"> 2 <project version="4">
3 <component name="ChangeListManager"> 3 <component name="ChangeListManager">
4 <list default="true" id="5c08ae96-2f87-46c1-b81d-f30e494ce252" name="Default Changelist" comment=""> 4 <list default="true" id="5c08ae96-2f87-46c1-b81d-f30e494ce252" name="Default Changelist" comment="">
5 - <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
6 <change beforePath="$PROJECT_DIR$/app.js" beforeDir="false" afterPath="$PROJECT_DIR$/app.js" afterDir="false" /> 5 <change beforePath="$PROJECT_DIR$/app.js" beforeDir="false" afterPath="$PROJECT_DIR$/app.js" afterDir="false" />
7 </list> 6 </list>
8 <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" /> 7 <option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
...@@ -66,6 +65,7 @@ ...@@ -66,6 +65,7 @@
66 <workItem from="1574669792266" duration="65000" /> 65 <workItem from="1574669792266" duration="65000" />
67 <workItem from="1574670031852" duration="24000" /> 66 <workItem from="1574670031852" duration="24000" />
68 <workItem from="1575279295835" duration="451000" /> 67 <workItem from="1575279295835" duration="451000" />
68 + <workItem from="1575279962465" duration="48000" />
69 </task> 69 </task>
70 <servers /> 70 <servers />
71 </component> 71 </component>
......
...@@ -154,6 +154,7 @@ function handleEvent(event) { ...@@ -154,6 +154,7 @@ function handleEvent(event) {
154 'VoiceId': 'Seoyeon', 154 'VoiceId': 'Seoyeon',
155 "LanguageCode": 'ko-KR' 155 "LanguageCode": 'ko-KR'
156 }; 156 };
157 + console.log("korean language");
157 } else if (options.form.target == 'en') { 158 } else if (options.form.target == 'en') {
158 var audio_options = { 159 var audio_options = {
159 'Text': result.text, 160 'Text': result.text,
...@@ -161,6 +162,7 @@ function handleEvent(event) { ...@@ -161,6 +162,7 @@ function handleEvent(event) {
161 'VoiceId': 'Kendra', 162 'VoiceId': 'Kendra',
162 "LanguageCode": 'en-US' 163 "LanguageCode": 'en-US'
163 }; 164 };
165 + console.log("english language");
164 } 166 }
165 Polly.synthesizeSpeech(audio_options, (err, data) => { 167 Polly.synthesizeSpeech(audio_options, (err, data) => {
166 console.log("check"); 168 console.log("check");
......