feat: smart title extraction from filename for 2.0.2
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user