Recent content by fukurou

  1. fukurou

    cts ports

    public void addContinuousSkill(Skill skill) { if (this.isThinking) { return; } skill.setKokoro(this.kokoro); this.cts_skills.add(skill); } public void clearContinuousSkills() { if (this.isThinking) { return; } this.cts_skills.clear(); } public void...
  2. fukurou

    new STT code

    premode: import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain, Skill """ cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip install openai-whisper pyaudio numpy wave """...
  3. fukurou

    new STT code

  4. fukurou

    new STT code

    class DiSTTSync(Skill): CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 exit_event = Event() model = whisper.load_model("base") p = pyaudio.PyAudio() stream = p.open( format=FORMAT, channels=CHANNELS...
  5. fukurou

    new STT code

    the sync version seems more reliable: class DiSTTSync(Skill): CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 exit_event = Event() model = whisper.load_model("base") p = pyaudio.PyAudio() stream = p.open(...
  6. fukurou

    new STT code

    1 piece version import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash """ cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip install...
  7. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash # befor runing the code: ''' cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip...
  8. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash # befor runing the code: ''' cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip...
  9. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash # Audio Settings CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 # Minimum...
  10. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash # Audio Settings CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 # Minimum...
  11. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event # Audio Settings CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 # Minimum speech duration to process exit_event = Event() # Global variables model =...
  12. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event # Audio Settings CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 # Minimum speech duration to process exit_event = Event() # Global variables model =...
  13. fukurou

    new STT code

    cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip install openai-whisper pyaudio numpy wave you may also need: pip install openai-whisper pyaudio numpy pip install pipwin pipwin install pyaudio import whisper import pyaudio import numpy as np import...
  14. fukurou

    [MEDIA]

  15. fukurou

    deepseek n shit

    like to engage the time skill I need to say something like "what is the time" but her burp skill for example works on its own, she suddenly might burp
Top