Created
December 29, 2024 11:47
-
-
Save KaushikShresth07/9f57e037097516b613c3888c9e36e5f3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| HtmlCode = '''<!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <title>Speech Recognition</title> | |
| </head> | |
| <body> | |
| <button id="start" onclick="startRecognition()">Start Recognition</button> | |
| <button id="end" onclick="stopRecognition()">Stop Recognition</button> | |
| <p id="output"></p> | |
| <script> | |
| const output = document.getElementById('output'); | |
| let recognition; | |
| function startRecognition() { | |
| recognition = new webkitSpeechRecognition() || new SpeechRecognition(); | |
| recognition.lang = ''; | |
| recognition.continuous = true; | |
| recognition.onresult = function(event) { | |
| const transcript = event.results[event.results.length - 1][0].transcript; | |
| output.textContent += transcript; | |
| }; | |
| recognition.onend = function() { | |
| recognition.start(); | |
| }; | |
| recognition.start(); | |
| } | |
| function stopRecognition() { | |
| recognition.stop(); | |
| output.innerHTML = ""; | |
| } | |
| </script> | |
| </body> | |
| </html>''' |
ShantanuGame
commented
Sep 5, 2025
via email
On Fri, 5 Sept 2025, 19:49 Shantanu Game, ***@***.***>
wrote:
… I didn't seen any order request on dashboard.
On Fri, 5 Sept 2025, 19:47 Abhishek Das, ***@***.***> wrote:
> ***@***.**** commented on this gist.
> ------------------------------
>
> @JashanDhiman0 <https://github.com/JashanDhiman0> did you fix it
>
> —
> Reply to this email directly, view it on GitHub
> <https://gist.github.com/KaushikShresth07/9f57e037097516b613c3888c9e36e5f3#gistcomment-5748296>
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/A6UMW4OMRCJNVA3GM3QCN3D3RGLQ3BFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVEYTGNJSGQ4TQMRRU52HE2LHM5SXFJTDOJSWC5DF>
> .
> You are receiving this email because you commented on the thread.
>
> Triage notifications on the go with GitHub Mobile for iOS
> <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
> or Android
> <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>
> .
>
>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment