Recent content by fukurou

  1. fukurou

    [MEDIA]

  2. fukurou

    🐍 python brain power level calculator

    def calculate_brain_level(current_age: int, average_jizz_per_day: float) -> int: """ Calculates brain level based on age and daily jizz frequency. Assumes jizzing starts at age 12 and uses cubic root scaling (like Pokémon EXP curves). Parameters: - current_age (int)...
  3. fukurou

    [MEDIA]

  4. 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.
  5. 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...
  6. 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...
  7. 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...
  8. 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...
  9. 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"...
  10. 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...
  11. 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...
  12. fukurou

    [MEDIA]

  13. fukurou

    [MEDIA]

  14. 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)...
  15. 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...
Top