Skip to content

Commit

Permalink
renamed to custom speech recognition
Browse files Browse the repository at this point in the history
  • Loading branch information
SevaSk committed May 12, 2023
1 parent 2c1986f commit 12bff6b
Show file tree
Hide file tree
Showing 24 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion AudioRecorder.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import speech_recognition as sr
import custom_speech_recognition as sr
import pyaudiowpatch as pyaudio
from datetime import datetime

Expand Down
2 changes: 1 addition & 1 deletion AudioTranscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import os
import threading
from tempfile import NamedTemporaryFile
import speech_recognition as sr
import custom_speech_recognition as sr
import io
from datetime import timedelta
from time import sleep
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import speech_recognition as sr
import custom_speech_recognition as sr

r = sr.Recognizer()
m = sr.Microphone()
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import os
from io import BytesIO

from speech_recognition.audio import AudioData
from speech_recognition.exceptions import SetupError
from custom_speech_recognition.audio import AudioData
from custom_speech_recognition.exceptions import SetupError


def recognize_whisper_api(
Expand Down
1 change: 0 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import soundcard as sc
import threading
from AudioTranscriber import AudioTranscriber
from GPTResponder import GPTResponder
Expand Down

0 comments on commit 12bff6b

Please sign in to comment.