Removed abogen_ prefix that was adding to converted books

This commit is contained in:
Deniz Şafak
2025-05-21 20:54:34 +03:00
parent f286c4c6dc
commit 082bb08e48
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@
- Added extra metadata support for chaptered M4B files, ensuring better compatibility with audiobook players.
- Added new option: `Separate chapters audio format`, allowing to choose between `wav`, `mp4`, `flac` and `opus` formats for chaptered audio files.
- Skipping PyTorch CUDA installation if GPU is not NVIDIA in WINDOWS_INSTALL.bat script, preventing unnecessary installation of PyTorch.
- Removed `abogen_` prefix that was adding to converted books in temp directory.
- Fixed voice preview player keeps playing silently at the background after preview ends.
- Fixed not writing separate chapters audio when output is OPUS.
- Improved input box background color handling, fixed display issues in Linux.
+1 -1
View File
@@ -960,7 +960,7 @@ class abogen(QWidget):
os.makedirs(temp_dir, exist_ok=True)
fd, tmp = tempfile.mkstemp(
prefix=f"abogen_{base_name}_", suffix=".txt", dir=temp_dir
prefix=f"{base_name}_", suffix=".txt", dir=temp_dir
)
os.close(fd)
with open(tmp, "w", encoding="utf-8") as f: