aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Anzinger <lukas@lukasanzinger.at>2019-03-17 03:57:02 +0100
committerSergey M <dstftw@gmail.com>2019-03-17 09:57:02 +0700
commit0146c6cde6959a52287c26c99ce159128832246c (patch)
tree9f02c50d600493354c51b99979f040a9df021384
parentddff25c5d1f21c323cc37c08faa11ea98baef622 (diff)
downloadyoutube-dl-0146c6cde6959a52287c26c99ce159128832246c.tar.xz
[orf:radio] Extract series (#20012)
-rw-r--r--youtube_dl/extractor/orf.py3
1 files changed, 2 insertions, 1 deletions
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']]