From 173fee2d5df1c6b519869681785d3837c2c6e85e Mon Sep 17 00:00:00 2001 From: Lukas Anzinger Date: Thu, 23 Aug 2018 15:19:06 +0200 Subject: [PATCH] ORF: Extract series for a stream as well. --- youtube_dl/extractor/orf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py index d432e3449..499be0029 100644 --- a/youtube_dl/extractor/orf.py +++ b/youtube_dl/extractor/orf.py @@ -176,7 +176,8 @@ class ORFRadioIE(InfoExtractor): 'description': subtitle, 'duration': (info['end'] - info['start']) / 1000, 'timestamp': info['start'] / 1000, - 'ext': 'mp3' + 'ext': 'mp3', + 'series': data.get('programTitle') } entries = [extract_entry_dict(t, data['title'], data['subtitle']) for t in data['streams']]