Skip to content

Quick Start

This walks through a typical first run. Swap the paths for your own.

Terminal window
pip install medix
Terminal window
medix /path/to/video.vob

Or a whole directory:

Terminal window
medix /path/to/videos/

If FFmpeg is missing, Medix will offer to install it for you. Accept, and it runs the right brew / apt / winget command under the hood.

Medix lists discovered files, then asks which output format you want:

? Choose output format
MP4 (H.264 + AAC — universal playback)
MKV (H.264 + AAC — flexible container)
WebM (VP9 + Opus — web streaming)
MOV (H.264 + AAC — Apple ecosystem)
AVI (H.264 + MP3 — legacy)
TS (H.264 + AAC — broadcast)

Say yes to advanced settings if you want to override the defaults — video codec, resolution, frame rate, CRF, preset, audio bitrate.

Medix shows the conversion plan, you confirm, and the progress bars take over.

Terminal window
# Single file
medix video.mp4
# Directory
medix ~/Videos/
# Recurse into subdirectories
medix ~/Videos/ -r
# Custom output directory
medix ~/Videos/ -o ~/Converted/
# Preview without converting
medix ~/Videos/ --dry-run
# Recurse + dry run + custom output
medix ~/Videos/ -r -o ~/Converted/ --dry-run