mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-02-03 19:43:25 +01:00
313 lines
11 KiB
Python
313 lines
11 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import json
|
|
import re
|
|
import calendar
|
|
import datetime
|
|
|
|
from .common import InfoExtractor
|
|
from ..utils import (
|
|
HEADRequest,
|
|
unified_strdate,
|
|
ExtractorError,
|
|
strip_jsonp,
|
|
int_or_none,
|
|
float_or_none,
|
|
determine_ext,
|
|
remove_end,
|
|
)
|
|
|
|
|
|
class ORFTVthekIE(InfoExtractor):
|
|
IE_NAME = 'orf:tvthek'
|
|
IE_DESC = 'ORF TVthek'
|
|
_VALID_URL = r'https?://tvthek\.orf\.at/(?:programs/.+?/episodes|topics?/.+?|program/[^/]+)/(?P<id>\d+)'
|
|
|
|
_TESTS = [{
|
|
'url': 'http://tvthek.orf.at/program/Aufgetischt/2745173/Aufgetischt-Mit-der-Steirischen-Tafelrunde/8891389',
|
|
'playlist': [{
|
|
'md5': '2942210346ed779588f428a92db88712',
|
|
'info_dict': {
|
|
'id': '8896777',
|
|
'ext': 'mp4',
|
|
'title': 'Aufgetischt: Mit der Steirischen Tafelrunde',
|
|
'description': 'md5:c1272f0245537812d4e36419c207b67d',
|
|
'duration': 2668,
|
|
'upload_date': '20141208',
|
|
},
|
|
}],
|
|
'skip': 'Blocked outside of Austria / Germany',
|
|
}, {
|
|
'url': 'http://tvthek.orf.at/topic/Im-Wandel-der-Zeit/8002126/Best-of-Ingrid-Thurnher/7982256',
|
|
'info_dict': {
|
|
'id': '7982259',
|
|
'ext': 'mp4',
|
|
|