feat(audiobook): change audio format from MP3 to WAV for project downloads and merging

This commit is contained in:
2026-03-10 17:56:46 +08:00
parent 006aa0c85f
commit bf7c73e57c
3 changed files with 24 additions and 14 deletions

View File

@@ -542,4 +542,4 @@ def merge_audio_files(audio_paths: list[str], output_path: str) -> None:
if combined:
Path(output_path).parent.mkdir(parents=True, exist_ok=True)
combined.export(output_path, format="mp3")
combined.export(output_path, format="wav")