From 754e5eec5305964f59b5ca1efd06e38659d88485 Mon Sep 17 00:00:00 2001 From: Mubashir Saad Date: Mon, 14 Oct 2019 16:05:48 -0500 Subject: [PATCH] Update regex to support legacy URLs --- youtube_dl/extractor/ehow.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/youtube_dl/extractor/ehow.py b/youtube_dl/extractor/ehow.py index ba336d5a2..b03bb6174 100644 --- a/youtube_dl/extractor/ehow.py +++ b/youtube_dl/extractor/ehow.py @@ -6,16 +6,16 @@ from ..compat import compat_urllib_parse_unquote class EHowIE(InfoExtractor): IE_NAME = 'eHow' - _VALID_URL = r'https?://(?:www\.)?ehow\.com/(?P[0-9]+)' + _VALID_URL = r'https?://(?:www\.)?ehow\.com/(([^/_?]*_)|())(?P[0-9]+)' _TEST = { - 'url': 'https://www.ehow.com/13718302/diy-colorful-abstract-art-coasters', + 'url': 'http://www.ehow.com/video_12245069_hardwood-flooring-basics.html', 'md5': '9809b4e3f115ae2088440bcb4efbf371', 'info_dict': { - 'id': '13718302', + 'id': '12245069', 'ext': 'flv', - 'title': 'DIY Colorful Abstract Art Coasters', - 'description': 'Not only are these colorful DIY polymer clay coasters super fun to make and practical to have around the house, they\'ll definitely exercise your artistic skills...', - 'uploader': 'Maya Marin', + 'title': 'Hardwood Flooring Basics', + 'description': 'Hardwood flooring may be time consuming, but its ultimately a pretty straightforward concept. Learn about hardwood flooring basics with help from a hardware flooring business owner in this free video...', + 'uploader': 'Erick Nathan', } }