From 90ff06a519ab6315768d087985a37bb6e0bdd9a5 Mon Sep 17 00:00:00 2001 From: Claudio Santini Date: Thu, 13 Feb 2025 14:15:53 +0100 Subject: [PATCH] v0.4.5 --- audiblez/core.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/audiblez/core.py b/audiblez/core.py index ae8be62..ad9ebad 100755 --- a/audiblez/core.py +++ b/audiblez/core.py @@ -253,7 +253,7 @@ def create_m4b(chapter_files, filename, cover_image, output_folder): audio = AudioSegment.from_wav(wav_file) combined_audio += audio print('Converting to Mp4...') - combined_audio.export(tmp_file_path, format="mp4", codec="aac", bitrate="64k") + combined_audio.export(tmp_file_path, format="mp4", codec="aac", bitrate="128k") final_filename = Path(output_folder) / filename.replace('.epub', '.m4b') print('Creating M4B file...') diff --git a/pyproject.toml b/pyproject.toml index f91335f..60ae357 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "audiblez" -version = "0.4.4" +version = "0.4.5" description = "Generate audiobooks from e-books (epub to wav/m4b)" authors = [ { name = "Claudio Santini", email = "hireclaudio@gmail.com" }