https://github.com/cyroz1/vidcord
Python GUI app to compress videos under Discord’s size limits (10MB, 25MB, 50MB, 100MB, 500MB)
https://github.com/cyroz1/vidcord
compress-videos discord ffmpeg gui pyqt5 python
Last synced: 6 months ago
JSON representation
Python GUI app to compress videos under Discord’s size limits (10MB, 25MB, 50MB, 100MB, 500MB)
- Host: GitHub
- URL: https://github.com/cyroz1/vidcord
- Owner: cyroz1
- Created: 2024-07-19T10:00:38.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-02T18:35:23.000Z (over 1 year ago)
- Last Synced: 2025-03-24T20:11:48.780Z (over 1 year ago)
- Topics: compress-videos, discord, ffmpeg, gui, pyqt5, python
- Language: Python
- Homepage:
- Size: 3.98 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
vidcord
This is a simple and fast Python GUI application for compressing video files under Discord's size limits using FFmpeg and PyQt6 in one-click. The application features a modern **Fluent Design** interface, and is available for **Windows, macOS, and Linux**.
## Download
[Download latest release installer.](https://github.com/cyroz1/vidcord/releases/latest)
## Features
- **Modern UI**: Clean and responsive interface built with Fluent Design.
- **Three methods to import videos**:
- File Explorer: Right click video files in File Explorer and choose "Compress with vidcord". (Windows only)
- Finder: Right click video files in Finder and choose "Open with..." -> "vidcord.app". (macOS only)
- Manual: Drag and drop or browse for video files in the application.
- **Five quality presets**:
- 10MB, 480p (Free users)
- 25MB, 480p (Free users, old)
- 50MB, 720p (Nitro Basic or Level 2 Server Boost)
- 100MB, 1080p (Level 3 Server Boost or [Clips Bypass](https://github.com/riolubruh/YABDP4Nitro?tab=readme-ov-file#clips))
- 500MB, Native (Nitro Full)
- **Advanced Options**:
- **Remove Audio**: Strip audio tracks to save space or for silent clips.
- **Trimming**: Adjustable starting and ending points with live preview.
- **Hardware Acceleration**: Support for NVIDIA (NVENC), AMD (AMF), Intel (QSV), and Apple Silicon encoders.
- **Instant Startup**: Optimized with lazy-loading and background hardware detection for immediate responsiveness.
- **Multi-Platform**: Native builds for Windows (.exe), macOS (.pkg), and Linux (.AppImage).
- **Progress Tracking**: Real-time progress bar and ETA display.
## Screenshots
### Program window

### Output file example

### Context menu integration


## Building
1. **Install Prerequisites**
- Download and install [Python 3.10+](https://www.python.org/downloads/).
- **macOS**: Ensure Xcode Command Line Tools are installed (`xcode-select --install`).
2. **Setup Environment & Dependencies**
It's recommended to use a virtual environment:
```sh
# Create and activate venv
python -m venv venv
source venv/bin/activate # macOS/Linux
venv\Scripts\activate # Windows
# Install dependencies
pip install -r requirements.txt
pip install pyinstaller
```
3. **Build the Application**
A unified build script handles platform-specific packaging (using PyInstaller, Inno Setup, or AppImage tools):
```sh
python build.py
```
The resulting installer/package will be located in the `dist/` directory.
## Acknowledgements
- [FFmpeg](https://ffmpeg.org/)
- [PyQt6](https://pypi.org/project/PyQt6/)
- [PyQt6-Fluent-Widgets](https://github.com/zhiyiYo/PyQt-Fluent-Widgets)
- [PyInstaller](https://www.pyinstaller.org/)