Posted February 04, 2026 by kolloid
v2.6.0 2026-02
v2.4.0 – Multi-GPU Fix & Encoder UI
v2.3.2 – Multi-GPU Fix & Encoder UI
Bug Fix:
- Fixed GPU detection on multi-GPU systems — dedicated GPU (NVIDIA/AMD) is now correctly preferred over integrated GPU (Intel iGPU).
Previously, systems like Intel 6700K + NVIDIA RTX 2060 would detect only the Intel iGPU and miss NVENC entirely.
Improvements:
- All installed GPUs are now detected independently — NVENC, QSV, and AMF are tested based on all available hardware, not just the primary GPU
- Hardware acceleration dropdown now grays out unavailable encoders with tooltips explaining why (e.g. "Kein NVIDIA GPU erkannt")
- Removed platform-irrelevant options (VAAPI, VideoToolbox) from the encoder list
- GPU info bar now shows a full summary with all available encoders (e.g. "NVIDIA RTX 2060 (6GB) - NVENC Ready, QSV Ready")
v2.2.0 - Subtitle Improvements
● Devlog: External VobSub (.sub/.idx) Support
External VobSub subtitles (.sub/.idx) are now fully supported.
Previously, only text-based external subtitles (SRT, ASS, TTML) could be added and burned in. Image-based VobSub files (.sub + .idx), commonly found in DVD rips, were not recognized and caused FFmpeg encoding errors.
What’s new:
.sub files are automatically detected as VobSub on import (binary header detection)
The subtitle editor correctly displays “OCR required”
The corresponding .idx file is automatically loaded from the same directory
OCR extraction works: timestamps are parsed directly from the .idx, images are extracted via a temporary MKV
After OCR, the track is updated in-place and immediately ready for burn
Encoding is blocked until VobSub tracks are converted via OCR — clear error message instead of cryptic FFmpeg failures
Technical details:
VobSub detection via MPEG-PS header (0x00 0x00 0x01 0xBA)
IDX parsing for reliable timestamp mapping
Muxing into a temporary MKV for compatible image extraction
Deadlock fixes in async subtitle conversion (Task.Run wrapping)