diff options
Diffstat (limited to 'youtube_dlc/extractor/zdf.py')
-rw-r--r-- | youtube_dlc/extractor/zdf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dlc/extractor/zdf.py b/youtube_dlc/extractor/zdf.py index 7b5ad4a6e..d9b393e6e 100644 --- a/youtube_dlc/extractor/zdf.py +++ b/youtube_dlc/extractor/zdf.py @@ -41,7 +41,7 @@ class ZDFBaseIE(InfoExtractor): class ZDFIE(ZDFBaseIE): IE_NAME = "ZDF-3sat" _VALID_URL = r'https?://www\.(zdf|3sat)\.de/(?:[^/]+/)*(?P<id>[^/?]+)\.html' - _QUALITIES = ('auto', 'low', 'med', 'high', 'veryhigh') + _QUALITIES = ('auto', 'low', 'med', 'high', 'veryhigh', 'hd') _GEO_COUNTRIES = ['DE'] _TESTS = [{ @@ -131,7 +131,7 @@ class ZDFIE(ZDFBaseIE): if not ptmd_path: ptmd_path = t[ 'http://zdf.de/rels/streams/ptmd-template'].replace( - '{playerId}', 'portal') + '{playerId}', 'ngplayer_2_4') ptmd = self._call_api( urljoin(url, ptmd_path), player, url, video_id, 'metadata') |