diff options
author | Lukas Anzinger <lukas@lukasanzinger.at> | 2019-03-17 03:57:02 +0100 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2019-03-17 09:57:02 +0700 |
commit | 0146c6cde6959a52287c26c99ce159128832246c (patch) | |
tree | 9f02c50d600493354c51b99979f040a9df021384 /youtube_dl/extractor/orf.py | |
parent | ddff25c5d1f21c323cc37c08faa11ea98baef622 (diff) |
[orf:radio] Extract series (#20012)
Diffstat (limited to 'youtube_dl/extractor/orf.py')
-rw-r--r-- | youtube_dl/extractor/orf.py | 3 |
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']] |