mirror of
https://github.com/denizsafak/abogen.git
synced 2026-07-18 13:40:27 +02:00
Removed abogen_ prefix that was adding to converted books
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
- Added extra metadata support for chaptered M4B files, ensuring better compatibility with audiobook players.
|
- 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.
|
- 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.
|
- 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 voice preview player keeps playing silently at the background after preview ends.
|
||||||
- Fixed not writing separate chapters audio when output is OPUS.
|
- Fixed not writing separate chapters audio when output is OPUS.
|
||||||
- Improved input box background color handling, fixed display issues in Linux.
|
- Improved input box background color handling, fixed display issues in Linux.
|
||||||
|
|||||||
+1
-1
@@ -960,7 +960,7 @@ class abogen(QWidget):
|
|||||||
os.makedirs(temp_dir, exist_ok=True)
|
os.makedirs(temp_dir, exist_ok=True)
|
||||||
|
|
||||||
fd, tmp = tempfile.mkstemp(
|
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)
|
os.close(fd)
|
||||||
with open(tmp, "w", encoding="utf-8") as f:
|
with open(tmp, "w", encoding="utf-8") as f:
|
||||||
|
|||||||
Reference in New Issue
Block a user