From 41936d9dc6f02d1ea0a89cdd02c62e4dd09aa0f0 Mon Sep 17 00:00:00 2001 From: Aleksandar Topuzovic Date: Sat, 7 Oct 2017 16:57:27 +0100 Subject: [PATCH] [HRTi] new urls are wihout # * Seems that the new URLs are without # --- youtube_dl/extractor/hrti.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/hrti.py b/youtube_dl/extractor/hrti.py index 656ce6d05..4f0369433 100644 --- a/youtube_dl/extractor/hrti.py +++ b/youtube_dl/extractor/hrti.py @@ -104,7 +104,7 @@ class HRTiIE(HRTiBaseIE): (?: hrti:(?P[0-9]+)| https?:// - hrti\.hrt\.hr/\#/video/show/(?P[0-9]+)/(?P[^/]+)? + hrti\.hrt\.hr/(?:\#/)?video/show/(?P[0-9]+)/(?P[^/]+)? ) ''' _TESTS = [{ @@ -129,6 +129,9 @@ class HRTiIE(HRTiBaseIE): }, { 'url': 'hrti:2181385', 'only_matching': True, + }, { + 'url': 'https://hrti.hrt.hr/video/show/3873068/cuvar-dvorca-dramska-serija-14', + 'only_matching': True, }] def _real_extract(self, url):