voice.setVoiceFilter - GiGAGenie-ServiceSDK/UserGuide GitHub Wiki
gigagenie.voice.setVoiceFilter
API ์ค๋ช
- ์์ฑ ํํฐ ์ค์ API
- Keyword Spotting(์: ๊ธฐ๊ฐ์ง๋) ์ดํ ๋ฐํ๋ ๋ด์ฉ ์ค์์ App์์ ์ ๋ฌ๋ฐ๊ณ ์ ํ๋ ๋จ์ด๋ฅผ ์ค์
- ์์ฑ ์ธ์ ๊ฒฐ๊ณผ๋ ๋ํSDK๋ฅผ ๊ฑฐ์น์ง ์๊ณ ์ด๋ฒคํธ ์์ ์ ํตํด ์ ๋ฌํจ
- ๊ถํ์ ๊ฐ์ง appid๋ง ํธ์ถ ๊ฐ๋ฅํ๋ฉฐ ์ค์ ํ ๋จ์ด๊ฐ ์ฒซ ๋ฒ์งธ ๋จ์ด๋ก ์ธ์๋ ๋์๋ง ์ด๋ฒคํธ๋ก ์ ๋ฌ
- ์: ['์ ๋ต'] ์ผ๋ก ๋ฑ๋กํ์ ๊ฒฝ์ฐ '์ ๋ต 1๋ฒ'์ ์์ , '1๋ฒ ์ ๋ต'์ ๋ฏธ์์
API ๊ตฌ์กฐ
- gigagenie.voice.setVoiceFilter
options
keyword
: (String Array, Mandatory) Keyword๋ฅผ ์ค์ ํจ
result_cd
200
: ์ฑ๊ณต
extra
- null
์ฌ์ฉ ์์
// callback
var options = {};
options.keyword = ["์ ๋ต", "ํํธ"];
gigagenie.voice.setVoiceFilter(options, function (result_cd, result_msg, extra) {
if (result_cd === 200) {
console.log("Keyword setting is success.");
};
});
// promise
var options = {};
options.keyword = ["์ ๋ต", "ํํธ"];
gigagenie.voice.setVoiceFilter(options).then(function (extra) {
console.log("Keyword setting is success.");
}).catch(function (result_cd, result_msg, extra) {});
ํ์ฉ ์์ ๋ (GiGA Genie Quiz)์์ ํ์ธ ๊ฐ๋ฅํฉ๋๋ค