From 738d40394f38d365a2faf476689a8fb5fc201726 Mon Sep 17 00:00:00 2001 From: sepro Date: Tue, 11 Feb 2025 21:02:56 +0100 Subject: [PATCH] Filter description --- yt_dlp/extractor/digiview.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/yt_dlp/extractor/digiview.py b/yt_dlp/extractor/digiview.py index 1ad1c8eeb..f7f23864d 100644 --- a/yt_dlp/extractor/digiview.py +++ b/yt_dlp/extractor/digiview.py @@ -27,7 +27,7 @@ class DigiviewIE(InfoExtractor): 'channel_follower_count': int, 'channel_url': 'https://www.youtube.com/channel/UCSMOQeBJ2RAnuFungnQOxLg', 'uploader_id': '@BlenderOfficial', - 'description': '', + 'description': 'md5:8f3ed18a53a1bb36cbb3b70a15782fd0', 'categories': ['Film & Animation'], 'channel_is_verified': True, 'heatmap': 'count:100', @@ -61,7 +61,7 @@ class DigiviewIE(InfoExtractor): 'channel_follower_count': int, 'channel_url': 'https://www.youtube.com/channel/UCSMOQeBJ2RAnuFungnQOxLg', 'uploader_id': '@BlenderOfficial', - 'description': '', + 'description': 'md5:8f3ed18a53a1bb36cbb3b70a15782fd0', 'categories': ['Film & Animation'], 'channel_is_verified': True, 'heatmap': 'count:100', @@ -95,7 +95,7 @@ class DigiviewIE(InfoExtractor): 'channel_follower_count': int, 'channel_url': 'https://www.youtube.com/channel/UCSMOQeBJ2RAnuFungnQOxLg', 'uploader_id': '@BlenderOfficial', - 'description': '', + 'description': 'md5:8f3ed18a53a1bb36cbb3b70a15782fd0', 'categories': ['Film & Animation'], 'channel_is_verified': True, 'heatmap': 'count:100', @@ -122,7 +122,7 @@ class DigiviewIE(InfoExtractor): **traverse_obj(video_data, { 'section_start': ('debut', {int_or_none}), 'section_end': ('fin', {int_or_none}), - 'description': ('description', {clean_html}), + 'description': ('description', {clean_html}, filter), 'title': ('titre', {str}), 'thumbnail': ('vignette', {url_or_none}), 'view_count': ('vues', {int_or_none}),