admin管理员组文章数量:1345578
I'm working on a Next.js project and trying to use react-speech-recognition. It works well on Chrome Desktop, but it doesn't work on Chrome Android. I also tried the push-to-talk method, but it still didn't work. Is it possible to use react-speech-recognition on Chrome Mobile? I want to create a PWA.
"use client";
import React, { useEffect } from "react";
import SpeechRecognition, {
useSpeechRecognition,
} from "react-speech-recognition";
export default function page() {
const {
transcript,
listening,
resetTranscript,
browserSupportsSpeechRecognition,
} = useSpeechRecognition();
if (!browserSupportsSpeechRecognition) {
return <span>Browser doesn not support speech recognition.</span>;
}
useEffect(() => {
SpeechRecognition.startListening({
continuous: true,
interimResults: true,
language: "id-ID",
});
}, []);
return (
<div className='w-full h-screen bg-finic flex flex-col items-center justify-center'>
<div className='flex flex-col items-center justify-center h-fit px-[30px]'>
<h1 className='font-clash font-[700] text-xl text-center text-finblack mt-16'>
{transcript}
</h1>
</div>
</div>
);
}
I'm working on a Next.js project and trying to use react-speech-recognition. It works well on Chrome Desktop, but it doesn't work on Chrome Android. I also tried the push-to-talk method, but it still didn't work. Is it possible to use react-speech-recognition on Chrome Mobile? I want to create a PWA.
"use client";
import React, { useEffect } from "react";
import SpeechRecognition, {
useSpeechRecognition,
} from "react-speech-recognition";
export default function page() {
const {
transcript,
listening,
resetTranscript,
browserSupportsSpeechRecognition,
} = useSpeechRecognition();
if (!browserSupportsSpeechRecognition) {
return <span>Browser doesn not support speech recognition.</span>;
}
useEffect(() => {
SpeechRecognition.startListening({
continuous: true,
interimResults: true,
language: "id-ID",
});
}, []);
return (
<div className='w-full h-screen bg-finic flex flex-col items-center justify-center'>
<div className='flex flex-col items-center justify-center h-fit px-[30px]'>
<h1 className='font-clash font-[700] text-xl text-center text-finblack mt-16'>
{transcript}
</h1>
</div>
</div>
);
}
Share
Improve this question
asked yesterday
Nico A.LNico A.L
133 bronze badges
1 Answer
Reset to default 0I found the solution!
The issue occurs because navigator.mediaDevices.getUserMedia({ audio: true }) requires HTTPS to work properly. On Chrome Desktop, it works fine even on localhost, but on Chrome Android, it won't function unless the site is served over HTTPS.
useEffect(() => {
async function checkMicrophoneAccess() {
try {
await navigator.mediaDevices.getUserMedia({ audio: true });
SpeechRecognition.startListening({
continuous: true,
interimResults: true,
language: "id-ID",
});
} catch (err) {
console.error("Microphone access denied:", err);
}
}
checkMicrophoneAccess();
}, []);
本文标签: reactjsReact Speech Recognition not working on mobile browserStack Overflow
版权声明:本文标题:reactjs - React Speech Recognition not working on mobile browser - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795217a2540302.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论