diff options
author | Remita Amine <remitamine@gmail.com> | 2020-01-17 14:23:24 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2020-01-17 14:23:24 +0100 |
commit | c968f738df8e21d7a7f2f86f697207e0476b76ef (patch) | |
tree | 9a0612813e021b714e1558e660e73c871eb52f77 /youtube_dl/extractor/srmediathek.py | |
parent | 48ff5590c160b89e4596b706f2b33c69557063a0 (diff) |
[ard] improve extraction(closes #23761)
- simplify extraction
- extract age limit and series
- bypass geo-restriction
Diffstat (limited to 'youtube_dl/extractor/srmediathek.py')
-rw-r--r-- | youtube_dl/extractor/srmediathek.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/srmediathek.py b/youtube_dl/extractor/srmediathek.py index 28baf901c..359dadaa3 100644 --- a/youtube_dl/extractor/srmediathek.py +++ b/youtube_dl/extractor/srmediathek.py @@ -1,14 +1,14 @@ # coding: utf-8 from __future__ import unicode_literals -from .ard import ARDMediathekIE +from .ard import ARDMediathekBaseIE from ..utils import ( ExtractorError, get_element_by_attribute, ) -class SRMediathekIE(ARDMediathekIE): +class SRMediathekIE(ARDMediathekBaseIE): IE_NAME = 'sr:mediathek' IE_DESC = 'Saarländischer Rundfunk' _VALID_URL = r'https?://sr-mediathek(?:\.sr-online)?\.de/index\.php\?.*?&id=(?P<id>[0-9]+)' |