コンテンツへスキップ

useSpeechRecognition

カテゴリ
エクスポートサイズ
694 B
最終変更
先週

リアクティブなSpeechRecognition

対応状況

デモ

あなたのブラウザはSpeechRecognition APIをサポートしていません。詳細はこちら

使い方

ts
import { useSpeechRecognition } from '@vueuse/core'

const {
  isSupported,
  isListening,
  isFinal,
  result,
  start,
  stop,
} = useSpeechRecognition()

オプション

以下はオプションのデフォルト値を示します。これらはSpeechRecognition APIに直接渡されます。

ts
useSpeechRecognition({
  lang: 'en-US',
  interimResults: true,
  continuous: true,
})

型宣言

型宣言を表示
typescript
export interface UseSpeechRecognitionOptions extends ConfigurableWindow {
  /**
   * Controls whether continuous results are returned for each recognition, or only a single result.
   *
   * @default true
   */
  continuous?: boolean
  /**
   * Controls whether interim results should be returned (true) or not (false.) Interim results are results that are not yet final
   *
   * @default true
   */
  interimResults?: boolean
  /**
   * Language for SpeechRecognition
   *
   * @default 'en-US'
   */
  lang?: MaybeRefOrGetter<string>
  /**
   * A number representing the maximum returned alternatives for each result.
   *
   * @see https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition/maxAlternatives
   * @default 1
   */
  maxAlternatives?: number
}
/**
 * Reactive SpeechRecognition.
 *
 * @see https://vueuse.dokyumento.jp/useSpeechRecognition
 * @see https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognition SpeechRecognition
 * @param options
 */
export declare function useSpeechRecognition(
  options?: UseSpeechRecognitionOptions,
): {
  isSupported: ComputedRef<boolean>
  isListening: Ref<boolean, boolean>
  isFinal: Ref<boolean, boolean>
  recognition: SpeechRecognition | undefined
  result: Ref<string, string>
  error: Ref<
    SpeechRecognitionErrorEvent | undefined,
    SpeechRecognitionErrorEvent | undefined
  >
  toggle: (value?: boolean) => void
  start: () => void
  stop: () => void
}
export type UseSpeechRecognitionReturn = ReturnType<typeof useSpeechRecognition>

ソース

ソースデモドキュメント

貢献者

Anthony Fu
Jelf
Anthony Fu
青椒肉丝
Neil Richter
Mark Noonan
vaakian X
wheat
Joe Maylor
Shinigami
Alex Kozack
EGGSY
Antério Vieira

変更履歴

v12.0.0-beta.1 2024年11月21日
0a9ed - feat!: Vue 2 のサポートを削除、バンドルを最適化、クリーンアップ (#4349)
v11.0.0-beta.2 2024/07/17 リリース
9eda8 - feat: maxAlternatives オプションをサポート (#4067)
v10.10.1 2024/06/11 リリース
7c36f - fix: 正しい文字起こし結果を送信 (#3891)
v10.8.0 2024/02/20 リリース
a086e - fix: より厳密な型
v10.0.0-beta.4 2023/04/13 リリース
4d757 - feat(types)!: MaybeComputedRefMaybeRefOrGetter にリネーム
10e98 - feat(toRef)!: resolveReftoRef にリネーム

MITライセンスの下でリリースされています。