From 2cc41d1f20213eb6e4a805f8cb401098e329e1b0 Mon Sep 17 00:00:00 2001 From: TheQWERTYCodr <93845040+TheQWERTYCodr@users.noreply.github.com> Date: Fri, 1 Aug 2025 04:09:11 -0400 Subject: [PATCH] create test for middle dot character MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add half·alive's "Back Around" as a test to make sure middle dot works in artist names --- yt_dlp/extractor/youtube/_video.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/yt_dlp/extractor/youtube/_video.py b/yt_dlp/extractor/youtube/_video.py index 860d54672..5ce65a60e 100644 --- a/yt_dlp/extractor/youtube/_video.py +++ b/yt_dlp/extractor/youtube/_video.py @@ -1758,6 +1758,22 @@ class YoutubeIE(YoutubeBaseInfoExtractor): 'media_type': 'short', }, }, + { + # Youtube Music Auto-generated description with dot in artist name + 'url': 'https://music.youtube.com/watch?v=DbCvuSGfR3Y', + 'info_dict': { + 'id': 'DbCvuSGfR3Y', + 'title': 'Back Around', + 'artists': ['half·alive'], + 'track': 'Back Around', + 'album': 'Conditions Of A Punk', + 'release_date': '20221202', + 'release_year': 2021, + }, + 'params': { + 'skip_download': True, + }, + }, ] _WEBPAGE_TESTS = [