feat: smart title extraction from filename for 2.0.2

This commit is contained in:
joel
2026-07-20 18:29:58 +02:00
parent 87b5ba91b1
commit c486339f8d
5 changed files with 71 additions and 50 deletions
+2 -1
View File
@@ -205,7 +205,8 @@ def convert_file_entry(
audio_settings = {"output_format": "mp3", "bitrate": "192", "encoding_mode": "CBR"}
file_path = Path(entry["full_path"])
title = file_path.stem
from .metadata import extract_title_from_filename
title = extract_title_from_filename(file_path.stem)
output_format = audio_settings.get("output_format", "mp3")
try: