1. ホーム
  2. Web制作
  3. html5

Html5ベースの音声検索機能

2022-01-31 16:34:28

注意深い友人は、Google検索が右側に音声認識を可能にする音声検索機能を備えていることを観察するかもしれない。これは完璧ではないかもしれないが、トレンドであることは間違いない。

#include<stdio.h>
#define mod 1000000007;

__int64 Quick_Mod(__int64 a,__int64 b)//quick power mod a^b%(1e9+7)
{
    __int64 ans = 1,sum = a % mod;
    while(b)
    {
        if(b & 1)/* go by bit with, take the last bit of b*/ ans=(ans*sum)%mod;
        sum=(sum*sum)%mod;//each operation sum, square once, and b shift corresponding
        b >>= 1;//b shifted one place to the right
    }
    return ans;
}
int main()
{
    __int64 cas,n,m;
    scanf("%I64d",&cas);
    while(cas--)
    {
        scanf("%I64d%I64d",&m,&n);
		printf("%I64d\n",Quick_Mod(m,n));
    }
    return 0;
}



パラメータの説明です。

1. x-webkit-speech。テキストボックスの右側にマイクのアイコンを表示できるようにします。

2.lang:入力ボックス内の音声の言語種類を強制的に変更します。

3.x-webkit-grammar: 音声入力の構文を参照し、"builtin:search"の値は、音声入力をできるだけ検索内容に近づけ、余計な文字を削除するようにしたものです。

概要

以上、Html5ベースの音声検索機能の紹介でした、お役に立てれば幸いです、もし何か質問があれば、私にメッセージをください、すぐに返信します。今後ともスクリプトハウスのウェブサイトをよろしくお願いいたします。

この記事が役に立つと思われる方は、ご自由に転載してください!出典も明記してください!ありがとうございます。