Change default quality from medium to high
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
f2d3684956
commit
d0d64da12e
2 changed files with 2 additions and 2 deletions
|
|
@ -183,7 +183,7 @@ def rip(
|
||||||
"flac", "--format", "-f", help="Audio format (flac, mp3, opus, aac, wav)"
|
"flac", "--format", "-f", help="Audio format (flac, mp3, opus, aac, wav)"
|
||||||
),
|
),
|
||||||
quality: str = typer.Option(
|
quality: str = typer.Option(
|
||||||
"medium", "--quality", "-q", help="Quality (low, medium, high)"
|
"high", "--quality", "-q", help="Quality (low, medium, high)"
|
||||||
),
|
),
|
||||||
parallel: int = typer.Option(
|
parallel: int = typer.Option(
|
||||||
1, "--parallel", "-j", help="Number of parallel encoder processes (0 = all)"
|
1, "--parallel", "-j", help="Number of parallel encoder processes (0 = all)"
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ class RipperConfig(BaseModel):
|
||||||
device: str = "/dev/cdrom"
|
device: str = "/dev/cdrom"
|
||||||
audio_format: AudioFormat = AudioFormat.FLAC
|
audio_format: AudioFormat = AudioFormat.FLAC
|
||||||
output_dir: Path = Path("temp")
|
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
|
parallel_jobs: int = 1 # Number of parallel encoder processes
|
||||||
use_pipes: bool = False # True = faster, no WAV files
|
use_pipes: bool = False # True = faster, no WAV files
|
||||||
use_cddb: bool = True # Use CDDB lookup
|
use_cddb: bool = True # Use CDDB lookup
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue