diff options
| author | historia <historiavg@proton.me> | 2026-08-18 03:00:16 -0400 |
|---|---|---|
| committer | historia <historiavg@proton.me> | 2026-08-18 03:00:16 -0400 |
| commit | de5b2d9ca7302ade711d9dfb32b2fe8047f55cc2 (patch) | |
| tree | 410f9a0ffd996d2ac14843e8f78947c36ff12d43 /converter/config.py | |
| parent | 6d0e740b4225859457109821a4c77feff72c24b5 (diff) | |
| download | tts-audiobook-generator-de5b2d9ca7302ade711d9dfb32b2fe8047f55cc2.tar.gz | |
feat: support .ogg and .flac output
Diffstat (limited to 'converter/config.py')
| -rw-r--r-- | converter/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/config.py b/converter/config.py index b4d7f22..ec84986 100644 --- a/converter/config.py +++ b/converter/config.py @@ -82,8 +82,8 @@ HEARTBEAT_INTERVAL_SECONDS = 30 # Print "still working" this often during a chu # AUDIO OUTPUT SETTINGS # ============================================================================= -AUDIO_FORMAT = "mp3" # Default output container ("mp3" or "m4b") -AUDIO_FORMATS = ("mp3", "m4b") +AUDIO_FORMAT = "mp3" # Default output container +AUDIO_FORMATS = ("mp3", "m4b", "ogg", "flac") AUDIO_BITRATE = "128k" SUPPORTED_FORMATS = [".txt", ".pdf", ".epub"] |
