This is the desktop version of Klyppr, a tool for editing video silence.
- Detect and remove silent parts from videos
- Adjustable silence threshold (dB)
- Configurable minimum silence duration
- Padding duration control for smooth transitions
- User-friendly desktop interface
- Supports multiple video formats (mp4, avi, mov, mkv)
- Download the latest release for your operating system
- Install the application
- Launch Klyppr Desktop
- Clone the repository
- Install dependencies:
npm install
- Set up FFmpeg binaries:
- Create the following directory structure:
bin/ ├── mac/ │ ├── ffmpeg │ └── ffprobe └── win/ ├── ffmpeg.exe └── ffprobe.exe
- Download FFmpeg binaries and Place the binaries in their respective directories as shown above
- Create the following directory structure:
- Run the development server:
npm run start
Build for specific platforms:
# For macOS
npm run build:mac
# For Windows 64-bit
npm run build:win64
# For Windows 32-bit
npm run build:win32
The built applications will be available in the dist
directory.
- Click "Browse" to select your input video file
- Choose an output folder for the processed video
- Adjust the settings (optional):
- Silence Threshold (dB): Default -45dB
- Minimum Silence Duration (seconds): Default 0.6s
- Padding Duration (seconds): Default 0.05s
- Click "Start Processing" to begin
- Monitor the progress in real-time
- Find your processed video in the selected output folder
This is an Electron-based application using:
- Electron
- FFmpeg for video processing
- Node.js
- Klyppr Web Version - The web-based version of Klyppr
MIT License