Recent content by fukurou

  1. fukurou

    venice.ai TTS

    # Female Venice TTS Voices (for DrawRnd): # --------------------------------------- # "bella" # Expressive default female voice # "af_nova" # African-accented female voice # "bf_emma" # British-accented female voice # "bf_sophia" # British-accented female, soft tone # "bf_grace"...
  2. fukurou

    venice.ai TTS

    venice.ai TTS: add requirements.txt : requests pydub simpleaudio pygame import requests import os import threading from DLC.api_keys import VENICE_API_KEY from LivinGrimoirePacket.AXPython import DrawRnd from LivinGrimoirePacket.LivinGrimoire import Skill...
  3. fukurou

    venice.ai TTS

    Alright, you asked for the full “shit in the ass walkthrough,” so buckle up—we’re going full throttle on this one. Here’s your no-BS, step-by-step guide to sending a string to Venice AI’s Text-to-Speech API and blasting it through your laptop speakers using Python. 💣 The Full Walkthrough...
  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    anti glitchin voice effect shit of asses power up!

    class DiVoiceEffects(Skill): # Ensure that you have a "voices" directory in the same location as this script. # Place your .mp3 files inside this folder. The filenames should be sanitized # (lowercase, spaces replaced with underscores) for smooth playback. def __init__(self)...
  7. fukurou

    anti glitchin voice effect shit of asses power up!

    prev ver: class DiVoiceEffects(Skill): # Ensure that you have a "voices" directory in the same location as this script. # Place your .mp3 files inside this folder. The filenames should be sanitized # (lowercase, spaces replaced with underscores) for smooth playback. def...
  8. fukurou

    [MEDIA]

  9. fukurou

    🐍 python jizzy vision dev

    yolov8 : ```python import cv2 import numpy as np from ultralytics import YOLO class DiYOLOv8Reco(Skill): def __init__(self): super().__init__() self.set_skill_lobe(5) # Eye skill # Load YOLOv8 model (much simpler than v3) self.model =...
  10. fukurou

    🐍 python jizzy vision dev

    yolo ver import cv2 import numpy as np class DiYOLOReco(Skill): def __init__(self): super().__init__() self._skill_lobe = 5 self.cap = cv2.VideoCapture(0) # Load YOLO self.net = cv2.dnn.readNet("yolov3.weights", "yolov3.cfg")...
  11. fukurou

    🐍 python jizzy vision dev

    improved v1 import cv2 import numpy as np class DiHuskyLensReco(Skill): def __init__(self): super().__init__() self.set_skill_type(3) # Continuous skill self.set_skill_lobe(5) # Eye lobe self.cap = cv2.VideoCapture(0) self._object_registry...
  12. fukurou

    🐍 python jizzy vision dev

    import cv2 import numpy as np class DiHuskyLensReco(Skill): def __init__(self): super().__init__() self._skill_lobe = 5 self.cap = cv2.VideoCapture(0) self._object_registry = {} # object_hash -> unique_id self._next_id = 1 self.detector =...
  13. fukurou

    👨‍💻 dev LLM to skill

    import requests import json import threading import re from LivinGrimoirePacket.LivinGrimoire import Skill # Initialize conversation history conversation_history = [] # Global variables for async operation is_working = False current_reply = "" def talk_to_waifu(prompt, history): global...
  14. fukurou

    👨‍💻 dev LLM to skill

    import requests import json import threading import time # Initialize conversation history conversation_history = [] # Global variables for async operation is_working = False current_reply = "" def talk_to_waifu(prompt, history): global is_working, current_reply # Build the full...
  15. fukurou

    venice ai skill dev

    with character maintaining: import threading import requests import json # Assume DEEPSEEK_API_KEY is replaced with VENICE_API_KEY VENICE_API_KEY = "your_venice_api_key_here" class DaVeniceRun(ShorniSplash): def __init__(self): super().__init__() self.input_text = "" #...
Top