Qhero ClearCut es una herramienta automatizada de post-producción de video y audio diseñada para creadores de contenido. Transforma grabaciones "crudas" en material listo para publicar (Broadcast Quality) mediante el uso de Inteligencia Artificial y procesamiento de señal digital (DSP).
Esta herramienta no solo corta los silencios automáticamente, sino que limpia, nivela, ecualiza y masteriza tu voz para que suene como un locutor de radio, solucionando además problemas técnicos de video como pantallas negras o desincronización.
- ✂️ Edición Automática (Jump-cuts): Detecta y elimina silencios basándose en el volumen de tu voz.
- 🧠 Limpieza con IA (DeepFilterNet): Elimina ruidos de fondo complejos (ventiladores, tecleo, tráfico) sin dañar la voz.
- 🎛️ Masterización DSP "Broadcast": Cadena de efectos profesional integrada:
- Voice Deepener: Añade cuerpo y autoridad.
- Surgical EQ: Elimina el sonido de "caja" o habitación pequeña.
- De-Esser: Suaviza las "S" y "Ch" molestas.
- Voice Leveler: Mantiene el volumen de voz constante.
- Noise Gate: Silencio absoluto digital cuando no hablas.
- 🛡️ Video Bulletproof: Convierte videos con tasa de cuadros variable (VFR) a 30fps constantes (H.264) para evitar errores de renderizado y pantallas negras.
- 🔀 Modo "Selective Master": Interruptor para elegir entre Solo Cortes (sin tocar el audio) o Procesamiento Completo.
- 🌍 Universal: Soporta casi cualquier formato de entrada (
.mp4,.mkv,.mov,.mp3,.wav, etc.).
Para usar este script, necesitas instalar algunas herramientas en tu computadora. Sigue estos pasos según tu sistema operativo.
Este script está optimizado para Python 3.10.x. Versiones muy nuevas (como 3.12) pueden tener conflictos con librerías de audio.
- Windows/Mac/Linux: Descarga Python 3.10.8 desde python.org.
⚠️ Importante al instalar en Windows: Marca la casilla "Add Python to PATH" antes de dar clic en instalar.
Es vital para leer y escribir video. Sin esto, el script no funcionará.
- Windows:
- Descarga la "full build" desde gyan.dev.
- Descomprime la carpeta y renómbrala a
ffmpeg. Muévela aC:\ffmpeg. - Abre "Editar las variables de entorno del sistema" en Windows.
- Ve a "Variables de entorno" -> Busca la variable
Pathen "Variables del sistema" -> "Editar" -> "Nuevo". - Escribe:
C:\ffmpeg\biny guarda todo.
- Mac (usando Homebrew):
- Abre la terminal y escribe:
brew install ffmpeg
- Abre la terminal y escribe:
- Linux (Ubuntu/Debian):
- Abre la terminal y escribe:
sudo apt update && sudo apt install ffmpeg
- Abre la terminal y escribe:
- Descarga e instala desde git-scm.com.
Recomendamos Visual Studio Code (VS Code).
- Descárgalo aquí.
- Instala la extensión de Python y la extensión de Jupyter dentro de VS Code.
Una vez instalado Python, abre tu terminal (o CMD) e instala las dependencias necesarias copiando y pegando este comando:
pip install rich auto-editor deepfilternet numpy soundfile torch torchaudioEl script está diseñado como un Jupyter Notebook (.ipynb).
- Abre el archivo Qhero ClearCut v3.40.ipynb en VS Code o Jupyter Lab.
- Dirígete a la celda "🎛️ ZONA DE CONFIGURACIÓN MAESTRA" al inicio del script.
- Modifica los parámetros según tu necesidad:
CONFIG = {
# MODO DE OPERACIÓN:
# True = Solo corta silencios (Rápido, audio original).
# False = Aplica IA, EQ, Compresión y Cortes (Calidad Pro).
"SOLO_CORTES": False,
# RUTA DEL ARCHIVO (Video o Audio):
"ARCHIVO": r"C:\Tus_Documentos\Videos\mi_grabacion.mp4",
# AJUSTES DE AUDIO (Ejemplos):
"HIGHPASS_FREQ": "115", # Cortar graves (moto, golpes)
"GATE_THRESHOLD": "-35dB", # Nivel para silenciar fondo
"DEESSER_INTENSITY": "0.4", # Suavizar 'S'
# CALIDAD DE VIDEO:
"VIDEO_CRF": "20", # Calidad (18=Cine, 23=YouTube)
"VIDEO_FPS": "30", # FPS fijos para evitar errores
}- Ejecuta la celda del script (Botón "Play" o Shift + Enter).
- Verás un Dashboard visual indicando el progreso.
- Al finalizar, el archivo se guardará en la misma carpeta con el sufijo _V40_Master.mp4.
Si no tienes una PC potente, puedes ejecutar esto en la nube de Google.
- Sube el archivo .ipynb a Google Colab.
- Crea una celda al principio e instala las dependencias del sistema linux de Colab:
!apt-get install ffmpeg
!pip install rich auto-editor deepfilternet numpy soundfile torch torchaudio- Sube tu video a la carpeta de archivos de Colab.
- Cambia la ruta en CONFIG (ej: "/content/mi_video.mp4").
- Ejecuta el script.
Desarrollado para optimizar flujos de trabajo de creación de contenido. Basado en tecnologías Open Source: Auto-Editor, DeepFilterNet y FFmpeg.
Qhero ClearCut is an automated video and audio post-production tool designed for content creators. It transforms "raw" recordings into publish-ready material (Broadcast Quality) by using Artificial Intelligence and digital signal processing (DSP).
This tool not only cuts silences automatically, but also cleans, levels, equalizes, and masters your voice so it sounds like a radio announcer—while also fixing technical video issues such as black screens or desynchronization.
- ✂️ Automatic Editing (Jump-cuts): Detects and removes silences based on your voice volume.
- 🧠 AI Cleanup (DeepFilterNet): Removes complex background noise (fans, typing, traffic) without harming the voice.
- 🎛️ "Broadcast" DSP Mastering: Built-in professional effects chain:
- Voice Deepener: Adds body and authority.
- Surgical EQ: Removes the "boxy" or small-room sound.
- De-Esser: Softens harsh "S" and "Ch" sounds.
- Voice Leveler: Keeps voice volume consistent.
- Noise Gate: Total digital silence when you're not speaking.
- 🛡️ Video Bulletproof: Converts variable frame rate (VFR) videos to constant 30fps (H.264) to prevent rendering errors and black screens.
- 🔀 "Selective Master" Mode: Toggle to choose between Cuts Only (without touching the audio) or Full Processing.
- 🌍 Universal: Supports almost any input format (
.mp4,.mkv,.mov,.mp3,.wav, etc.).
To use this script, you need to install a few tools on your computer. Follow these steps depending on your operating system.
This script is optimized for Python 3.10.x. Very new versions (like 3.12) may conflict with audio libraries.
- Windows/Mac/Linux: Download Python 3.10.8 from python.org.
⚠️ Important when installing on Windows: Check "Add Python to PATH" before clicking install.
It’s vital for reading and writing video. Without this, the script will not work.
- Windows:
- Download the "full build" from gyan.dev.
- Extract the folder and rename it to
ffmpeg. Move it toC:\ffmpeg. - Open "Edit the system environment variables" on Windows.
- Go to "Environment Variables" -> Find the
Pathvariable in "System variables" -> "Edit" -> "New". - Type:
C:\ffmpeg\binand save everything.
- Mac (using Homebrew):
- Open Terminal and run:
brew install ffmpeg
- Open Terminal and run:
- Linux (Ubuntu/Debian):
- Open Terminal and run:
sudo apt update && sudo apt install ffmpeg
- Open Terminal and run:
- Download and install it from git-scm.com.
We recommend Visual Studio Code (VS Code).
- Download it here.
- Install the Python extension and the Jupyter extension inside VS Code.
Once Python is installed, open your terminal (or CMD) and install the required dependencies by copying and pasting this command:
pip install rich auto-editor deepfilternet numpy soundfile torch torchaudioThe script is designed as a Jupyter Notebook (.ipynb).
- Open the file Qhero ClearCut v3.40.ipynb in VS Code or Jupyter Lab.
- Go to the cell "🎛️ ZONA DE CONFIGURACIÓN MAESTRA" at the start of the script.
- Modify the parameters as needed:
CONFIG = {
# OPERATION MODE:
# True = Only cut silences (Fast, original audio).
# False = Apply AI, EQ, Compression and Cuts (Pro Quality).
"SOLO_CORTES": False,
# FILE PATH (Video or Audio):
"ARCHIVO": r"C:\Tus_Documentos\Videos\mi_grabacion.mp4",
# AUDIO SETTINGS (Examples):
"HIGHPASS_FREQ": "115", # Cut low end (motorbike, bumps)
"GATE_THRESHOLD": "-35dB", # Level to silence background
"DEESSER_INTENSITY": "0.4", # Soften 'S'
# VIDEO QUALITY:
"VIDEO_CRF": "20", # Quality (18=Cinema, 23=YouTube)
"VIDEO_FPS": "30", # Fixed FPS to avoid errors
}- Run the script cell (Play button or Shift + Enter).
- You’ll see a visual Dashboard indicating progress.
- When finished, the file will be saved in the same folder with the suffix _V40_Master.mp4.
If you don’t have a powerful PC, you can run this on Google’s cloud.
- Upload the .ipynb file to Google Colab.
- Create a cell at the top and install Colab’s Linux system dependencies:
!apt-get install ffmpeg
!pip install rich auto-editor deepfilternet numpy soundfile torch torchaudio- Upload your video to Colab’s file folder.
- Change the path in CONFIG (e.g.: "/content/mi_video.mp4").
- Run the script.
Developed to optimize content creation workflows. Based on Open Source technologies: Auto-Editor, DeepFilterNet and FFmpeg.
Made with ❤️ by Qhero