Change default quality from medium to high

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Dieter Schlüter 2026-02-17 20:17:58 +01:00
commit d0d64da12e
2 changed files with 2 additions and 2 deletions

View file

@ -183,7 +183,7 @@ def rip(
"flac", "--format", "-f", help="Audio format (flac, mp3, opus, aac, wav)"
),
quality: str = typer.Option(
"medium", "--quality", "-q", help="Quality (low, medium, high)"
"high", "--quality", "-q", help="Quality (low, medium, high)"
),
parallel: int = typer.Option(
1, "--parallel", "-j", help="Number of parallel encoder processes (0 = all)"

View file

@ -32,7 +32,7 @@ class RipperConfig(BaseModel):
device: str = "/dev/cdrom"
audio_format: AudioFormat = AudioFormat.FLAC
output_dir: Path = Path("temp")
quality: str = "medium" # low, medium, high
quality: str = "high" # low, medium, high
parallel_jobs: int = 1 # Number of parallel encoder processes
use_pipes: bool = False # True = faster, no WAV files
use_cddb: bool = True # Use CDDB lookup