v0.4.5
Some checks are pending
Git clone and run / linux-git-clone-and-run (push) Waiting to run
Git clone and run / windows-git-clone-and-run (push) Waiting to run
Installing via pip and running / install-and-run-on-python-3-11 (push) Waiting to run
Installing via pip and running / install-and-run-on-python-3-12 (push) Waiting to run
Installing via pip and running / install-and-run-on-python-3-10 (push) Waiting to run
Installing via pip and running / windows-git-clone-and-run (push) Waiting to run

This commit is contained in:
Claudio Santini 2025-02-13 14:15:53 +01:00
parent 0d572d0f7f
commit 90ff06a519
2 changed files with 2 additions and 2 deletions

View file

@ -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...')

View file

@ -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" }