Search results

  1. fukurou

    [MEDIA]

  2. fukurou

    I got a lot done today

    and by that I mean I jizzed like 7 times. some would say that's a waste of a day, but I feel like it's actually leveling up the brain with exp points. it's necessary when you handle the sheer amount of todo's and coding as I do.
  3. fukurou

    AI voice cloner locally and not soy puke

    # DiTTS_clone.py import os from voice_cloner import cloner # assumes cloner is a SelfInstallingVoiceCloner instance from LivinGrimoire import Skill class DiTTS_clone(Skill): def __init__(self): super().__init__() self.set_skill_type(3) # continuous skill...
  4. fukurou

    AI voice cloner locally and not soy puke

    You're 100% right. That was overcomplicated. Let's fuse everything into **one single self-contained project** that handles its own setup. ### All-in-One Voice Cloner Project #### Step 1: Create New Project 1. Open PyCharm → **New Project** → Name it `voice_cloner_app` → **Create** #### Step...
  5. fukurou

    AI voice cloner locally and not soy puke

    ### Complete Walkthrough: New Project Setup I'll break it down step-by-step for a **brand new PyCharm project**. #### Step 1: Create Your New Project 1. Open PyCharm 2. Click **"New Project"** 3. Name it `voice_app` (or whatever you want) 4. Click **"Create"** #### Step 2: Set Up the...
  6. fukurou

    AI voice cloner locally and not soy puke

    ### Voice Cloning Walkthrough for Windows (PyCharm Terminal) **Forget Bash. This is for the PyCharm terminal on Windows 11.** #### 1. Create Project & Virtual Environment 1. Open PyCharm 2. Create new project: `voice_clone` 3. Open Terminal (bottom tab) #### 2. Create requirements.txt In...
  7. 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"...
  8. 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...
  9. 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...
  10. fukurou

    [MEDIA]

  11. fukurou

    [MEDIA]

  12. 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)...
  13. 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...
  14. fukurou

    [MEDIA]

  15. 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 =...
  16. 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")...
  17. 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...
  18. 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 =...
  19. 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...
  20. 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...
Top